From 5eab883fd1546684d2fc3c05dc4779553c4fdd25 Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 13 Sep 2022 16:33:34 -0400 Subject: [PATCH] Chats -> i18n --- .../features/chats/components/chat-page.tsx | 35 ++++++++------- .../chats/components/chat-settings.tsx | 44 ++++++++++++------- .../features/chats/components/chat.tsx | 10 +++-- app/soapbox/locales/ar.json | 4 +- app/soapbox/locales/ast.json | 4 +- app/soapbox/locales/bg.json | 4 +- app/soapbox/locales/bn.json | 4 +- app/soapbox/locales/br.json | 4 +- app/soapbox/locales/ca.json | 4 +- app/soapbox/locales/co.json | 4 +- app/soapbox/locales/cs.json | 4 +- app/soapbox/locales/cy.json | 4 +- app/soapbox/locales/da.json | 4 +- app/soapbox/locales/de.json | 6 +-- app/soapbox/locales/defaultMessages.json | 6 +-- app/soapbox/locales/el.json | 4 +- app/soapbox/locales/en-Shaw.json | 6 +-- app/soapbox/locales/en.json | 6 ++- app/soapbox/locales/eo.json | 4 +- app/soapbox/locales/es-AR.json | 4 +- app/soapbox/locales/es.json | 4 +- app/soapbox/locales/et.json | 4 +- app/soapbox/locales/eu.json | 4 +- app/soapbox/locales/fa.json | 4 +- app/soapbox/locales/fi.json | 4 +- app/soapbox/locales/fr.json | 4 +- app/soapbox/locales/ga.json | 4 +- app/soapbox/locales/gl.json | 4 +- app/soapbox/locales/he.json | 6 +-- app/soapbox/locales/hi.json | 4 +- app/soapbox/locales/hr.json | 4 +- app/soapbox/locales/hu.json | 4 +- app/soapbox/locales/hy.json | 4 +- app/soapbox/locales/id.json | 4 +- app/soapbox/locales/io.json | 4 +- app/soapbox/locales/is.json | 6 +-- app/soapbox/locales/it.json | 6 +-- app/soapbox/locales/ja.json | 4 +- app/soapbox/locales/ka.json | 4 +- app/soapbox/locales/kk.json | 4 +- app/soapbox/locales/ko.json | 4 +- app/soapbox/locales/lt.json | 4 +- app/soapbox/locales/lv.json | 4 +- app/soapbox/locales/mk.json | 4 +- app/soapbox/locales/ms.json | 4 +- app/soapbox/locales/nl.json | 4 +- app/soapbox/locales/nn.json | 4 +- app/soapbox/locales/no.json | 4 +- app/soapbox/locales/oc.json | 4 +- app/soapbox/locales/pl.json | 6 +-- app/soapbox/locales/pt-BR.json | 4 +- app/soapbox/locales/pt.json | 4 +- app/soapbox/locales/ro.json | 4 +- app/soapbox/locales/ru.json | 4 +- app/soapbox/locales/sk.json | 4 +- app/soapbox/locales/sl.json | 4 +- app/soapbox/locales/sq.json | 4 +- app/soapbox/locales/sr-Latn.json | 4 +- app/soapbox/locales/sr.json | 4 +- app/soapbox/locales/sv.json | 4 +- app/soapbox/locales/ta.json | 4 +- app/soapbox/locales/te.json | 4 +- app/soapbox/locales/th.json | 4 +- app/soapbox/locales/tr.json | 4 +- app/soapbox/locales/uk.json | 4 +- app/soapbox/locales/zh-CN.json | 6 +-- app/soapbox/locales/zh-HK.json | 4 +- app/soapbox/locales/zh-TW.json | 4 +- 68 files changed, 194 insertions(+), 173 deletions(-) diff --git a/app/soapbox/features/chats/components/chat-page.tsx b/app/soapbox/features/chats/components/chat-page.tsx index 1ca49ed80..07c702ded 100644 --- a/app/soapbox/features/chats/components/chat-page.tsx +++ b/app/soapbox/features/chats/components/chat-page.tsx @@ -20,6 +20,15 @@ import ChatList from './chat-list'; const messages = defineMessages({ title: { id: 'column.chats', defaultMessage: 'Messages' }, searchPlaceholder: { id: 'chats.search_placeholder', defaultMessage: 'Start a chat with…' }, + blockMessage: { id: 'chat_settings.block.message', defaultMessage: 'Blocking will prevent this profile from direct messaging you and viewing your content. You can unblock later.' }, + blockHeading: { id: 'chat_settings.block.heading', defaultMessage: 'Block @{acct}' }, + blockConfirm: { id: 'chat_settings.block.confirm', defaultMessage: 'Block' }, + leaveMessage: { id: 'chat_settings.leave.message', defaultMessage: 'Are you sure you want to leave this chat? This conversation will be removed from your inbox.' }, + leaveHeading: { id: 'chat_settings.leave.heading', defaultMessage: 'Leave Chat' }, + leaveConfirm: { id: 'chat_settings.leave.confirm', defaultMessage: 'Leave Chat' }, + blockUser: { id: 'chat_settings.options.block_user', defaultMessage: 'Block @{acct}' }, + reportUser: { id: 'chat_settings.options.report_user', defaultMessage: 'Report @{acct}' }, + leaveChat: { id: 'chat_settings.options.leave_chat', defaultMessage: 'Leave Chat' }, }); const ChatPage = () => { @@ -42,9 +51,9 @@ const ChatPage = () => { const handleBlockUser = () => { dispatch(openModal('CONFIRM', { - heading: `Block @${chat?.account.acct}`, - message: 'Blocking will prevent this profile from direct messaging you and viewing your content. You can unblock later.', - confirm: 'Block', + heading: intl.formatMessage(messages.blockHeading, { acct: chat?.account.acct }), + message: intl.formatMessage(messages.blockMessage), + confirm: intl.formatMessage(messages.blockConfirm), confirmationTheme: 'primary', onConfirm: () => dispatch(blockAccount(chat?.account.id as string)), })); @@ -52,19 +61,15 @@ const ChatPage = () => { const handleLeaveChat = () => { dispatch(openModal('CONFIRM', { - heading: 'Leave Chat', - message: 'Are you sure you want to leave this chat? This conversation will be removed from your inbox.', - confirm: 'Leave Chat', + heading: intl.formatMessage(messages.leaveHeading), + message: intl.formatMessage(messages.leaveMessage), + confirm: intl.formatMessage(messages.leaveConfirm), confirmationTheme: 'primary', - onConfirm: () => { - deleteChat.mutate(); - }, + onConfirm: () => deleteChat.mutate(), })); }; - const handleReportChat = () => { - dispatch(initReport(chat?.account as any)); - }; + const handleReportChat = () => dispatch(initReport(chat?.account as any)); return ( @@ -147,7 +152,7 @@ const ChatPage = () => { >
- Block @{chat.account.acct} + {intl.formatMessage(messages.blockUser, { acct: chat.account.acct })}
@@ -158,7 +163,7 @@ const ChatPage = () => { >
- Report @{chat.account.acct} + {intl.formatMessage(messages.reportUser, { acct: chat.account.acct })}
@@ -169,7 +174,7 @@ const ChatPage = () => { >
- Leave chat + {intl.formatMessage(messages.leaveChat)}
diff --git a/app/soapbox/features/chats/components/chat-settings.tsx b/app/soapbox/features/chats/components/chat-settings.tsx index 02c0b9dfe..80e5c8e43 100644 --- a/app/soapbox/features/chats/components/chat-settings.tsx +++ b/app/soapbox/features/chats/components/chat-settings.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import { defineMessages, useIntl } from 'react-intl'; import { blockAccount } from 'soapbox/actions/accounts'; import { openModal } from 'soapbox/actions/modals'; @@ -11,8 +12,23 @@ import { useChat, useChatSilences } from 'soapbox/queries/chats'; import ChatPaneHeader from './chat-pane-header'; +const messages = defineMessages({ + blockMessage: { id: 'chat_settings.block.message', defaultMessage: 'Blocking will prevent this profile from direct messaging you and viewing your content. You can unblock later.' }, + blockHeading: { id: 'chat_settings.block.heading', defaultMessage: 'Block @{acct}' }, + blockConfirm: { id: 'chat_settings.block.confirm', defaultMessage: 'Block' }, + leaveMessage: { id: 'chat_settings.leave.message', defaultMessage: 'Are you sure you want to leave this chat? This conversation will be removed from your inbox.' }, + leaveHeading: { id: 'chat_settings.leave.heading', defaultMessage: 'Leave Chat' }, + leaveConfirm: { id: 'chat_settings.leave.confirm', defaultMessage: 'Leave Chat' }, + title: { id: 'chat_settings.title', defaultMessage: 'Chat Details' }, + blockUser: { id: 'chat_settings.options.block_user', defaultMessage: 'Block @{acct}' }, + reportUser: { id: 'chat_settings.options.report_user', defaultMessage: 'Report @{acct}' }, + leaveChat: { id: 'chat_settings.options.leave_chat', defaultMessage: 'Leave Chat' }, +}); + const ChatSettings = () => { const dispatch = useAppDispatch(); + const intl = useIntl(); + const { isSilenced, handleSilence } = useChatSilences(); const { chat, setEditing, toggleChatPane } = useChatContext(); @@ -27,9 +43,9 @@ const ChatSettings = () => { const handleBlockUser = () => { dispatch(openModal('CONFIRM', { - heading: `Block @${chat?.account.acct}`, - message: 'Blocking will prevent this profile from direct messaging you and viewing your content. You can unblock later.', - confirm: 'Block', + heading: intl.formatMessage(messages.blockHeading, { acct: chat?.account.acct }), + message: intl.formatMessage(messages.blockMessage), + confirm: intl.formatMessage(messages.blockConfirm), confirmationTheme: 'primary', onConfirm: () => dispatch(blockAccount(chat?.account.id as string)), })); @@ -37,19 +53,15 @@ const ChatSettings = () => { const handleLeaveChat = () => { dispatch(openModal('CONFIRM', { - heading: 'Leave Chat', - message: 'Are you sure you want to leave this chat? This conversation will be removed from your inbox.', - confirm: 'Leave Chat', + heading: intl.formatMessage(messages.leaveHeading), + message: intl.formatMessage(messages.leaveMessage), + confirm: intl.formatMessage(messages.leaveConfirm), confirmationTheme: 'primary', - onConfirm: () => { - deleteChat.mutate(); - }, + onConfirm: () => deleteChat.mutate(), })); }; - const handleReportChat = () => { - dispatch(initReport(chat?.account as any)); - }; + const handleReportChat = () => dispatch(initReport(chat?.account as any)); if (!chat) { return null; @@ -71,7 +83,7 @@ const ChatSettings = () => { - Chat Details + {intl.formatMessage(messages.title)} } @@ -99,17 +111,17 @@ const ChatSettings = () => { diff --git a/app/soapbox/features/chats/components/chat.tsx b/app/soapbox/features/chats/components/chat.tsx index 1e4473fcb..9fe72c9fa 100644 --- a/app/soapbox/features/chats/components/chat.tsx +++ b/app/soapbox/features/chats/components/chat.tsx @@ -15,8 +15,10 @@ import { truncateFilename } from 'soapbox/utils/media'; import ChatMessageList from './chat-message-list'; const messages = defineMessages({ - placeholder: { id: 'chat_box.input.placeholder', defaultMessage: 'Type a message' }, - send: { id: 'chat_box.actions.send', defaultMessage: 'Send' }, + placeholder: { id: 'chat.input.placeholder', defaultMessage: 'Type a message' }, + send: { id: 'chat.actions.send', defaultMessage: 'Send' }, + failedToSend: { id: 'chat.failed_to_send', defaultMessage: 'Message failed to send.' }, + retry: { id: 'chat.retry', defaultMessage: 'Retry?' }, }); const fileKeyGen = (): number => Math.floor((Math.random() * 0x10000)); @@ -242,12 +244,12 @@ const Chat: React.FC = ({ chat, autosize, inputRef, className }) {hasErrorSubmittingMessage && ( <> - Message failed to send. + {intl.formatMessage(messages.failedToSend)} diff --git a/app/soapbox/locales/ar.json b/app/soapbox/locales/ar.json index 72c3cc69d..55d67f99c 100644 --- a/app/soapbox/locales/ar.json +++ b/app/soapbox/locales/ar.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "لقد وقع هناك خطأ أثناء عملية تحميل هذا العنصر.", "bundle_modal_error.retry": "إعادة المحاولة", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/ast.json b/app/soapbox/locales/ast.json index fb8848755..3245e9943 100644 --- a/app/soapbox/locales/ast.json +++ b/app/soapbox/locales/ast.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Try again", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/bg.json b/app/soapbox/locales/bg.json index 2915758a1..a3071b4d1 100644 --- a/app/soapbox/locales/bg.json +++ b/app/soapbox/locales/bg.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Try again", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/bn.json b/app/soapbox/locales/bn.json index 815c3a307..bd985d2af 100644 --- a/app/soapbox/locales/bn.json +++ b/app/soapbox/locales/bn.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "এই অংশটি দেখাতে যেয়ে কোনো সমস্যা হয়েছে।", "bundle_modal_error.retry": "আবার চেষ্টা করুন", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/br.json b/app/soapbox/locales/br.json index aef696bf6..e89f8eb7c 100644 --- a/app/soapbox/locales/br.json +++ b/app/soapbox/locales/br.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Klask endro", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/ca.json b/app/soapbox/locales/ca.json index d7c6a5391..54a4c75f1 100644 --- a/app/soapbox/locales/ca.json +++ b/app/soapbox/locales/ca.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "S'ha produït un error en carregar aquest component.", "bundle_modal_error.retry": "Torna-ho a provar", "card.back.label": "Back", - "chat_box.actions.send": "Envia", - "chat_box.input.placeholder": "Envia un missatge…", + "chat.actions.send": "Envia", + "chat.input.placeholder": "Envia un missatge…", "chat_panels.main_window.empty": "Cap xat trobat. Per arrencar un xat, visita el perfil d'un usuari.", "chat_panels.main_window.title": "Xats", "chats.actions.delete": "Elimina missatge", diff --git a/app/soapbox/locales/co.json b/app/soapbox/locales/co.json index 6ead2fcc9..845c1eba8 100644 --- a/app/soapbox/locales/co.json +++ b/app/soapbox/locales/co.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "C'hè statu un prublemu caricandu st'elementu.", "bundle_modal_error.retry": "Pruvà torna", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/cs.json b/app/soapbox/locales/cs.json index 6133a18b1..8b3646453 100644 --- a/app/soapbox/locales/cs.json +++ b/app/soapbox/locales/cs.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Při načítání tohoto komponentu se něco pokazilo.", "bundle_modal_error.retry": "Zkusit znovu", "card.back.label": "Back", - "chat_box.actions.send": "Poslat", - "chat_box.input.placeholder": "Poslat zprávu…", + "chat.actions.send": "Poslat", + "chat.input.placeholder": "Poslat zprávu…", "chat_panels.main_window.empty": "Žádné chaty nenalezeny. Pro začnutí chatu, navštivte nečí profil.", "chat_panels.main_window.title": "Chaty", "chats.actions.delete": "Odstranit zprávu", diff --git a/app/soapbox/locales/cy.json b/app/soapbox/locales/cy.json index 923288c45..da20bc4e6 100644 --- a/app/soapbox/locales/cy.json +++ b/app/soapbox/locales/cy.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Aeth rhywbeth o'i le tra'n llwytho'r elfen hon.", "bundle_modal_error.retry": "Ceiswich eto", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/da.json b/app/soapbox/locales/da.json index 949b19384..59399a0b1 100644 --- a/app/soapbox/locales/da.json +++ b/app/soapbox/locales/da.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Noget gik galt under indlæsningen af dette komponent.", "bundle_modal_error.retry": "Prøv igen", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/de.json b/app/soapbox/locales/de.json index dea27e5af..7ba508197 100644 --- a/app/soapbox/locales/de.json +++ b/app/soapbox/locales/de.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Beim Laden ist ein Fehler aufgetreten.", "bundle_modal_error.retry": "Erneut versuchen", "card.back.label": "Zurück", - "chat_box.actions.send": "Senden", - "chat_box.input.placeholder": "Nachricht senden…", + "chat.actions.send": "Senden", + "chat.input.placeholder": "Nachricht senden…", "chat_panels.main_window.empty": "Keine Chats vorhanden. Besuche ein Nutzerprofil, um einen Chat zu starten.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Nachricht löschen", @@ -1068,4 +1068,4 @@ "video.play": "Abspielen", "video.unmute": "Ton einschalten", "who_to_follow.title": "Vorschläge" -} +} \ No newline at end of file diff --git a/app/soapbox/locales/defaultMessages.json b/app/soapbox/locales/defaultMessages.json index 2dd513e59..fca9d50cd 100644 --- a/app/soapbox/locales/defaultMessages.json +++ b/app/soapbox/locales/defaultMessages.json @@ -2136,11 +2136,11 @@ "descriptors": [ { "defaultMessage": "Send a message…", - "id": "chat_box.input.placeholder" + "id": "chat.input.placeholder" }, { "defaultMessage": "Send", - "id": "chat_box.actions.send" + "id": "chat.actions.send" } ], "path": "app/soapbox/features/chats/components/chat_box.json" @@ -6949,4 +6949,4 @@ ], "path": "app/soapbox/pages/profile_page.json" } -] +] \ No newline at end of file diff --git a/app/soapbox/locales/el.json b/app/soapbox/locales/el.json index 5d807c99b..10a0f65f3 100644 --- a/app/soapbox/locales/el.json +++ b/app/soapbox/locales/el.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Κάτι πήγε στραβά κατά τη φόρτωση του στοιχείου.", "bundle_modal_error.retry": "Δοκίμασε ξανά", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/en-Shaw.json b/app/soapbox/locales/en-Shaw.json index bf0663c44..a3839b64e 100644 --- a/app/soapbox/locales/en-Shaw.json +++ b/app/soapbox/locales/en-Shaw.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "𐑕𐑳𐑥𐑔𐑦𐑙 𐑢𐑧𐑯𐑑 𐑮𐑪𐑙 𐑢𐑲𐑤 𐑤𐑴𐑛𐑦𐑙 𐑞𐑦𐑕 𐑒𐑩𐑥𐑐𐑴𐑯𐑩𐑯𐑑.", "bundle_modal_error.retry": "𐑑𐑮𐑲 𐑩𐑜𐑱𐑯", "card.back.label": "Back", - "chat_box.actions.send": "𐑕𐑧𐑯𐑛", - "chat_box.input.placeholder": "𐑕𐑧𐑯𐑛 𐑩 𐑥𐑧𐑕𐑦𐑡…", + "chat.actions.send": "𐑕𐑧𐑯𐑛", + "chat.input.placeholder": "𐑕𐑧𐑯𐑛 𐑩 𐑥𐑧𐑕𐑦𐑡…", "chat_panels.main_window.empty": "𐑯𐑴 𐑗𐑨𐑑𐑕 𐑓𐑬𐑯𐑛. 𐑑 𐑕𐑑𐑸𐑑 𐑩 𐑗𐑨𐑑, 𐑝𐑦𐑟𐑦𐑑 𐑩 𐑿𐑟𐑼𐑟 𐑐𐑮𐑴𐑓𐑲𐑤.", "chat_panels.main_window.title": "𐑗𐑨𐑑𐑕", "chats.actions.delete": "𐑛𐑦𐑤𐑰𐑑 𐑥𐑧𐑕𐑦𐑡", @@ -1068,4 +1068,4 @@ "video.play": "𐑐𐑤𐑱", "video.unmute": "𐑳𐑯𐑥𐑿𐑑 𐑕𐑬𐑯𐑛", "who_to_follow.title": "𐑣𐑵 𐑑 𐑓𐑪𐑤𐑴" -} +} \ No newline at end of file diff --git a/app/soapbox/locales/en.json b/app/soapbox/locales/en.json index 58d37d736..6fcadd1c3 100644 --- a/app/soapbox/locales/en.json +++ b/app/soapbox/locales/en.json @@ -164,8 +164,10 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Try again", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", + "chat.failed_to_send": "Message failed to send.", + "chat.retry": "Retry?", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/eo.json b/app/soapbox/locales/eo.json index f56fd1ab4..f1c144ea1 100644 --- a/app/soapbox/locales/eo.json +++ b/app/soapbox/locales/eo.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Io misfunkciis en la ŝargado de ĉi tiu elemento.", "bundle_modal_error.retry": "Bonvolu reprovi", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/es-AR.json b/app/soapbox/locales/es-AR.json index f4c92f073..a9c8045c9 100644 --- a/app/soapbox/locales/es-AR.json +++ b/app/soapbox/locales/es-AR.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Algo salió mal al cargar este componente.", "bundle_modal_error.retry": "Intentá de nuevo", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/es.json b/app/soapbox/locales/es.json index 9ec2e1573..a18859bab 100644 --- a/app/soapbox/locales/es.json +++ b/app/soapbox/locales/es.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Algo salió mal al cargar este componente.", "bundle_modal_error.retry": "Inténtalo de nuevo", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/et.json b/app/soapbox/locales/et.json index 3d932ea3d..a313ad804 100644 --- a/app/soapbox/locales/et.json +++ b/app/soapbox/locales/et.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Selle komponendi laadimisel läks midagi viltu.", "bundle_modal_error.retry": "Proovi uuesti", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/eu.json b/app/soapbox/locales/eu.json index 2366dd2a6..9981e4116 100644 --- a/app/soapbox/locales/eu.json +++ b/app/soapbox/locales/eu.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Zerbait okerra gertatu da osagai hau kargatzean.", "bundle_modal_error.retry": "Saiatu berriro", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/fa.json b/app/soapbox/locales/fa.json index 752d47624..3adeb4533 100644 --- a/app/soapbox/locales/fa.json +++ b/app/soapbox/locales/fa.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "هنگام بازکردن این بخش خطایی رخ داد.", "bundle_modal_error.retry": "تلاش دوباره", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/fi.json b/app/soapbox/locales/fi.json index 9cde623e9..38b1bf94d 100644 --- a/app/soapbox/locales/fi.json +++ b/app/soapbox/locales/fi.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Jokin meni vikaan komponenttia ladattaessa.", "bundle_modal_error.retry": "Yritä uudestaan", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/fr.json b/app/soapbox/locales/fr.json index b64464be8..196e0f6d8 100644 --- a/app/soapbox/locales/fr.json +++ b/app/soapbox/locales/fr.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Une erreur s’est produite lors du chargement de ce composant.", "bundle_modal_error.retry": "Réessayer", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/ga.json b/app/soapbox/locales/ga.json index 6962cfbeb..79c68b566 100644 --- a/app/soapbox/locales/ga.json +++ b/app/soapbox/locales/ga.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Try again", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/gl.json b/app/soapbox/locales/gl.json index 89932a233..b401e39ff 100644 --- a/app/soapbox/locales/gl.json +++ b/app/soapbox/locales/gl.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Algo fallou mentras se cargaba este compoñente.", "bundle_modal_error.retry": "Inténteo de novo", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/he.json b/app/soapbox/locales/he.json index 7b20f137a..83c65dbdd 100644 --- a/app/soapbox/locales/he.json +++ b/app/soapbox/locales/he.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "משהו השתבש בעת טעינת הרכיב הזה.", "bundle_modal_error.retry": "לנסות שוב", "card.back.label": "Back", - "chat_box.actions.send": "שליחה", - "chat_box.input.placeholder": "שלח הודעה", + "chat.actions.send": "שליחה", + "chat.input.placeholder": "שלח הודעה", "chat_panels.main_window.empty": "לא נמצאו צ'אטים. כדי להתחיל צ'אט, בקר בפרופיל של משתמש.", "chat_panels.main_window.title": "צ'אטים", "chats.actions.delete": "מחק הודעה", @@ -1068,4 +1068,4 @@ "video.play": "ניגון", "video.unmute": "החזרת צליל", "who_to_follow.title": "מי לעקוב" -} +} \ No newline at end of file diff --git a/app/soapbox/locales/hi.json b/app/soapbox/locales/hi.json index dbb999376..1ba20e725 100644 --- a/app/soapbox/locales/hi.json +++ b/app/soapbox/locales/hi.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Try again", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/hr.json b/app/soapbox/locales/hr.json index c7b65c61d..ab2aa2c36 100644 --- a/app/soapbox/locales/hr.json +++ b/app/soapbox/locales/hr.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Try again", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/hu.json b/app/soapbox/locales/hu.json index 74d5400c8..838154d58 100644 --- a/app/soapbox/locales/hu.json +++ b/app/soapbox/locales/hu.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Hiba történt a komponens betöltésekor.", "bundle_modal_error.retry": "Próbáld újra", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/hy.json b/app/soapbox/locales/hy.json index 5030bb118..57c0504d3 100644 --- a/app/soapbox/locales/hy.json +++ b/app/soapbox/locales/hy.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Այս բաղադրիչը բեռնելու ընթացքում ինչ֊որ բան խափանվեց։", "bundle_modal_error.retry": "Կրկին փորձել", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/id.json b/app/soapbox/locales/id.json index 7638b4f83..76a0be30d 100644 --- a/app/soapbox/locales/id.json +++ b/app/soapbox/locales/id.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Kesalahan terjadi saat memuat komponen ini.", "bundle_modal_error.retry": "Coba lagi", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/io.json b/app/soapbox/locales/io.json index 6548d94df..0285ff61f 100644 --- a/app/soapbox/locales/io.json +++ b/app/soapbox/locales/io.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Try again", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/is.json b/app/soapbox/locales/is.json index 50e1f1b0f..2e1d16d57 100644 --- a/app/soapbox/locales/is.json +++ b/app/soapbox/locales/is.json @@ -159,8 +159,8 @@ "bundle_modal_error.message": "Eitthvað fór úrskeiðis við að hlaða þessum íhluti.", "bundle_modal_error.retry": "Reyna aftur", "card.back.label": "Back", - "chat_box.actions.send": "Senda", - "chat_box.input.placeholder": "Senda skilaboð…", + "chat.actions.send": "Senda", + "chat.input.placeholder": "Senda skilaboð…", "chat_panels.main_window.empty": "Engin samtöl fannst. Til að hefja spjall skaltu fara á notandasnið einhvers..", "chat_panels.main_window.title": "Spjöll", "chats.actions.delete": "Eyða skilaboði", @@ -986,4 +986,4 @@ "video.play": "Spila", "video.unmute": "Kveikja á hljóði", "who_to_follow.title": "Hverjum á að fylgja" -} +} \ No newline at end of file diff --git a/app/soapbox/locales/it.json b/app/soapbox/locales/it.json index 82cdda17c..7c5d3df45 100644 --- a/app/soapbox/locales/it.json +++ b/app/soapbox/locales/it.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "C'è stato un errore mentre questo componente veniva caricato.", "bundle_modal_error.retry": "Riprova", "card.back.label": "Indietro", - "chat_box.actions.send": "Invia", - "chat_box.input.placeholder": "Invia un messaggio…", + "chat.actions.send": "Invia", + "chat.input.placeholder": "Invia un messaggio…", "chat_panels.main_window.empty": "Non hai nessuna chat da visualizzare. Per iniziare a chiaccherare con qualcuno, visita il relativo profilo.", "chat_panels.main_window.title": "Chat", "chats.actions.delete": "Elimina", @@ -1068,4 +1068,4 @@ "video.play": "Avvia", "video.unmute": "Riattiva sonoro", "who_to_follow.title": "Chi seguire" -} +} \ No newline at end of file diff --git a/app/soapbox/locales/ja.json b/app/soapbox/locales/ja.json index 9449a32d4..7b3a547c9 100644 --- a/app/soapbox/locales/ja.json +++ b/app/soapbox/locales/ja.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "コンポーネントの読み込み中に問題が発生しました。", "bundle_modal_error.retry": "再試行", "card.back.label": "Back", - "chat_box.actions.send": "送信", - "chat_box.input.placeholder": "メッセージを送信……", + "chat.actions.send": "送信", + "chat.input.placeholder": "メッセージを送信……", "chat_panels.main_window.empty": "チャットがありません。始めるにはユーザのプロフィール画面へ移動してください。", "chat_panels.main_window.title": "チャット", "chats.actions.delete": "メッセージを削除", diff --git a/app/soapbox/locales/ka.json b/app/soapbox/locales/ka.json index e4bc8477d..08408af86 100644 --- a/app/soapbox/locales/ka.json +++ b/app/soapbox/locales/ka.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "ამ კომპონენტის ჩატვირთვისას რაღაც აირია.", "bundle_modal_error.retry": "სცადეთ კიდევ ერთხელ", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/kk.json b/app/soapbox/locales/kk.json index 39de488d7..7f059ace0 100644 --- a/app/soapbox/locales/kk.json +++ b/app/soapbox/locales/kk.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Бұл компонентті жүктеген кезде бір қате пайда болды.", "bundle_modal_error.retry": "Қайтадан көріңіз", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/ko.json b/app/soapbox/locales/ko.json index 520d688db..10c2a0d94 100644 --- a/app/soapbox/locales/ko.json +++ b/app/soapbox/locales/ko.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "컴포넌트를 불러오는 과정에서 문제가 발생했습니다.", "bundle_modal_error.retry": "다시 시도", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/lt.json b/app/soapbox/locales/lt.json index 41eefb64d..a226c0bc2 100644 --- a/app/soapbox/locales/lt.json +++ b/app/soapbox/locales/lt.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Try again", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/lv.json b/app/soapbox/locales/lv.json index 96f5f7944..e5c58d19d 100644 --- a/app/soapbox/locales/lv.json +++ b/app/soapbox/locales/lv.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Kaut kas nogāja greizi ielādējot šo komponenti.", "bundle_modal_error.retry": "Mēģini vēlreiz", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/mk.json b/app/soapbox/locales/mk.json index 902095119..a0a43c4ec 100644 --- a/app/soapbox/locales/mk.json +++ b/app/soapbox/locales/mk.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Настана грешка при прикажувањето на оваа веб-страница.", "bundle_modal_error.retry": "Обидете се повторно", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/ms.json b/app/soapbox/locales/ms.json index bb8a2d6c4..bfed432fc 100644 --- a/app/soapbox/locales/ms.json +++ b/app/soapbox/locales/ms.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Something went wrong while loading this page.", "bundle_modal_error.retry": "Try again", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/nl.json b/app/soapbox/locales/nl.json index 9af1d07ba..c0852a465 100644 --- a/app/soapbox/locales/nl.json +++ b/app/soapbox/locales/nl.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Tijdens het laden van dit onderdeel is er iets fout gegaan.", "bundle_modal_error.retry": "Opnieuw proberen", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/nn.json b/app/soapbox/locales/nn.json index a795419bc..61e167000 100644 --- a/app/soapbox/locales/nn.json +++ b/app/soapbox/locales/nn.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Noko gikk gale mens komponent var i ferd med å bli nedlasta.", "bundle_modal_error.retry": "Prøv igjen", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/no.json b/app/soapbox/locales/no.json index 85a07fdf3..b2774745d 100644 --- a/app/soapbox/locales/no.json +++ b/app/soapbox/locales/no.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Noe gikk galt da denne komponenten lastet.", "bundle_modal_error.retry": "Prøv igjen", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/oc.json b/app/soapbox/locales/oc.json index 9af2218b3..47eae3039 100644 --- a/app/soapbox/locales/oc.json +++ b/app/soapbox/locales/oc.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Quicòm a fach mèuca pendent lo cargament d’aqueste compausant.", "bundle_modal_error.retry": "Tornar ensajar", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/pl.json b/app/soapbox/locales/pl.json index 70a7b3902..696715438 100644 --- a/app/soapbox/locales/pl.json +++ b/app/soapbox/locales/pl.json @@ -184,8 +184,8 @@ "bundle_modal_error.message": "Coś poszło nie tak podczas ładowania tego składnika.", "bundle_modal_error.retry": "Spróbuj ponownie", "card.back.label": "Wstecz", - "chat_box.actions.send": "Wyślij", - "chat_box.input.placeholder": "Wyślij wiadomość…", + "chat.actions.send": "Wyślij", + "chat.input.placeholder": "Wyślij wiadomość…", "chat_panels.main_window.empty": "Nie znaleziono rozmów. Aby zacząć rozmowę, odwiedź profil użytkownika.", "chat_panels.main_window.title": "Rozmowy", "chats.actions.delete": "Usuń wiadomość", @@ -1256,4 +1256,4 @@ "video.play": "Odtwórz", "video.unmute": "Cofnij wyciszenie", "who_to_follow.title": "Kogo obserwować" -} +} \ No newline at end of file diff --git a/app/soapbox/locales/pt-BR.json b/app/soapbox/locales/pt-BR.json index d863a6f1f..83c1ec8a0 100644 --- a/app/soapbox/locales/pt-BR.json +++ b/app/soapbox/locales/pt-BR.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Algo de errado aconteceu enquanto este componente era carregado.", "bundle_modal_error.retry": "Tente novamente", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/pt.json b/app/soapbox/locales/pt.json index 104a1521b..6b777a42d 100644 --- a/app/soapbox/locales/pt.json +++ b/app/soapbox/locales/pt.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Ocorreu algo inesperado enquanto este componente era carregado.", "bundle_modal_error.retry": "Tentar novamente", "card.back.label": "Back", - "chat_box.actions.send": "Enviar", - "chat_box.input.placeholder": "Enviar uma mensagem…", + "chat.actions.send": "Enviar", + "chat.input.placeholder": "Enviar uma mensagem…", "chat_panels.main_window.empty": "Sem chats encontrados. Para iniciar um chat, visita o perfil de algum utilizador.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Apagar mensagem", diff --git a/app/soapbox/locales/ro.json b/app/soapbox/locales/ro.json index 072924a75..3e37bf070 100644 --- a/app/soapbox/locales/ro.json +++ b/app/soapbox/locales/ro.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Ceva nu a funcționat în timupul încărcării acestui component.", "bundle_modal_error.retry": "Încearcă din nou", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/ru.json b/app/soapbox/locales/ru.json index 5a6d7c3cc..7ce94c560 100644 --- a/app/soapbox/locales/ru.json +++ b/app/soapbox/locales/ru.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Что-то пошло не так при загрузке этого компонента.", "bundle_modal_error.retry": "Попробовать снова", "card.back.label": "Back", - "chat_box.actions.send": "Отправить", - "chat_box.input.placeholder": "Отправить сообщение…", + "chat.actions.send": "Отправить", + "chat.input.placeholder": "Отправить сообщение…", "chat_panels.main_window.empty": "Чатов не найдено. Откройте профиль пользователя, чтобы начать новый.", "chat_panels.main_window.title": "Чаты", "chats.actions.delete": "Удалить Сообщение", diff --git a/app/soapbox/locales/sk.json b/app/soapbox/locales/sk.json index 6ef9ee44a..d398aa2b1 100644 --- a/app/soapbox/locales/sk.json +++ b/app/soapbox/locales/sk.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Nastala chyba pri načítaní tohto komponentu.", "bundle_modal_error.retry": "Skúsiť znova", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/sl.json b/app/soapbox/locales/sl.json index d65bfaa3c..543ef36e7 100644 --- a/app/soapbox/locales/sl.json +++ b/app/soapbox/locales/sl.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Med nalaganjem te komponente je prišlo do napake.", "bundle_modal_error.retry": "Poskusi ponovno", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/sq.json b/app/soapbox/locales/sq.json index 661ee48ba..2b5326ef9 100644 --- a/app/soapbox/locales/sq.json +++ b/app/soapbox/locales/sq.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Diç shkoi ters teksa ngarkohej ky përbërës.", "bundle_modal_error.retry": "Riprovoni", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/sr-Latn.json b/app/soapbox/locales/sr-Latn.json index 6033e0bc0..45d28d2a8 100644 --- a/app/soapbox/locales/sr-Latn.json +++ b/app/soapbox/locales/sr-Latn.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Nešto nije bilo u redu pri učitavanju ove komponente.", "bundle_modal_error.retry": "Pokušajte ponovo", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/sr.json b/app/soapbox/locales/sr.json index 99b0a5088..e3797502a 100644 --- a/app/soapbox/locales/sr.json +++ b/app/soapbox/locales/sr.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Нешто није било у реду при учитавању ове компоненте.", "bundle_modal_error.retry": "Покушајте поново", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/sv.json b/app/soapbox/locales/sv.json index 12fd48d12..ae011d64e 100644 --- a/app/soapbox/locales/sv.json +++ b/app/soapbox/locales/sv.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Något gick fel när denna komponent laddades.", "bundle_modal_error.retry": "Försök igen", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/ta.json b/app/soapbox/locales/ta.json index 833c24ae5..8315230d3 100644 --- a/app/soapbox/locales/ta.json +++ b/app/soapbox/locales/ta.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.", "bundle_modal_error.retry": "மீண்டும் முயற்சி செய்", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/te.json b/app/soapbox/locales/te.json index ff1c7241c..15283d966 100644 --- a/app/soapbox/locales/te.json +++ b/app/soapbox/locales/te.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "ఈ భాగం లోడ్ అవుతున్నప్పుడు ఏదో తప్పు జరిగింది.", "bundle_modal_error.retry": "మళ్ళీ ప్రయత్నించండి", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/th.json b/app/soapbox/locales/th.json index aac791db2..26152e22b 100644 --- a/app/soapbox/locales/th.json +++ b/app/soapbox/locales/th.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "มีบางอย่างผิดพลาดขณะโหลดส่วนประกอบนี้", "bundle_modal_error.retry": "ลองอีกครั้ง", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/tr.json b/app/soapbox/locales/tr.json index 10f735df5..053046ad9 100644 --- a/app/soapbox/locales/tr.json +++ b/app/soapbox/locales/tr.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Bu bileşen yüklenirken bir şeyler ters gitti.", "bundle_modal_error.retry": "Tekrar deneyin", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/uk.json b/app/soapbox/locales/uk.json index 1a475b41f..506f445ad 100644 --- a/app/soapbox/locales/uk.json +++ b/app/soapbox/locales/uk.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "Щось пішло не так під час завантаження компоненту.", "bundle_modal_error.retry": "Спробувати ще раз", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Чат", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/zh-CN.json b/app/soapbox/locales/zh-CN.json index 7a5aeb1f1..0e508ea9c 100644 --- a/app/soapbox/locales/zh-CN.json +++ b/app/soapbox/locales/zh-CN.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "载入组件时发生错误。", "bundle_modal_error.retry": "重试", "card.back.label": "Back", - "chat_box.actions.send": "发送", - "chat_box.input.placeholder": "发送聊天信息", + "chat.actions.send": "发送", + "chat.input.placeholder": "发送聊天信息", "chat_panels.main_window.empty": "还没有聊天信息,找人聊聊吧!", "chat_panels.main_window.title": "聊天", "chats.actions.delete": "删除", @@ -1066,4 +1066,4 @@ "video.play": "播放", "video.unmute": "取消静音", "who_to_follow.title": "推荐关注" -} +} \ No newline at end of file diff --git a/app/soapbox/locales/zh-HK.json b/app/soapbox/locales/zh-HK.json index 76b1193db..434edb1f7 100644 --- a/app/soapbox/locales/zh-HK.json +++ b/app/soapbox/locales/zh-HK.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "加載本組件出錯。", "bundle_modal_error.retry": "重試", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete", diff --git a/app/soapbox/locales/zh-TW.json b/app/soapbox/locales/zh-TW.json index 06f709d92..ab3cc0f61 100644 --- a/app/soapbox/locales/zh-TW.json +++ b/app/soapbox/locales/zh-TW.json @@ -164,8 +164,8 @@ "bundle_modal_error.message": "載入此元件時發生錯誤。", "bundle_modal_error.retry": "重試", "card.back.label": "Back", - "chat_box.actions.send": "Send", - "chat_box.input.placeholder": "Type a message", + "chat.actions.send": "Send", + "chat.input.placeholder": "Type a message", "chat_panels.main_window.empty": "No chats found. To start a chat, visit a user's profile.", "chat_panels.main_window.title": "Chats", "chats.actions.delete": "Delete",