Chats -> i18n

This commit is contained in:
Justin 2022-09-13 16:33:34 -04:00
parent ea1583dcac
commit 5eab883fd1
68 changed files with 194 additions and 173 deletions

View File

@ -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 (
<Card className='p-0 h-[calc(100vh-176px)] overflow-hidden' variant='rounded'>
@ -147,7 +152,7 @@ const ChatPage = () => {
>
<div className='w-full flex items-center space-x-2 font-bold text-sm text-primary-500 dark:text-accent-blue'>
<Icon src={require('@tabler/icons/ban.svg')} className='w-5 h-5' />
<span>Block @{chat.account.acct}</span>
<span>{intl.formatMessage(messages.blockUser, { acct: chat.account.acct })}</span>
</div>
</MenuItem>
@ -158,7 +163,7 @@ const ChatPage = () => {
>
<div className='w-full flex items-center space-x-2 font-bold text-sm text-primary-500 dark:text-accent-blue'>
<Icon src={require('@tabler/icons/flag.svg')} className='w-5 h-5' />
<span>Report @{chat.account.acct}</span>
<span>{intl.formatMessage(messages.reportUser, { acct: chat.account.acct })}</span>
</div>
</MenuItem>
@ -169,7 +174,7 @@ const ChatPage = () => {
>
<div className='w-full flex items-center space-x-2 font-bold text-sm text-danger-600 dark:text-danger-500'>
<Icon src={require('@tabler/icons/logout.svg')} className='w-5 h-5' />
<span>Leave chat</span>
<span>{intl.formatMessage(messages.leaveChat)}</span>
</div>
</MenuItem>
</Stack>

View File

@ -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 = () => {
</button>
<Text weight='semibold'>
Chat Details
{intl.formatMessage(messages.title)}
</Text>
</HStack>
}
@ -99,17 +111,17 @@ const ChatSettings = () => {
<Stack space={5}>
<button onClick={handleBlockUser} className='w-full flex items-center space-x-2 font-bold text-sm text-gray-700'>
<Icon src={require('@tabler/icons/ban.svg')} className='w-5 h-5 text-gray-600' />
<span>Block @{chat.account.acct}</span>
<span>{intl.formatMessage(messages.blockUser, { acct: chat.account.acct })}</span>
</button>
<button onClick={handleReportChat} className='w-full flex items-center space-x-2 font-bold text-sm text-gray-700'>
<Icon src={require('@tabler/icons/flag.svg')} className='w-5 h-5 text-gray-600' />
<span>Report @{chat.account.acct}</span>
<span>{intl.formatMessage(messages.reportUser, { acct: chat.account.acct })}</span>
</button>
<button onClick={handleLeaveChat} className='w-full flex items-center space-x-2 font-bold text-sm text-danger-600'>
<Icon src={require('@tabler/icons/logout.svg')} className='w-5 h-5 text-danger-600' />
<span>Leave chat</span>
<span>{intl.formatMessage(messages.leaveChat)}</span>
</button>
</Stack>
</Stack>

View File

@ -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<ChatInterface> = ({ chat, autosize, inputRef, className })
{hasErrorSubmittingMessage && (
<>
<Text theme='danger' size='xs'>
Message failed to send.
{intl.formatMessage(messages.failedToSend)}
</Text>
<button onClick={sendMessage} className='flex hover:underline'>
<Text theme='primary' size='xs' tag='span'>
Retry?
{intl.formatMessage(messages.retry)}
</Text>
</button>
</>

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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"
}
}

View File

@ -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"
}
]
]

View File

@ -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",

View File

@ -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": "𐑣𐑵 𐑑 𐑓𐑪𐑤𐑴"
}
}

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -164,8 +164,8 @@
"bundle_modal_error.message": "Une erreur sest 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",

View File

@ -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",

View File

@ -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",

View File

@ -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": "מי לעקוב"
}
}

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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"
}
}

View File

@ -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"
}
}

View File

@ -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": "メッセージを削除",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -164,8 +164,8 @@
"bundle_modal_error.message": "Quicòm a fach mèuca pendent lo cargament daqueste 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",

View File

@ -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ć"
}
}

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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": "Удалить Сообщение",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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": "推荐关注"
}
}

View File

@ -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",

View File

@ -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",