diff --git a/app/javascript/mastodon/components/status.jsx b/app/javascript/mastodon/components/status.jsx index 2d200a55b0921fbb8a21b7706e5f86eac6c7aa4e..281e6987434e39a2b9aecd8dc2743a1e84f9b954 100644 --- a/app/javascript/mastodon/components/status.jsx +++ b/app/javascript/mastodon/components/status.jsx @@ -386,6 +386,13 @@ class Status extends ImmutablePureComponent { account = status.get('account'); status = status.get('reblog'); + } else if (status.get('visibility') === 'direct') { + prepend = ( + <div className='status__prepend'> + <div className='status__prepend-icon-wrapper'><Icon id='at' className='status__prepend-icon' fixedWidth /></div> + <FormattedMessage id='status.direct_indicator' defaultMessage='Private mention' /> + </div> + ); } else if (showThread && status.get('in_reply_to_id') && status.get('in_reply_to_account_id') === status.getIn(['account', 'id'])) { const display_name_html = { __html: status.getIn(['account', 'display_name_html']) }; diff --git a/app/javascript/mastodon/components/status_action_bar.jsx b/app/javascript/mastodon/components/status_action_bar.jsx index 08e37e08924d7c3a201c55bbf4755511d665a556..7b4031b68eee91c86592af94779e2f93bc4e45a8 100644 --- a/app/javascript/mastodon/components/status_action_bar.jsx +++ b/app/javascript/mastodon/components/status_action_bar.jsx @@ -14,7 +14,7 @@ const messages = defineMessages({ delete: { id: 'status.delete', defaultMessage: 'Delete' }, redraft: { id: 'status.redraft', defaultMessage: 'Delete & re-draft' }, edit: { id: 'status.edit', defaultMessage: 'Edit' }, - direct: { id: 'status.direct', defaultMessage: 'Direct message @{name}' }, + direct: { id: 'status.direct', defaultMessage: 'Privately mention @{name}' }, mention: { id: 'status.mention', defaultMessage: 'Mention @{name}' }, mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' }, block: { id: 'account.block', defaultMessage: 'Block @{name}' }, diff --git a/app/javascript/mastodon/features/account/components/header.jsx b/app/javascript/mastodon/features/account/components/header.jsx index be6b178969ce7f40c98b5cd6406ab5c5ea4783ac..72eb7e6b654a856a768b3293cd4736880d503af5 100644 --- a/app/javascript/mastodon/features/account/components/header.jsx +++ b/app/javascript/mastodon/features/account/components/header.jsx @@ -28,7 +28,7 @@ const messages = defineMessages({ linkVerifiedOn: { id: 'account.link_verified_on', defaultMessage: 'Ownership of this link was checked on {date}' }, account_locked: { id: 'account.locked_info', defaultMessage: 'This account privacy status is set to locked. The owner manually reviews who can follow them.' }, mention: { id: 'account.mention', defaultMessage: 'Mention @{name}' }, - direct: { id: 'account.direct', defaultMessage: 'Direct message @{name}' }, + direct: { id: 'account.direct', defaultMessage: 'Privately mention @{name}' }, unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' }, block: { id: 'account.block', defaultMessage: 'Block @{name}' }, mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' }, diff --git a/app/javascript/mastodon/features/direct_timeline/index.jsx b/app/javascript/mastodon/features/direct_timeline/index.jsx index e2667d8e94018207991f757ca6ee5a3b6d72bb9f..5d4a7c49a51dd88dff0770a38e382c5fa584cdbf 100644 --- a/app/javascript/mastodon/features/direct_timeline/index.jsx +++ b/app/javascript/mastodon/features/direct_timeline/index.jsx @@ -11,7 +11,7 @@ import ColumnHeader from 'mastodon/components/column_header'; import ConversationsListContainer from './containers/conversations_list_container'; const messages = defineMessages({ - title: { id: 'column.direct', defaultMessage: 'Direct messages' }, + title: { id: 'column.direct', defaultMessage: 'Private mentions' }, }); class DirectTimeline extends React.PureComponent { @@ -91,7 +91,7 @@ class DirectTimeline extends React.PureComponent { timelineId='direct' onLoadMore={this.handleLoadMore} prepend={<div className='follow_requests-unlocked_explanation'><span><FormattedMessage id='compose_form.encryption_warning' defaultMessage='Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.' /> <a href='/terms' target='_blank'><FormattedMessage id='compose_form.direct_message_warning_learn_more' defaultMessage='Learn more' /></a></span></div>} - emptyMessage={<FormattedMessage id='empty_column.direct' defaultMessage="You don't have any direct messages yet. When you send or receive one, it will show up here." />} + emptyMessage={<FormattedMessage id='empty_column.direct' defaultMessage="You don't have any private mentions yet. When you send or receive one, it will show up here." />} /> <Helmet> diff --git a/app/javascript/mastodon/features/getting_started/index.jsx b/app/javascript/mastodon/features/getting_started/index.jsx index ee8a009eead0780a874dc98956f340f94c16b063..29659acc73f32649f8122f95c1fb7cf7523a7a76 100644 --- a/app/javascript/mastodon/features/getting_started/index.jsx +++ b/app/javascript/mastodon/features/getting_started/index.jsx @@ -23,7 +23,7 @@ const messages = defineMessages({ settings_subheading: { id: 'column_subheading.settings', defaultMessage: 'Settings' }, community_timeline: { id: 'navigation_bar.community_timeline', defaultMessage: 'Local timeline' }, explore: { id: 'navigation_bar.explore', defaultMessage: 'Explore' }, - direct: { id: 'navigation_bar.direct', defaultMessage: 'Direct messages' }, + direct: { id: 'navigation_bar.direct', defaultMessage: 'Private mentions' }, bookmarks: { id: 'navigation_bar.bookmarks', defaultMessage: 'Bookmarks' }, preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' }, follow_requests: { id: 'navigation_bar.follow_requests', defaultMessage: 'Follow requests' }, diff --git a/app/javascript/mastodon/features/status/components/action_bar.jsx b/app/javascript/mastodon/features/status/components/action_bar.jsx index 5cbe4984cfef9873fca38ff1ff7718eb461a4f97..0c74c4cc4dda6e3e9c123894298b2625e73221a7 100644 --- a/app/javascript/mastodon/features/status/components/action_bar.jsx +++ b/app/javascript/mastodon/features/status/components/action_bar.jsx @@ -13,7 +13,7 @@ const messages = defineMessages({ delete: { id: 'status.delete', defaultMessage: 'Delete' }, redraft: { id: 'status.redraft', defaultMessage: 'Delete & re-draft' }, edit: { id: 'status.edit', defaultMessage: 'Edit' }, - direct: { id: 'status.direct', defaultMessage: 'Direct message @{name}' }, + direct: { id: 'status.direct', defaultMessage: 'Privately mention @{name}' }, mention: { id: 'status.mention', defaultMessage: 'Mention @{name}' }, reply: { id: 'status.reply', defaultMessage: 'Reply' }, reblog: { id: 'status.reblog', defaultMessage: 'Boost' }, diff --git a/app/javascript/mastodon/features/status/components/detailed_status.jsx b/app/javascript/mastodon/features/status/components/detailed_status.jsx index 8a2194450c312a0ea4565d9027a9ee2e86f9a1a2..e4e57202685275dae27f263b3a4bcfa99dee47e1 100644 --- a/app/javascript/mastodon/features/status/components/detailed_status.jsx +++ b/app/javascript/mastodon/features/status/components/detailed_status.jsx @@ -6,7 +6,7 @@ import DisplayName from '../../../components/display_name'; import StatusContent from '../../../components/status_content'; import MediaGallery from '../../../components/media_gallery'; import { Link } from 'react-router-dom'; -import { injectIntl, defineMessages, FormattedDate } from 'react-intl'; +import { injectIntl, defineMessages, FormattedDate, FormattedMessage } from 'react-intl'; import Card from './card'; import ImmutablePureComponent from 'react-immutable-pure-component'; import Video from '../../video'; @@ -262,7 +262,13 @@ class DetailedStatus extends ImmutablePureComponent { return ( <div style={outerStyle}> - <div ref={this.setRef} className={classNames('detailed-status', `detailed-status-${status.get('visibility')}`, { compact })}> + <div ref={this.setRef} className={classNames('detailed-status', { compact })}> + {status.get('visibility') === 'direct' && ( + <div className='status__prepend'> + <div className='status__prepend-icon-wrapper'><Icon id='at' className='status__prepend-icon' fixedWidth /></div> + <FormattedMessage id='status.direct_indicator' defaultMessage='Private mention' /> + </div> + )} <a href={`/@${status.getIn(['account', 'acct'])}`} onClick={this.handleAccountClick} className='detailed-status__display-name'> <div className='detailed-status__display-avatar'><Avatar account={status.get('account')} size={46} /></div> <DisplayName account={status.get('account')} localDomain={this.props.domain} /> diff --git a/app/javascript/mastodon/features/status/index.jsx b/app/javascript/mastodon/features/status/index.jsx index 358ad14c46a06a55ddd7ef965e18fa88f364cb28..1d7cb685f2c7504cc7608c432b55973f6f81d354 100644 --- a/app/javascript/mastodon/features/status/index.jsx +++ b/app/javascript/mastodon/features/status/index.jsx @@ -630,7 +630,7 @@ class Status extends ImmutablePureComponent { {ancestors} <HotKeys handlers={handlers}> - <div className={classNames('focusable', 'detailed-status__wrapper')} tabIndex='0' aria-label={textForScreenReader(intl, status, false)}> + <div className={classNames('focusable', 'detailed-status__wrapper', `detailed-status__wrapper-${status.get('visibility')}`)} tabIndex='0' aria-label={textForScreenReader(intl, status, false)}> <DetailedStatus key={`details-${status.get('id')}`} status={status} diff --git a/app/javascript/mastodon/features/ui/components/navigation_panel.jsx b/app/javascript/mastodon/features/ui/components/navigation_panel.jsx index 90a3fcdf7f726cf00493e1ef62fe1f264ad62c98..ee1a83cc60ee69a15565f2d04cbac34533810fe8 100644 --- a/app/javascript/mastodon/features/ui/components/navigation_panel.jsx +++ b/app/javascript/mastodon/features/ui/components/navigation_panel.jsx @@ -18,7 +18,7 @@ const messages = defineMessages({ explore: { id: 'explore.title', defaultMessage: 'Explore' }, local: { id: 'tabs_bar.local_timeline', defaultMessage: 'Local' }, federated: { id: 'tabs_bar.federated_timeline', defaultMessage: 'Federated' }, - direct: { id: 'navigation_bar.direct', defaultMessage: 'Direct messages' }, + direct: { id: 'navigation_bar.direct', defaultMessage: 'Private mentions' }, favourites: { id: 'navigation_bar.favourites', defaultMessage: 'Favourites' }, bookmarks: { id: 'navigation_bar.bookmarks', defaultMessage: 'Bookmarks' }, lists: { id: 'navigation_bar.lists', defaultMessage: 'Lists' }, diff --git a/app/javascript/mastodon/locales/af.json b/app/javascript/mastodon/locales/af.json index c04cae948d1454a64bdd45721b8898ca498cd6a7..59dbdfa636d2759e476c29eeb27bb853cf434e80 100644 --- a/app/javascript/mastodon/locales/af.json +++ b/app/javascript/mastodon/locales/af.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/an.json b/app/javascript/mastodon/locales/an.json index 9f66c8d13162344746e86f4452be09bec1f68d13..e1414a8f5c91894c1075c8922dc45eca70b36e44 100644 --- a/app/javascript/mastodon/locales/an.json +++ b/app/javascript/mastodon/locales/an.json @@ -558,6 +558,7 @@ "status.delete": "Borrar", "status.detailed_status": "Vista de conversación detallada", "status.direct": "Mensache directo a @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Editar", "status.edited": "Editau {date}", "status.edited_x_times": "Editau {count, plural, one {{count} vez} other {{count} veces}}", diff --git a/app/javascript/mastodon/locales/ar.json b/app/javascript/mastodon/locales/ar.json index d7d3baf4e714f5c73ee7150a8e0aed7635557794..4aec5838d3e0f752cd03459a46d7c3d36770fa6b 100644 --- a/app/javascript/mastodon/locales/ar.json +++ b/app/javascript/mastodon/locales/ar.json @@ -558,6 +558,7 @@ "status.delete": "اØØ°Ù", "status.detailed_status": "تÙاصيل المØادثة", "status.direct": "رسالة خاصة إلى @{name}", + "status.direct_indicator": "Private mention", "status.edit": "تعديل", "status.edited": "عÙدّل ÙÙŠ {date}", "status.edited_x_times": "عÙدّل {count, plural, zero {} one {مرةً واØدة} two {مرّتان} few {{count} مرات} many {{count} مرة} other {{count} مرة}}", diff --git a/app/javascript/mastodon/locales/ast.json b/app/javascript/mastodon/locales/ast.json index 2881911a694df03682430430c0a728d87e6d1113..9e356881ae8720b21d54bfc067f2abd511b6b048 100644 --- a/app/javascript/mastodon/locales/ast.json +++ b/app/javascript/mastodon/locales/ast.json @@ -558,6 +558,7 @@ "status.delete": "Desaniciar", "status.detailed_status": "Detailed conversation view", "status.direct": "Unviar un mensaxe direutu a @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Editóse'l {date}", "status.edited_x_times": "Editóse {count, plural, one {{count} vegada} other {{count} vegaes}}", diff --git a/app/javascript/mastodon/locales/be.json b/app/javascript/mastodon/locales/be.json index ad049dd25fd5a83ac443f86cf80bcc7db32b4371..ce51ee5076367f2d7f135776ed8bfe4c7f5451ad 100644 --- a/app/javascript/mastodon/locales/be.json +++ b/app/javascript/mastodon/locales/be.json @@ -558,6 +558,7 @@ "status.delete": "Выдаліць", "status.detailed_status": "ДÑтальны аглÑд размовы", "status.direct": "ÐÑабіÑтае паведамленне @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Ð Ñдагаваць", "status.edited": "ÐдрÑдагавана {date}", "status.edited_x_times": "Ð Ñдагавана {count, plural, one {{count} раз} few {{count} разы} many {{count} разоў} other {{count} разу}}", diff --git a/app/javascript/mastodon/locales/bg.json b/app/javascript/mastodon/locales/bg.json index 248fd1ccbe943166afff14d666f438f6479f15e2..6b6bd1011a9f2b5ca7a6cd3dba117a388f5c606a 100644 --- a/app/javascript/mastodon/locales/bg.json +++ b/app/javascript/mastodon/locales/bg.json @@ -558,6 +558,7 @@ "status.delete": "Изтриване", "status.detailed_status": "Подробен изглед на разговора", "status.direct": "Директно Ñъобщение до @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Редактиране", "status.edited": "Редактирано на {date}", "status.edited_x_times": "Редактирано {count, plural,one {{count} път} other {{count} пъти}}", diff --git a/app/javascript/mastodon/locales/bn.json b/app/javascript/mastodon/locales/bn.json index 7da6f78dc666048e0d675236de3ea94ba545367e..8dbac2d58ffed7255eb1809f0508d3af89dcb90e 100644 --- a/app/javascript/mastodon/locales/bn.json +++ b/app/javascript/mastodon/locales/bn.json @@ -558,6 +558,7 @@ "status.delete": "মà§à¦›à§‡ ফেলতে", "status.detailed_status": "বিসà§à¦¤à¦¾à¦°à¦¿à¦¤ কথোপকথনের হিসেবে দেখতে", "status.direct": "@{name} কে সরাসরি লেখা পাঠাতে", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/br.json b/app/javascript/mastodon/locales/br.json index 5cc331af457cf268f7e91d8df7462f0d3ea577a1..0884047acc4576bf1bea07ff231640ab043cbca2 100644 --- a/app/javascript/mastodon/locales/br.json +++ b/app/javascript/mastodon/locales/br.json @@ -558,6 +558,7 @@ "status.delete": "Dilemel", "status.detailed_status": "Gwel kaozeadenn munudek", "status.direct": "Kas ur c'hannad eeun da @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Kemmañ", "status.edited": "Aozet {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/bs.json b/app/javascript/mastodon/locales/bs.json index d67f73c003c26b968f7f66c8cd4c2889a352a88b..e4dda7c773da845f4a799b3cc7eaf0609db8aa31 100644 --- a/app/javascript/mastodon/locales/bs.json +++ b/app/javascript/mastodon/locales/bs.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/ca.json b/app/javascript/mastodon/locales/ca.json index ebfafcbd323148a5e934b8b7f13f5438f8b3edfb..a65a41111105c30cfff4e3e523d11d5dd66b5979 100644 --- a/app/javascript/mastodon/locales/ca.json +++ b/app/javascript/mastodon/locales/ca.json @@ -558,6 +558,7 @@ "status.delete": "Elimina", "status.detailed_status": "Vista detallada de la conversa", "status.direct": "Missatge directe a @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edita", "status.edited": "Editat {date}", "status.edited_x_times": "Editat {count, plural, one {{count} vegada} other {{count} vegades}}", diff --git a/app/javascript/mastodon/locales/ckb.json b/app/javascript/mastodon/locales/ckb.json index 7623b5b993730ac665cd9ff6d501645e70709410..095e73688dede079967a0c69c319092ff0ebd359 100644 --- a/app/javascript/mastodon/locales/ckb.json +++ b/app/javascript/mastodon/locales/ckb.json @@ -558,6 +558,7 @@ "status.delete": "سڕینەوە", "status.detailed_status": "ڕوانگەی Ú¯Ùتوگۆ بە وردەکاری", "status.direct": "پەیامی ڕاستەوخۆ @{name}", + "status.direct_indicator": "Private mention", "status.edit": "دەستکاری", "status.edited": "بەشداری {date}", "status.edited_x_times": "دەستکاریکراوە {count, plural, one {{count} کات} other {{count} کات}}", diff --git a/app/javascript/mastodon/locales/co.json b/app/javascript/mastodon/locales/co.json index 2ede2311ef0c297995c21a8636ee8fd162c096ed..dfa8bcd33d208f27c7b66c4915bf08a6ac83ed8b 100644 --- a/app/javascript/mastodon/locales/co.json +++ b/app/javascript/mastodon/locales/co.json @@ -558,6 +558,7 @@ "status.delete": "Toglie", "status.detailed_status": "Vista in ditagliu di a cunversazione", "status.direct": "Mandà un missaghju @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/cs.json b/app/javascript/mastodon/locales/cs.json index 97bc50c869bf54621ef658ac0bddd194777f1d83..39231265022b494cd97e7076b3677ac9a6f17fc9 100644 --- a/app/javascript/mastodon/locales/cs.json +++ b/app/javascript/mastodon/locales/cs.json @@ -558,6 +558,7 @@ "status.delete": "Smazat", "status.detailed_status": "Podrobné zobrazenà konverzace", "status.direct": "Poslat @{name} pÅ™Ãmou zprávu", + "status.direct_indicator": "Private mention", "status.edit": "Upravit", "status.edited": "Upraveno {date}", "status.edited_x_times": "Upraveno {count, plural, one {{count}krát} few {{count}krát} many {{count}krát} other {{count}krát}}", diff --git a/app/javascript/mastodon/locales/csb.json b/app/javascript/mastodon/locales/csb.json index 03c5af685b634d9905c00e28b6684e81b34e8fb1..b5078462fccb4db52abc246ee315862cea10af6e 100644 --- a/app/javascript/mastodon/locales/csb.json +++ b/app/javascript/mastodon/locales/csb.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/cy.json b/app/javascript/mastodon/locales/cy.json index 21c0cd2bef1587564776f9b6b65ad49f2116eb6c..ace8185d9a4271b707119c1b4271ad921bb8a222 100644 --- a/app/javascript/mastodon/locales/cy.json +++ b/app/javascript/mastodon/locales/cy.json @@ -558,6 +558,7 @@ "status.delete": "Dileu", "status.detailed_status": "Golwg manwl o'r sgwrs", "status.direct": "Neges breifat @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Golygu", "status.edited": "Golygwyd {date}", "status.edited_x_times": "Golygwyd {count, plural, one {waith} two {waith} other {{count} gwaith}}", diff --git a/app/javascript/mastodon/locales/da.json b/app/javascript/mastodon/locales/da.json index 6caa763f0471d08c41cf0ab300bad5c4f8a14e03..97fb90a8fb6f51b18bcef037661428ed6e8a56e8 100644 --- a/app/javascript/mastodon/locales/da.json +++ b/app/javascript/mastodon/locales/da.json @@ -558,6 +558,7 @@ "status.delete": "Slet", "status.detailed_status": "Detaljeret samtalevisning", "status.direct": "Direkte besked til @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Redigér", "status.edited": "Redigeret {date}", "status.edited_x_times": "Redigeret {count, plural, one {{count} gang} other {{count} gange}}", diff --git a/app/javascript/mastodon/locales/de.json b/app/javascript/mastodon/locales/de.json index dfc478ae5c3033bccd0a436af56d082adb7f08f1..24cec0228b8de9f20401ab26567620dc99e461f6 100644 --- a/app/javascript/mastodon/locales/de.json +++ b/app/javascript/mastodon/locales/de.json @@ -558,6 +558,7 @@ "status.delete": "Beitrag löschen", "status.detailed_status": "Detaillierte Ansicht der Unterhaltung", "status.direct": "Direktnachricht an @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Beitrag bearbeiten", "status.edited": "Bearbeitet {date}", "status.edited_x_times": "{count, plural, one {{count} mal} other {{count} mal}} bearbeitet", diff --git a/app/javascript/mastodon/locales/defaultMessages.json b/app/javascript/mastodon/locales/defaultMessages.json index 536566945457343846c2d48f8a3ce30f68e1a9c3..d8f40aa510976008e4fa9687b4733cad2aef9d00 100644 --- a/app/javascript/mastodon/locales/defaultMessages.json +++ b/app/javascript/mastodon/locales/defaultMessages.json @@ -560,7 +560,7 @@ "id": "status.edit" }, { - "defaultMessage": "Direct message @{name}", + "defaultMessage": "Privately mention @{name}", "id": "status.direct" }, { @@ -761,6 +761,10 @@ "defaultMessage": "{name} boosted", "id": "status.reblogged_by" }, + { + "defaultMessage": "Private mention", + "id": "status.direct_indicator" + }, { "defaultMessage": "Replied to {name}", "id": "status.replied_to" @@ -1109,7 +1113,7 @@ "id": "account.mention" }, { - "defaultMessage": "Direct message @{name}", + "defaultMessage": "Privately mention @{name}", "id": "account.direct" }, { @@ -1627,7 +1631,7 @@ "id": "privacy.private.long" }, { - "defaultMessage": "Mentioned people only", + "defaultMessage": "Private mention", "id": "privacy.direct.short" }, { @@ -1925,7 +1929,7 @@ { "descriptors": [ { - "defaultMessage": "Direct messages", + "defaultMessage": "Private mentions", "id": "column.direct" }, { @@ -1937,7 +1941,7 @@ "id": "compose_form.direct_message_warning_learn_more" }, { - "defaultMessage": "You don't have any direct messages yet. When you send or receive one, it will show up here.", + "defaultMessage": "You don't have any private mentions yet. When you send or receive one, it will show up here.", "id": "empty_column.direct" } ], @@ -2432,7 +2436,7 @@ "id": "navigation_bar.explore" }, { - "defaultMessage": "Direct messages", + "defaultMessage": "Private mentions", "id": "navigation_bar.direct" }, { @@ -3550,7 +3554,7 @@ "id": "status.edit" }, { - "defaultMessage": "Direct message @{name}", + "defaultMessage": "Privately mention @{name}", "id": "status.direct" }, { @@ -4199,7 +4203,7 @@ "id": "tabs_bar.federated_timeline" }, { - "defaultMessage": "Direct messages", + "defaultMessage": "Private mentions", "id": "navigation_bar.direct" }, { diff --git a/app/javascript/mastodon/locales/el.json b/app/javascript/mastodon/locales/el.json index 0813a98577e1d8eb2727613054dbc35c2101483b..e972494ad682a53a78bb4bcc09246dd8f968b1e7 100644 --- a/app/javascript/mastodon/locales/el.json +++ b/app/javascript/mastodon/locales/el.json @@ -558,6 +558,7 @@ "status.delete": "ΔιαγÏαφή", "status.detailed_status": "Î Ïοβολή λεπτομεÏειών συζήτησης", "status.direct": "Î Ïοσωπικό μήνυμα Ï€Ïος @{name}", + "status.direct_indicator": "Private mention", "status.edit": "ΕπεξεÏγασία", "status.edited": "ΕπεξεÏγάστηκε στις {date}", "status.edited_x_times": "ΕπεξεÏγάστηκε {count, plural, one {{count} φοÏά} other {{count} φοÏÎÏ‚}}", diff --git a/app/javascript/mastodon/locales/en-GB.json b/app/javascript/mastodon/locales/en-GB.json index 974c6dd84af65c866a89ee015865557e2b8473ff..359cc0388161fdbb25d28d7789c61005704fd2cf 100644 --- a/app/javascript/mastodon/locales/en-GB.json +++ b/app/javascript/mastodon/locales/en-GB.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json index f4d0519403298a1686dd044bc012b812a8e052db..3bdba3b1d50021f3ee41f3d9906a809e24f00448 100644 --- a/app/javascript/mastodon/locales/en.json +++ b/app/javascript/mastodon/locales/en.json @@ -20,7 +20,7 @@ "account.blocked": "Blocked", "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Withdraw follow request", - "account.direct": "Direct message @{name}", + "account.direct": "Privately mention @{name}", "account.disable_notifications": "Stop notifying me when @{name} posts", "account.domain_blocked": "Domain blocked", "account.edit_profile": "Edit profile", @@ -102,7 +102,7 @@ "column.blocks": "Blocked users", "column.bookmarks": "Bookmarks", "column.community": "Local timeline", - "column.direct": "Direct messages", + "column.direct": "Private mentions", "column.directory": "Browse profiles", "column.domain_blocks": "Blocked domains", "column.favourites": "Favourites", @@ -216,7 +216,7 @@ "empty_column.blocks": "You haven't blocked any users yet.", "empty_column.bookmarked_statuses": "You don't have any bookmarked posts yet. When you bookmark one, it will show up here.", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", - "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.", + "empty_column.direct": "You don't have any private mentions yet. When you send or receive one, it will show up here.", "empty_column.domain_blocks": "There are no blocked domains yet.", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.favourited_statuses": "You don't have any favourite posts yet. When you favourite one, it will show up here.", @@ -314,7 +314,7 @@ "keyboard_shortcuts.column": "Focus column", "keyboard_shortcuts.compose": "Focus compose textarea", "keyboard_shortcuts.description": "Description", - "keyboard_shortcuts.direct": "to open direct messages column", + "keyboard_shortcuts.direct": "to open private mentions column", "keyboard_shortcuts.down": "Move down in the list", "keyboard_shortcuts.enter": "Open post", "keyboard_shortcuts.favourite": "Favourite post", @@ -376,7 +376,7 @@ "navigation_bar.bookmarks": "Bookmarks", "navigation_bar.community_timeline": "Local timeline", "navigation_bar.compose": "Compose new post", - "navigation_bar.direct": "Direct messages", + "navigation_bar.direct": "Private mentions", "navigation_bar.discover": "Discover", "navigation_bar.domain_blocks": "Blocked domains", "navigation_bar.edit_profile": "Edit profile", @@ -557,7 +557,8 @@ "status.copy": "Copy link to post", "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", - "status.direct": "Direct message @{name}", + "status.direct": "Privately mention @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/eo.json b/app/javascript/mastodon/locales/eo.json index 93b668d3589a5ef2ccd475a8918a2f8692a3a8e9..29ecea294e42b5da3732d15e8db66616e4d9141f 100644 --- a/app/javascript/mastodon/locales/eo.json +++ b/app/javascript/mastodon/locales/eo.json @@ -558,6 +558,7 @@ "status.delete": "Forigi", "status.detailed_status": "Detala konversacia vido", "status.direct": "Rekte mesaÄi @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Redakti", "status.edited": "Redaktita {date}", "status.edited_x_times": "Redactita {count, plural, one {{count} fojon} other {{count} fojojn}}", diff --git a/app/javascript/mastodon/locales/es-AR.json b/app/javascript/mastodon/locales/es-AR.json index 93238efbc054c6848f47eae37fd8b4e0fa797e6e..f9d6b21d9b1d098374b14029a18b0bd19d5f402b 100644 --- a/app/javascript/mastodon/locales/es-AR.json +++ b/app/javascript/mastodon/locales/es-AR.json @@ -558,6 +558,7 @@ "status.delete": "Eliminar", "status.detailed_status": "Vista de conversación detallada", "status.direct": "Mensaje directo para @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Editar", "status.edited": "Editado {date}", "status.edited_x_times": "Editado {count, plural, one {{count} vez} other {{count} veces}}", diff --git a/app/javascript/mastodon/locales/es-MX.json b/app/javascript/mastodon/locales/es-MX.json index 56e891611b33cf6ce46ebda9fa40e84895b02a76..d10dfa9b392bcdde297c369f8da3bdc0873971ae 100644 --- a/app/javascript/mastodon/locales/es-MX.json +++ b/app/javascript/mastodon/locales/es-MX.json @@ -558,6 +558,7 @@ "status.delete": "Borrar", "status.detailed_status": "Vista de conversación detallada", "status.direct": "Enviar mensaje a @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Editar", "status.edited": "Editado {date}", "status.edited_x_times": "Editado {count, plural, one {{count} time} other {{count} veces}}", diff --git a/app/javascript/mastodon/locales/es.json b/app/javascript/mastodon/locales/es.json index 61e831526cf9bc5d2ec19bc493ea6ce73cb14d87..ffdecda887418b313987009a83ca8abcb26892bc 100644 --- a/app/javascript/mastodon/locales/es.json +++ b/app/javascript/mastodon/locales/es.json @@ -558,6 +558,7 @@ "status.delete": "Borrar", "status.detailed_status": "Vista de conversación detallada", "status.direct": "Mensaje directo a @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Editar", "status.edited": "Editado {date}", "status.edited_x_times": "Editado {count, plural, one {{count} vez} other {{count} veces}}", diff --git a/app/javascript/mastodon/locales/et.json b/app/javascript/mastodon/locales/et.json index 845ac3a086776b4803649487f9d52c6b82c86a8d..e8874a5568717707ebcfd0da1b8c1cbd313d42ec 100644 --- a/app/javascript/mastodon/locales/et.json +++ b/app/javascript/mastodon/locales/et.json @@ -558,6 +558,7 @@ "status.delete": "Kustuta", "status.detailed_status": "Detailne vestluskuva", "status.direct": "Saada otsesõnum @{name}'ile", + "status.direct_indicator": "Private mention", "status.edit": "Muuda", "status.edited": "{date} muudetud", "status.edited_x_times": "Muudetud {count, plural, one{{count} kord} other {{count} korda}}", diff --git a/app/javascript/mastodon/locales/eu.json b/app/javascript/mastodon/locales/eu.json index e5f2116bc7b17d0b6afc86ad1a0d32e8818d0935..bf3f3e0e317c7ad7c4c52a3cc3f42c8d9e2fea35 100644 --- a/app/javascript/mastodon/locales/eu.json +++ b/app/javascript/mastodon/locales/eu.json @@ -558,6 +558,7 @@ "status.delete": "Ezabatu", "status.detailed_status": "Elkarrizketaren ikuspegi xehetsua", "status.direct": "Mezu zuzena @{name}(r)i", + "status.direct_indicator": "Private mention", "status.edit": "Editatu", "status.edited": "Editatua {date}", "status.edited_x_times": "{count, plural, one {behin} other {{count} aldiz}} editatua", diff --git a/app/javascript/mastodon/locales/fa.json b/app/javascript/mastodon/locales/fa.json index acb7525b2e302ab97fbf45fa1c6182ed56711b25..a3eca31034b87de5712e18023b1bebc435f63ae4 100644 --- a/app/javascript/mastodon/locales/fa.json +++ b/app/javascript/mastodon/locales/fa.json @@ -558,6 +558,7 @@ "status.delete": "ØØ°Ù", "status.detailed_status": "نمایش کامل Ú¯Ùتگو", "status.direct": "پیام مستقیم به ‎@{name}", + "status.direct_indicator": "Private mention", "status.edit": "ویرایش", "status.edited": "ویرایش شده در {date}", "status.edited_x_times": "{count, plural, one {{count} مرتبه} other {{count} مرتبه}} ویرایش شد", diff --git a/app/javascript/mastodon/locales/fi.json b/app/javascript/mastodon/locales/fi.json index f8c61c1e5b90af24b15604e1cdc72f34af33b9ff..3d95065138a90a4019157307fbb3bd434595075c 100644 --- a/app/javascript/mastodon/locales/fi.json +++ b/app/javascript/mastodon/locales/fi.json @@ -558,6 +558,7 @@ "status.delete": "Poista", "status.detailed_status": "Yksityiskohtainen keskustelunäkymä", "status.direct": "Yksityisviesti käyttäjälle @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Muokkaa", "status.edited": "Muokattu {date}", "status.edited_x_times": "Muokattu {count, plural, one {{count} kerran} other {{count} kertaa}}", diff --git a/app/javascript/mastodon/locales/fo.json b/app/javascript/mastodon/locales/fo.json index db2247c4b196487dc868667b878950266b59e260..778b0e028a2b808c2fe696f2c965403a30aec2c0 100644 --- a/app/javascript/mastodon/locales/fo.json +++ b/app/javascript/mastodon/locales/fo.json @@ -558,6 +558,7 @@ "status.delete": "Strika", "status.detailed_status": "Útgreinað samrøðusýni", "status.direct": "Beinleiðis boð @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Rætta", "status.edited": "Rættað {date}", "status.edited_x_times": "Rættað {count, plural, one {{count} ferð} other {{count} ferð}}", diff --git a/app/javascript/mastodon/locales/fr-QC.json b/app/javascript/mastodon/locales/fr-QC.json index fe7055d57aed3e564a38fc487b4b56157992d822..e14b816bbc9e622a6c8664a4387085f535fbe9e5 100644 --- a/app/javascript/mastodon/locales/fr-QC.json +++ b/app/javascript/mastodon/locales/fr-QC.json @@ -558,6 +558,7 @@ "status.delete": "Supprimer", "status.detailed_status": "Vue détaillée de la conversation", "status.direct": "Envoyer un message direct à @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Modifier", "status.edited": "Modifiée le {date}", "status.edited_x_times": "Modifiée {count, plural, one {{count} fois} other {{count} fois}}", diff --git a/app/javascript/mastodon/locales/fr.json b/app/javascript/mastodon/locales/fr.json index 2c38ad496087012cb8e28073e0d0257ca66056c7..8f2a886fb8364e6ba27eb1b24e6b2c04d644a094 100644 --- a/app/javascript/mastodon/locales/fr.json +++ b/app/javascript/mastodon/locales/fr.json @@ -558,6 +558,7 @@ "status.delete": "Supprimer", "status.detailed_status": "Vue détaillée de la conversation", "status.direct": "Envoyer un message direct à @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Éditer", "status.edited": "Édité le {date}", "status.edited_x_times": "Edité {count, plural, one {{count} fois} other {{count} fois}}", diff --git a/app/javascript/mastodon/locales/fy.json b/app/javascript/mastodon/locales/fy.json index 4ac165471e8ea7b4df451774de6d9a51bf80eff6..f806494b706426d916e23cdae7d1602ce6bd6858 100644 --- a/app/javascript/mastodon/locales/fy.json +++ b/app/javascript/mastodon/locales/fy.json @@ -558,6 +558,7 @@ "status.delete": "Fuortsmite", "status.detailed_status": "Detaillearre petearoersjoch", "status.direct": "@{name} in direkt berjocht stjoere", + "status.direct_indicator": "Private mention", "status.edit": "Bewurkje", "status.edited": "Bewurke op {date}", "status.edited_x_times": "{count, plural, one {{count} kear} other {{count} kearen}} bewurke", diff --git a/app/javascript/mastodon/locales/ga.json b/app/javascript/mastodon/locales/ga.json index 12769ba13b0b7d4712bef2494ce087fd7d67f27e..8fc21a5a2a19f7a8bd343f9af1d10502684187c3 100644 --- a/app/javascript/mastodon/locales/ga.json +++ b/app/javascript/mastodon/locales/ga.json @@ -558,6 +558,7 @@ "status.delete": "Scrios", "status.detailed_status": "Detailed conversation view", "status.direct": "Seol teachtaireacht dhÃreach chuig @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Cuir in eagar", "status.edited": "Curtha in eagar in {date}", "status.edited_x_times": "Curtha in eagar {count, plural, one {{count} uair amháin} two {{count} uair} few {{count} uair} many {{count} uair} other {{count} uair}}", diff --git a/app/javascript/mastodon/locales/gd.json b/app/javascript/mastodon/locales/gd.json index f5eb5c140623cffeab207caa4c5b3a1e444cbe46..e4ae5795235eeb9f0b38c6243c3befe961c30309 100644 --- a/app/javascript/mastodon/locales/gd.json +++ b/app/javascript/mastodon/locales/gd.json @@ -558,6 +558,7 @@ "status.delete": "Sguab à s", "status.detailed_status": "Mion-shealladh a’ chòmhraidh", "status.direct": "Cuir teachdaireachd dhìreach gu @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Deasaich", "status.edited": "Air a dheasachadh {date}", "status.edited_x_times": "Chaidh a dheasachadh {count, plural, one {{counter} turas} two {{counter} thuras} few {{counter} tursan} other {{counter} turas}}", diff --git a/app/javascript/mastodon/locales/gl.json b/app/javascript/mastodon/locales/gl.json index dc5bd31d62a99aa074013db1a072347484168ad1..b1ce477a6f86a609bc1baeeb519b38bc5f7ea104 100644 --- a/app/javascript/mastodon/locales/gl.json +++ b/app/javascript/mastodon/locales/gl.json @@ -558,6 +558,7 @@ "status.delete": "Eliminar", "status.detailed_status": "Vista detallada da conversa", "status.direct": "Mensaxe directa a @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Editar", "status.edited": "Editado {date}", "status.edited_x_times": "Editado {count, plural, one {{count} vez} other {{count} veces}}", diff --git a/app/javascript/mastodon/locales/he.json b/app/javascript/mastodon/locales/he.json index b8aced8fb9e1f30bd842b0297d74c437d3ada6fe..a827e4378e6dd102fea2cdd283836212768cd5af 100644 --- a/app/javascript/mastodon/locales/he.json +++ b/app/javascript/mastodon/locales/he.json @@ -558,6 +558,7 @@ "status.delete": "מחיקה", "status.detailed_status": "תצוגת שיחה מפורטת", "status.direct": "הודעה ישירה ל@{name}", + "status.direct_indicator": "Private mention", "status.edit": "עריכה", "status.edited": "× ×¢×¨×š ב{date}", "status.edited_x_times": "× ×¢×¨×š {count, plural, one {×¤×¢× {count}} other {{count} פעמי×}}", diff --git a/app/javascript/mastodon/locales/hi.json b/app/javascript/mastodon/locales/hi.json index 8b0569860b80210b3f6ad0521a0a84d5ea89ea0d..8e311c9453e554627625e0d23b6c9cda646781fb 100644 --- a/app/javascript/mastodon/locales/hi.json +++ b/app/javascript/mastodon/locales/hi.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/hr.json b/app/javascript/mastodon/locales/hr.json index 2ee74d4606fc61bd0f6aabcc568be5d5bf516d7a..196d43e60cd090850b61cf971d992261c8d72708 100644 --- a/app/javascript/mastodon/locales/hr.json +++ b/app/javascript/mastodon/locales/hr.json @@ -558,6 +558,7 @@ "status.delete": "ObriÅ¡i", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Uredi", "status.edited": "UreÄ‘eno {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/hu.json b/app/javascript/mastodon/locales/hu.json index eaffa89e44fa39a1c9f9966abc7950b28d6985ec..c69b58e43cb4477b7b7be10609f83c05c15a29a4 100644 --- a/app/javascript/mastodon/locales/hu.json +++ b/app/javascript/mastodon/locales/hu.json @@ -558,6 +558,7 @@ "status.delete": "Törlés", "status.detailed_status": "Részletes beszélgetési nézet", "status.direct": "Közvetlen üzenet @{name} számára", + "status.direct_indicator": "Private mention", "status.edit": "Szerkesztés", "status.edited": "Szerkesztve: {date}", "status.edited_x_times": "{count, plural, one {{count} alkalommal} other {{count} alkalommal}} szerkesztve", diff --git a/app/javascript/mastodon/locales/hy.json b/app/javascript/mastodon/locales/hy.json index 87ecee6469fb0a6f150333507db45467f3d3f091..35c94f8292c4e0f162ff0fccd14416f0c2ced829 100644 --- a/app/javascript/mastodon/locales/hy.json +++ b/app/javascript/mastodon/locales/hy.json @@ -558,6 +558,7 @@ "status.delete": "Õ‹Õ¶Õ»Õ¥Õ¬", "status.detailed_status": "Õ‡Õ²Õ©Õ¡ÕµÕ« Õ¨Õ¶Õ¤Õ¬Õ¡ÕµÕ¶Õ¸Ö‚Õ¡Õ® Õ¤Õ«Õ¿Õ¸Ö‚Õ´", "status.direct": "Õ†Õ¡Õ´Õ¡Õ¯ Õ£Ö€Õ¥Õ¬ {name} -Õ«Õ¶", + "status.direct_indicator": "Private mention", "status.edit": "Ô½Õ´Õ¢Õ¡Õ£Ö€Õ¥Õ¬", "status.edited": "Ô½Õ´Õ¢Õ¡Õ£Ö€Õ¸Ö‚Õ¥Õ¬ Õ§Õ {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/id.json b/app/javascript/mastodon/locales/id.json index 1f93219c8f90aec35e4046679c908574c5581710..038013448dffa71fc5ab38b689f3b617eb4dc76a 100644 --- a/app/javascript/mastodon/locales/id.json +++ b/app/javascript/mastodon/locales/id.json @@ -558,6 +558,7 @@ "status.delete": "Hapus", "status.detailed_status": "Tampilan detail percakapan", "status.direct": "Pesan langsung @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Diedit {date}", "status.edited_x_times": "Diedit {count, plural, other {{count} kali}}", diff --git a/app/javascript/mastodon/locales/ig.json b/app/javascript/mastodon/locales/ig.json index 3d2cd77726be75a6ae762da91325dfdf90e1ee6b..830f0a19d69189e0ddd1d3620b7cefdabe1730af 100644 --- a/app/javascript/mastodon/locales/ig.json +++ b/app/javascript/mastodon/locales/ig.json @@ -558,6 +558,7 @@ "status.delete": "Hichapụ", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/io.json b/app/javascript/mastodon/locales/io.json index b6f61d23bc5b6ab0fe67073535afad4fbdad8d37..00ae025f86adf178942905318832ecae0afc679c 100644 --- a/app/javascript/mastodon/locales/io.json +++ b/app/javascript/mastodon/locales/io.json @@ -558,6 +558,7 @@ "status.delete": "Efacar", "status.detailed_status": "Detala konversvido", "status.direct": "Direta mesajigez @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Modifikez", "status.edited": "Modifikesis ye {date}", "status.edited_x_times": "Modifikesis {count, plural, one {{count} foyo} other {{count} foyi}}", diff --git a/app/javascript/mastodon/locales/is.json b/app/javascript/mastodon/locales/is.json index 3611b26ed45a1d39b0d9855b6121a3c1a5a797c8..50e20aded510acf41d6a407b277df2d2f2cbd3e1 100644 --- a/app/javascript/mastodon/locales/is.json +++ b/app/javascript/mastodon/locales/is.json @@ -558,6 +558,7 @@ "status.delete": "Eyða", "status.detailed_status": "Nákvæm spjallþráðasýn", "status.direct": "Bein skilaboð @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Breyta", "status.edited": "Breytt {date}", "status.edited_x_times": "Breytt {count, plural, one {{count} sinni} other {{count} sinnum}}", diff --git a/app/javascript/mastodon/locales/it.json b/app/javascript/mastodon/locales/it.json index ce8f45fabc37275ef23dae9720424037847ae13f..108cd73c85a7e8637a59e36714c1d3f5e34d6285 100644 --- a/app/javascript/mastodon/locales/it.json +++ b/app/javascript/mastodon/locales/it.json @@ -558,6 +558,7 @@ "status.delete": "Elimina", "status.detailed_status": "Vista conversazione dettagliata", "status.direct": "Messaggio diretto a @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Modifica", "status.edited": "Modificato il {date}", "status.edited_x_times": "Modificato {count, plural, one {{count} volta} other {{count} volte}}", diff --git a/app/javascript/mastodon/locales/ja.json b/app/javascript/mastodon/locales/ja.json index 92e9da6eeb0e3ffc7a269cbd1d0628632857e465..64f073fd3ba56914abad1a7d2f52da36c7f03e2b 100644 --- a/app/javascript/mastodon/locales/ja.json +++ b/app/javascript/mastodon/locales/ja.json @@ -558,6 +558,7 @@ "status.delete": "削除", "status.detailed_status": "詳細ãªä¼šè©±ãƒ“ュー", "status.direct": "@{name}ã•ã‚“ã«ãƒ€ã‚¤ãƒ¬ã‚¯ãƒˆãƒ¡ãƒƒã‚»ãƒ¼ã‚¸", + "status.direct_indicator": "Private mention", "status.edit": "編集", "status.edited": "{date}ã«ç·¨é›†", "status.edited_x_times": "{count}回編集", diff --git a/app/javascript/mastodon/locales/ka.json b/app/javascript/mastodon/locales/ka.json index 9ebdfc989fc770c9e94b9c71e457f2e9bfc22ebe..b6829f5dee011577fbc0974ddad12ca28838af09 100644 --- a/app/javascript/mastodon/locales/ka.json +++ b/app/javascript/mastodon/locales/ka.json @@ -558,6 +558,7 @@ "status.delete": "წáƒáƒ¨áƒšáƒ", "status.detailed_status": "Detailed conversation view", "status.direct": "პირდáƒáƒžáƒ˜áƒ ი წერილი @{name}-ს", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/kab.json b/app/javascript/mastodon/locales/kab.json index cf02895c59692b67a3a41c19edec5530a17b45bf..439da7ce9269e8041f01948d4229082fc12ca34e 100644 --- a/app/javascript/mastodon/locales/kab.json +++ b/app/javascript/mastodon/locales/kab.json @@ -558,6 +558,7 @@ "status.delete": "Kkes", "status.detailed_status": "Detailed conversation view", "status.direct": "Izen usrid i @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Ẓreg", "status.edited": "Tettwaẓreg deg {date}", "status.edited_x_times": "Tettwaẓreg {count, plural, one {{count} n tikkelt} other {{count} n tikkal}}", diff --git a/app/javascript/mastodon/locales/kk.json b/app/javascript/mastodon/locales/kk.json index 6a9195c4baf5e5f39d7b905dd48550ab177913d8..f360fa20938becb6067d84f3c5e47349d8604fef 100644 --- a/app/javascript/mastodon/locales/kk.json +++ b/app/javascript/mastodon/locales/kk.json @@ -558,6 +558,7 @@ "status.delete": "Өшіру", "status.detailed_status": "Толық Ð¿Ñ–ÐºÑ–Ñ€Ñ‚Ð°Ð»Ð°Ñ ÐºÓ©Ñ€Ñ–Ð½Ñ–ÑÑ–", "status.direct": "Хат жіберу @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/kn.json b/app/javascript/mastodon/locales/kn.json index f81a47fa91d6c1c3c48b7fc3d90b6f6f4f3d9592..b89b4a31df8001f8e5cada545301a5123f79689b 100644 --- a/app/javascript/mastodon/locales/kn.json +++ b/app/javascript/mastodon/locales/kn.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/ko.json b/app/javascript/mastodon/locales/ko.json index f26f0b16ac9f86b1a9dca385d5151bed3e02fd4e..edb96f11691dbc02e79fc41dfbe98086cf4d0a38 100644 --- a/app/javascript/mastodon/locales/ko.json +++ b/app/javascript/mastodon/locales/ko.json @@ -558,6 +558,7 @@ "status.delete": "ì‚ì œ", "status.detailed_status": "대화 ìžì„¸ížˆ 보기", "status.direct": "@{name}ì—게 다ì´ë ‰íŠ¸ 메시지", + "status.direct_indicator": "Private mention", "status.edit": "ìˆ˜ì •", "status.edited": "{date}ì— íŽ¸ì§‘ë¨", "status.edited_x_times": "{count}번 ìˆ˜ì •ë¨", diff --git a/app/javascript/mastodon/locales/ku.json b/app/javascript/mastodon/locales/ku.json index c927d9658460d6c5caef39d7d190924b6f07cb89..5fb8aff26e349e9e3de151abb5349525fe17bc4c 100644 --- a/app/javascript/mastodon/locales/ku.json +++ b/app/javascript/mastodon/locales/ku.json @@ -558,6 +558,7 @@ "status.delete": "Jê bibe", "status.detailed_status": "Dîtina axaftina berfireh", "status.direct": "Peyama rasterast @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Serrast bike", "status.edited": "Di {date} de hate serrastkirin", "status.edited_x_times": "{count, plural, one {{count} car} other {{count} car}} hate serrastkirin", diff --git a/app/javascript/mastodon/locales/kw.json b/app/javascript/mastodon/locales/kw.json index 9a20c2ebfba05aa4f4b66116ac8a3f61a374bca3..c1f25017d0bd3c86181d50c3820b19a39c23a164 100644 --- a/app/javascript/mastodon/locales/kw.json +++ b/app/javascript/mastodon/locales/kw.json @@ -558,6 +558,7 @@ "status.delete": "Dilea", "status.detailed_status": "Gwel kesklapp a-vanyl", "status.direct": "Messach didro dhe @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/la.json b/app/javascript/mastodon/locales/la.json index 173ca7c612414a33300b3ed916e6ad5a6b27adb1..84a8bc5604ff7d905507603e8378d47c664864de 100644 --- a/app/javascript/mastodon/locales/la.json +++ b/app/javascript/mastodon/locales/la.json @@ -558,6 +558,7 @@ "status.delete": "Oblitterare", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Recolere", "status.edited": "Recultum {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/lt.json b/app/javascript/mastodon/locales/lt.json index fd4bbdd95e04701425d25239132ac178451e2575..99e669c959d94e004e10b5b43e15ef02d45f32b3 100644 --- a/app/javascript/mastodon/locales/lt.json +++ b/app/javascript/mastodon/locales/lt.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/lv.json b/app/javascript/mastodon/locales/lv.json index 9a3e3219e6929c03c763e633a3509a6a5c3ec66d..2f1f70f1417f9d2bee64e4b8cab7652183b8a5d8 100644 --- a/app/javascript/mastodon/locales/lv.json +++ b/app/javascript/mastodon/locales/lv.json @@ -558,6 +558,7 @@ "status.delete": "DzÄ“st", "status.detailed_status": "DetalizÄ“ts sarunas skats", "status.direct": "PrivÄta ziņa @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Rediģēt", "status.edited": "Rediģēts {date}", "status.edited_x_times": "Rediģēts {count, plural, one {{count} reizi} other {{count} reizes}}", diff --git a/app/javascript/mastodon/locales/mk.json b/app/javascript/mastodon/locales/mk.json index a84cc91686d9d3e2ed104584ada2d894b87c5095..138d17b9d604fec278383f7607e7df8d5775cfa3 100644 --- a/app/javascript/mastodon/locales/mk.json +++ b/app/javascript/mastodon/locales/mk.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/ml.json b/app/javascript/mastodon/locales/ml.json index 5d29c55d0285cd62c9fb438026127af3ee90cdcf..6c4975de2445ce3edfafb9e288524622e16958e3 100644 --- a/app/javascript/mastodon/locales/ml.json +++ b/app/javascript/mastodon/locales/ml.json @@ -558,6 +558,7 @@ "status.delete": "മായàµà´•àµà´•àµà´•", "status.detailed_status": "വിശദമായ സംà´à´¾à´·à´£ കാഴàµâ€Œà´š", "status.direct": "@{name} നൠനേരിടàµà´Ÿàµ മെസേജൠഅയകàµà´•àµà´•", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/mr.json b/app/javascript/mastodon/locales/mr.json index 12a29f503f3bcf2a9793b07f44c59d88509ce500..9388f4792251dd9ad016b8606f8875adf93801bd 100644 --- a/app/javascript/mastodon/locales/mr.json +++ b/app/javascript/mastodon/locales/mr.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/ms.json b/app/javascript/mastodon/locales/ms.json index 3a374884b2dd73b7b9b85a64e4a225dc8a0056a7..317efb4c4f50f60f88772eb8981bdb3e2848dbcf 100644 --- a/app/javascript/mastodon/locales/ms.json +++ b/app/javascript/mastodon/locales/ms.json @@ -558,6 +558,7 @@ "status.delete": "Padam", "status.detailed_status": "Paparan perbualan terperinci", "status.direct": "Mesej terus @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Sunting", "status.edited": "Disunting {date}", "status.edited_x_times": "Disunting {count, plural, other {{count} kali}}", diff --git a/app/javascript/mastodon/locales/my.json b/app/javascript/mastodon/locales/my.json index 3679fcce0f5ff2ec9682dcb38a7ae2df44ed9ba3..502e8ca97e194d31d4729c5e6463b5c877704249 100644 --- a/app/javascript/mastodon/locales/my.json +++ b/app/javascript/mastodon/locales/my.json @@ -558,6 +558,7 @@ "status.delete": "ဖျက်ရန်", "status.detailed_status": "အသေးစá€á€á€ºá€…ကားပြောဆá€á€¯á€™á€¾á€¯á€™á€¼á€„်ကွင်း", "status.direct": "@{name} ကá€á€¯ á€á€á€¯á€€á€ºá€›á€á€¯á€€á€ºá€…ာပá€á€¯á€·á€™á€Šá€º", + "status.direct_indicator": "Private mention", "status.edit": "ပြင်ဆင်ရန်", "status.edited": "{date} ကá€á€¯ ပြင်ဆင်ပြီးပါပြီ", "status.edited_x_times": "{count, plural, one {{count} time} other {{count} times}} ပြင်ဆင်á€á€²á€·á€žá€Šá€º", diff --git a/app/javascript/mastodon/locales/nl.json b/app/javascript/mastodon/locales/nl.json index c2679ddefea319fc92e310f7a4530fe0a73e48dd..359a1f200b84f668017dbcfd8b70ed45fc29c2f9 100644 --- a/app/javascript/mastodon/locales/nl.json +++ b/app/javascript/mastodon/locales/nl.json @@ -558,6 +558,7 @@ "status.delete": "Verwijderen", "status.detailed_status": "Uitgebreide gespreksweergave", "status.direct": "@{name} een direct bericht sturen", + "status.direct_indicator": "Private mention", "status.edit": "Bewerken", "status.edited": "Bewerkt op {date}", "status.edited_x_times": "{count, plural, one {{count} keer} other {{count} keer}} bewerkt", diff --git a/app/javascript/mastodon/locales/nn.json b/app/javascript/mastodon/locales/nn.json index 76b1ebf2a51bb29b09722b9ea466c783db933e53..d3b74204af9d45a3f60296d93d3f9dbd02022aff 100644 --- a/app/javascript/mastodon/locales/nn.json +++ b/app/javascript/mastodon/locales/nn.json @@ -558,6 +558,7 @@ "status.delete": "Slett", "status.detailed_status": "Detaljert samtalevisning", "status.direct": "Send melding til @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Rediger", "status.edited": "Redigert {date}", "status.edited_x_times": "Redigert {count, plural, one {{count} gong} other {{count} gonger}}", diff --git a/app/javascript/mastodon/locales/no.json b/app/javascript/mastodon/locales/no.json index 372902e8b35705387a36daa55cc657f130dad5e3..5b082194684a367c430b87509b664fb412b2dc02 100644 --- a/app/javascript/mastodon/locales/no.json +++ b/app/javascript/mastodon/locales/no.json @@ -558,6 +558,7 @@ "status.delete": "Slett", "status.detailed_status": "Detaljert samtalevisning", "status.direct": "Send direktemelding til @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Rediger", "status.edited": "Redigert {date}", "status.edited_x_times": "Redigert {count, plural,one {{count} gang} other {{count} ganger}}", diff --git a/app/javascript/mastodon/locales/oc.json b/app/javascript/mastodon/locales/oc.json index cde922c0515a82424fe0dd34f98ef83dfa780549..255d6f27654f4b6dff29a4155a4bd8e9d7f8bd23 100644 --- a/app/javascript/mastodon/locales/oc.json +++ b/app/javascript/mastodon/locales/oc.json @@ -558,6 +558,7 @@ "status.delete": "Escafar", "status.detailed_status": "Vista detalhada de la convèrsa", "status.direct": "Messatge per @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Modificar", "status.edited": "Modificat {date}", "status.edited_x_times": "Modificat {count, plural, un {{count} còp} other {{count} còps}}", diff --git a/app/javascript/mastodon/locales/pa.json b/app/javascript/mastodon/locales/pa.json index b81bb13564ddefa9b607e6f06e164f63a7090f1f..ee4d3a7f9864af41c48afdcf434078f0fa4de18c 100644 --- a/app/javascript/mastodon/locales/pa.json +++ b/app/javascript/mastodon/locales/pa.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/pl.json b/app/javascript/mastodon/locales/pl.json index 3e979dbb2ea600ad206b18eed59a96db5b281a37..702c5b4d2ce2457e1d73f6163a6e61cbc604246f 100644 --- a/app/javascript/mastodon/locales/pl.json +++ b/app/javascript/mastodon/locales/pl.json @@ -558,6 +558,7 @@ "status.delete": "UsuÅ„", "status.detailed_status": "Szczegółowy widok konwersacji", "status.direct": "WyÅ›lij wiadomość bezpoÅ›redniÄ… do @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edytuj", "status.edited": "Edytowano {date}", "status.edited_x_times": "Edytowano {count, plural, one {{count} raz} other {{count} razy}}", diff --git a/app/javascript/mastodon/locales/pt-BR.json b/app/javascript/mastodon/locales/pt-BR.json index 24978743804739e0b4cc4a175219df0597a8ff8a..8913f21e53b767c1e70c7532b606a9c759585c79 100644 --- a/app/javascript/mastodon/locales/pt-BR.json +++ b/app/javascript/mastodon/locales/pt-BR.json @@ -558,6 +558,7 @@ "status.delete": "Excluir", "status.detailed_status": "Visão detalhada da conversa", "status.direct": "Enviar toot direto para @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Editar", "status.edited": "Editado em {date}", "status.edited_x_times": "Editado {count, plural, one {{count} hora} other {{count} vezes}}", diff --git a/app/javascript/mastodon/locales/pt-PT.json b/app/javascript/mastodon/locales/pt-PT.json index d72c5c7002a3c463f64cf9a79373dd8ded234c14..99f9c156d8bdd57dd7f568af723c7977e9508503 100644 --- a/app/javascript/mastodon/locales/pt-PT.json +++ b/app/javascript/mastodon/locales/pt-PT.json @@ -558,6 +558,7 @@ "status.delete": "Eliminar", "status.detailed_status": "Vista pormenorizada da conversa", "status.direct": "Mensagem direta @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Editar", "status.edited": "Editado em {date}", "status.edited_x_times": "Editado {count, plural,one {{count} vez} other {{count} vezes}}", diff --git a/app/javascript/mastodon/locales/ro.json b/app/javascript/mastodon/locales/ro.json index c50a6a12ba4113076d01a3bde262877e20f0ef2e..0c331b42505726615d4545d8cf79628cedb597ec 100644 --- a/app/javascript/mastodon/locales/ro.json +++ b/app/javascript/mastodon/locales/ro.json @@ -558,6 +558,7 @@ "status.delete": "Șterge", "status.detailed_status": "ConversaÈ›ia detaliată", "status.direct": "Mesaj direct către @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Modifică", "status.edited": "Modificat în data de {date}", "status.edited_x_times": "Modificată {count, plural, one {o dată} few {de {count} ori} other {de {count} de ori}}", diff --git a/app/javascript/mastodon/locales/ru.json b/app/javascript/mastodon/locales/ru.json index f84be48f7715f1b6d0f14af9eafb0b7439c5c4f0..8820a67e630863c79b362f7b11283617c9902dbf 100644 --- a/app/javascript/mastodon/locales/ru.json +++ b/app/javascript/mastodon/locales/ru.json @@ -558,6 +558,7 @@ "status.delete": "Удалить", "status.detailed_status": "Подробный проÑмотр обÑуждениÑ", "status.direct": "ÐапиÑать @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Изменить", "status.edited": "ПоÑледнее изменение: {date}", "status.edited_x_times": "{count, plural, one {{count} изменение} many {{count} изменений} other {{count} изменениÑ}}", diff --git a/app/javascript/mastodon/locales/sa.json b/app/javascript/mastodon/locales/sa.json index 13e5cbb571f8f0dd3a46e54bea0109c44f0a9302..15c6fc02e6396f2817ad36e24d01f1b0ad38e077 100644 --- a/app/javascript/mastodon/locales/sa.json +++ b/app/javascript/mastodon/locales/sa.json @@ -558,6 +558,7 @@ "status.delete": "मारà¥à¤œà¤¯", "status.detailed_status": "विसà¥à¤¤à¥ƒà¤¤à¤¸à¤‚à¤à¤¾à¤·à¤£à¤¦à¥ƒà¤¶à¥à¤¯à¤®à¥", "status.direct": "पà¥à¤°à¤¤à¥à¤¯à¤•à¥à¤·à¤¸à¤¨à¥à¤¦à¥‡à¤¶à¤ƒ @{name}", + "status.direct_indicator": "Private mention", "status.edit": "समà¥à¤ªà¤¾à¤¦à¤¯", "status.edited": "समà¥à¤ªà¤¾à¤¦à¤¿à¤¤à¤‚ {date}", "status.edited_x_times": "Edited {count, plural, one {{count} वारमà¥} other {{count} वारमà¥}}", diff --git a/app/javascript/mastodon/locales/sc.json b/app/javascript/mastodon/locales/sc.json index 38aa39f3fc7ad146821ed869106144d2e0d633bb..b61ac537c70e5c6d02935bda095cf776edc843db 100644 --- a/app/javascript/mastodon/locales/sc.json +++ b/app/javascript/mastodon/locales/sc.json @@ -558,6 +558,7 @@ "status.delete": "Cantzella", "status.detailed_status": "Visualizatzione de detà lliu de arresonada", "status.direct": "Messà giu deretu a @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/sco.json b/app/javascript/mastodon/locales/sco.json index 1abcac47e52953820673d2fe55257ba40fb42599..f32d8d2e7089eab77d7fed76d5ee2c27df5084c3 100644 --- a/app/javascript/mastodon/locales/sco.json +++ b/app/javascript/mastodon/locales/sco.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailt conversation view", "status.direct": "Direck message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Editit {date}", "status.edited_x_times": "Editit {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/si.json b/app/javascript/mastodon/locales/si.json index f13aca561c4916394e8a56344b5d9ffa82a259a0..3e96be5fe1f4520060c40a5370d58922c53a0fe8 100644 --- a/app/javascript/mastodon/locales/si.json +++ b/app/javascript/mastodon/locales/si.json @@ -558,6 +558,7 @@ "status.delete": "මකන්න", "status.detailed_status": "විස්à¶à¶»à·à¶à·Šà¶¸à¶š සංවà·à¶¯ දà·à¶šà·Šà¶¸", "status.direct": "@{name} සෘජු පණිවිඩයක්", + "status.direct_indicator": "Private mention", "status.edit": "සංස්කරණය", "status.edited": "සංà·à·à¶°à·’à¶à¶ºà·’ {date}", "status.edited_x_times": "සංà·à·à¶°à·’à¶à¶ºà·’ {count, plural, one {à·€à·à¶» {count}} other {à·€à·à¶» {count}}}", diff --git a/app/javascript/mastodon/locales/sk.json b/app/javascript/mastodon/locales/sk.json index b3da4e07bdf85353cc166d47e6be83c1e92cdcbb..e2f558b9b18f2e6883b54e101e128d67b9bf1aad 100644 --- a/app/javascript/mastodon/locales/sk.json +++ b/app/javascript/mastodon/locales/sk.json @@ -558,6 +558,7 @@ "status.delete": "ZmazaÅ¥", "status.detailed_status": "Podrobný náhľad celej konverzácie", "status.direct": "Priama správa pre @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Uprav", "status.edited": "Upravené {date}", "status.edited_x_times": "Upravený {count, plural, one {{count} krát} other {{count} krát}}", diff --git a/app/javascript/mastodon/locales/sl.json b/app/javascript/mastodon/locales/sl.json index 331d9aa20aaa7e2bc6ddc8323d040002cf1b2ffc..78502dd07473dd4d65a0f1f0e951a4ccc4af5582 100644 --- a/app/javascript/mastodon/locales/sl.json +++ b/app/javascript/mastodon/locales/sl.json @@ -558,6 +558,7 @@ "status.delete": "IzbriÅ¡i", "status.detailed_status": "Podroben pogled pogovora", "status.direct": "Neposredno sporoÄilo @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Uredi", "status.edited": "Urejeno {date}", "status.edited_x_times": "Urejeno {count, plural, one {#-krat} two {#-krat} few {#-krat} other {#-krat}}", diff --git a/app/javascript/mastodon/locales/sq.json b/app/javascript/mastodon/locales/sq.json index 2c4c8cd89f5d14456a6d4689d1865ae43adab122..7322b12aeac58348e8e81f33348e57e657ab89a1 100644 --- a/app/javascript/mastodon/locales/sq.json +++ b/app/javascript/mastodon/locales/sq.json @@ -558,6 +558,7 @@ "status.delete": "Fshije", "status.detailed_status": "Pamje e hollësishme bisede", "status.direct": "Mesazh i drejtpërdrejtë për @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Përpunojeni", "status.edited": "Përpunuar më {date}", "status.edited_x_times": "Përpunuar {count, plural, one {{count} herë} other {{count} herë}}", diff --git a/app/javascript/mastodon/locales/sr-Latn.json b/app/javascript/mastodon/locales/sr-Latn.json index 16f7a0fd9a63021546b58a596efad2d8d08b2c62..904396610ea43f8443b3858d6db65d8a633ad39b 100644 --- a/app/javascript/mastodon/locales/sr-Latn.json +++ b/app/javascript/mastodon/locales/sr-Latn.json @@ -558,6 +558,7 @@ "status.delete": "IzbriÅ¡i", "status.detailed_status": "Detaljan prikaz razgovora", "status.direct": "PoÅ¡alji poruku @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Uredi", "status.edited": "UreÄ‘eno {date}", "status.edited_x_times": "UreÄ‘eno {count, plural, one {{count} put} other {{count} puta}}", diff --git a/app/javascript/mastodon/locales/sr.json b/app/javascript/mastodon/locales/sr.json index 6d983496f3a48bf3b6017349960cf0fab61b2608..665d561c62a00f8d1ab669d11ea4bb78799e60ea 100644 --- a/app/javascript/mastodon/locales/sr.json +++ b/app/javascript/mastodon/locales/sr.json @@ -558,6 +558,7 @@ "status.delete": "Избриши", "status.detailed_status": "Детаљан приказ разговора", "status.direct": "Пошаљи поруку @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Уреди", "status.edited": "Уређено {date}", "status.edited_x_times": "Уређено {count, plural, one {{count} пут} other {{count} пута}}", diff --git a/app/javascript/mastodon/locales/sv.json b/app/javascript/mastodon/locales/sv.json index fe573949d74f444b4306520ba709c84ee5d31c17..90462f026cd7c16a7822bafa4eede783e0e18264 100644 --- a/app/javascript/mastodon/locales/sv.json +++ b/app/javascript/mastodon/locales/sv.json @@ -558,6 +558,7 @@ "status.delete": "Radera", "status.detailed_status": "Detaljerad samtalsvy", "status.direct": "Direktmeddela @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Redigera", "status.edited": "Ändrad {date}", "status.edited_x_times": "Redigerad {count, plural, one {{count} gÃ¥ng} other {{count} gÃ¥nger}}", diff --git a/app/javascript/mastodon/locales/szl.json b/app/javascript/mastodon/locales/szl.json index 587cae5b80d9fee84df4b7a64f4db0c22b6ba086..6ec6e84390e1cfcde41a1c7e01616ee44003b2f2 100644 --- a/app/javascript/mastodon/locales/szl.json +++ b/app/javascript/mastodon/locales/szl.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/ta.json b/app/javascript/mastodon/locales/ta.json index fa2ad1b1cee23a30b944f69f4728783dbbc66f9b..521b58fe5b7fe9fc2139de54ae9eebeca59a3cb6 100644 --- a/app/javascript/mastodon/locales/ta.json +++ b/app/javascript/mastodon/locales/ta.json @@ -558,6 +558,7 @@ "status.delete": "நீகà¯à®•à¯", "status.detailed_status": "விரிவான உரையாடல௠காடà¯à®šà®¿", "status.direct": "நேரடி செயà¯à®¤à®¿ @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/tai.json b/app/javascript/mastodon/locales/tai.json index 37f8add8faf1051804bd81a15a7fad2d87e0ce0d..4c32ffcb533c08a4f928099e96ca6df412148414 100644 --- a/app/javascript/mastodon/locales/tai.json +++ b/app/javascript/mastodon/locales/tai.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/te.json b/app/javascript/mastodon/locales/te.json index 190db00a0e15b2ba85f5ab29b92baf628f8b93db..2a6f612d32f5a720d4cf32bf075fd1f24646259a 100644 --- a/app/javascript/mastodon/locales/te.json +++ b/app/javascript/mastodon/locales/te.json @@ -558,6 +558,7 @@ "status.delete": "తొలగించà±", "status.detailed_status": "వివరణాతà±à°®à°• సంà°à°¾à°·à°£ వీకà±à°·à°£", "status.direct": "@{name}కౠనేరà±à°—à°¾ సందేశం పంపà±", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/th.json b/app/javascript/mastodon/locales/th.json index c7484b1182ba37643888009c377077cb433a8a57..eb7de5aa5ee125b793cd64aba52cd12b99ad989d 100644 --- a/app/javascript/mastodon/locales/th.json +++ b/app/javascript/mastodon/locales/th.json @@ -558,6 +558,7 @@ "status.delete": "ลบ", "status.detailed_status": "มุมมà¸à¸‡à¸à¸²à¸£à¸ªà¸™à¸—นาโดยละเà¸à¸µà¸¢à¸”", "status.direct": "ส่งข้à¸à¸„วามโดยตรงถึง @{name}", + "status.direct_indicator": "Private mention", "status.edit": "à¹à¸à¹‰à¹„ข", "status.edited": "à¹à¸à¹‰à¹„ขเมื่ภ{date}", "status.edited_x_times": "à¹à¸à¹‰à¹„ข {count, plural, other {{count} ครั้ง}}", diff --git a/app/javascript/mastodon/locales/tr.json b/app/javascript/mastodon/locales/tr.json index fd7546e1d46907afed40855628e7ed90e72969b7..7e406f5f8c6588561649619b534ddfc7322e2ac3 100644 --- a/app/javascript/mastodon/locales/tr.json +++ b/app/javascript/mastodon/locales/tr.json @@ -558,6 +558,7 @@ "status.delete": "Sil", "status.detailed_status": "Ayrıntılı sohbet görünümü", "status.direct": "@{name} adlı kiÅŸiye direkt mesaj", + "status.direct_indicator": "Private mention", "status.edit": "Düzenle", "status.edited": "{date} tarihinde düzenlenmiÅŸ", "status.edited_x_times": "{count, plural, one {{count} kez} other {{count} kez}} düzenlendi", diff --git a/app/javascript/mastodon/locales/tt.json b/app/javascript/mastodon/locales/tt.json index beffae95c78ee274897538b8f6aa9963e33c92de..8307a455c3eac072c4fb1f5e7c68b17911ec55f3 100644 --- a/app/javascript/mastodon/locales/tt.json +++ b/app/javascript/mastodon/locales/tt.json @@ -558,6 +558,7 @@ "status.delete": "Бетерү", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Үзгәртү", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/ug.json b/app/javascript/mastodon/locales/ug.json index b81bb13564ddefa9b607e6f06e164f63a7090f1f..ee4d3a7f9864af41c48afdcf434078f0fa4de18c 100644 --- a/app/javascript/mastodon/locales/ug.json +++ b/app/javascript/mastodon/locales/ug.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/uk.json b/app/javascript/mastodon/locales/uk.json index cbdfef527afd15c8fdcb6ec2d64aa4cae03b3905..9cc83b39d4d13abb1ac65e16f689a25847bd1b1e 100644 --- a/app/javascript/mastodon/locales/uk.json +++ b/app/javascript/mastodon/locales/uk.json @@ -558,6 +558,7 @@ "status.delete": "Видалити", "status.detailed_status": "Детальний виглÑд беÑіди", "status.direct": "ПрÑме Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð´Ð¾ @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Редагувати", "status.edited": "Відредаговано {date}", "status.edited_x_times": "Відредаговано {count, plural, one {{count} раз} few {{count} рази} many {{counter} разів} other {{counter} разів}}", diff --git a/app/javascript/mastodon/locales/ur.json b/app/javascript/mastodon/locales/ur.json index bbe7fbd2394bc81b20aa3ace2b237eeb27bdf8b0..ad21ef963b19da4023a93ade79f9f5539bcf356e 100644 --- a/app/javascript/mastodon/locales/ur.json +++ b/app/javascript/mastodon/locales/ur.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/uz.json b/app/javascript/mastodon/locales/uz.json index 6dcc0e3d8be5529f43b5aa4ec2dfc64b10f27593..9c8675208cc1313b0f5177912ca3bd7ddde0dc4f 100644 --- a/app/javascript/mastodon/locales/uz.json +++ b/app/javascript/mastodon/locales/uz.json @@ -558,6 +558,7 @@ "status.delete": "Delete", "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/vi.json b/app/javascript/mastodon/locales/vi.json index fec79a2af8b0495ab8cabbca1f54588e8bf02ba3..ad7518d989b556a3c54e845e66d66744018781b2 100644 --- a/app/javascript/mastodon/locales/vi.json +++ b/app/javascript/mastodon/locales/vi.json @@ -558,6 +558,7 @@ "status.delete": "Xóa", "status.detailed_status": "Xem chi tiết thêm", "status.direct": "Nhắn riêng @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Sá»a", "status.edited": "Äã sá»a {date}", "status.edited_x_times": "Äã sá»a {count, plural, other {{count} lần}}", diff --git a/app/javascript/mastodon/locales/zgh.json b/app/javascript/mastodon/locales/zgh.json index f5ca66b3a4b03409d5cc56d3149fdf04dcf93acf..700a6d6abc4408a35b09b26f91e5394db608f4a1 100644 --- a/app/javascript/mastodon/locales/zgh.json +++ b/app/javascript/mastodon/locales/zgh.json @@ -558,6 +558,7 @@ "status.delete": "ⴽⴽⵙ", "status.detailed_status": "Detailed conversation view", "status.direct": "ⵜⵓⵣⵉâµâµœ ⵜⵓⵙⵔⵉⴷⵜ ⵉ @{name}", + "status.direct_indicator": "Private mention", "status.edit": "Edit", "status.edited": "Edited {date}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", diff --git a/app/javascript/mastodon/locales/zh-CN.json b/app/javascript/mastodon/locales/zh-CN.json index 3d0290e5d97e76a988584eb87b5af6537c731b69..75554c9ea27fee06ba9ddf6c89ca7f9bef4ce560 100644 --- a/app/javascript/mastodon/locales/zh-CN.json +++ b/app/javascript/mastodon/locales/zh-CN.json @@ -558,6 +558,7 @@ "status.delete": "åˆ é™¤", "status.detailed_status": "详细的对è¯è§†å›¾", "status.direct": "ç§ä¿¡ @{name}", + "status.direct_indicator": "Private mention", "status.edit": "编辑", "status.edited": "编辑于 {date}", "status.edited_x_times": "共编辑 {count, plural, one {{count} 次} other {{count} 次}}", diff --git a/app/javascript/mastodon/locales/zh-HK.json b/app/javascript/mastodon/locales/zh-HK.json index 86c14b180258801cca8c4eaa2d3865ffbc792b6d..db272a35a20ba3b60676bbee6b3f67c658a8e327 100644 --- a/app/javascript/mastodon/locales/zh-HK.json +++ b/app/javascript/mastodon/locales/zh-HK.json @@ -558,6 +558,7 @@ "status.delete": "刪除", "status.detailed_status": "詳細å°è©±å…§å®¹", "status.direct": "ç§è¨Š @{name}", + "status.direct_indicator": "Private mention", "status.edit": "編輯", "status.edited": "編輯於 {date}", "status.edited_x_times": "Edited {count, plural, one {{count} 次} other {{count} 次}}", diff --git a/app/javascript/mastodon/locales/zh-TW.json b/app/javascript/mastodon/locales/zh-TW.json index 6c68716992a15aba3c0bf93394b785a582f1ac94..1a73ed6f224cd7d1ce9a9ba82062d5864e73ea34 100644 --- a/app/javascript/mastodon/locales/zh-TW.json +++ b/app/javascript/mastodon/locales/zh-TW.json @@ -558,6 +558,7 @@ "status.delete": "刪除", "status.detailed_status": "詳細的å°è©±å…§å®¹", "status.direct": "發é€ç§è¨Šçµ¦ @{name}", + "status.direct_indicator": "Private mention", "status.edit": "編輯", "status.edited": "編輯於 {date}", "status.edited_x_times": "已編輯 {count, plural, one {{count} 次} other {{count} 次}}", diff --git a/app/javascript/styles/mastodon-light/diff.scss b/app/javascript/styles/mastodon-light/diff.scss index 58f161f8117442cd34faa4931a787be1c5ef0a75..7498477caa39981effbe7bae4c0ae6053f6f6253 100644 --- a/app/javascript/styles/mastodon-light/diff.scss +++ b/app/javascript/styles/mastodon-light/diff.scss @@ -264,7 +264,7 @@ html { // Change the background colors of statuses .focusable:focus { - background: $ui-base-color; + background: lighten($white, 4%); } .detailed-status, @@ -697,3 +697,11 @@ html { url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.933 18.467' height='19.698' width='15.929'><path d='M3.467 14.967l-3.393-3.5H14.86l-3.392 3.5c-1.866 1.925-3.666 3.5-4 3.5-.335 0-2.135-1.575-4-3.5zm.266-11.234L7.467 0 11.2 3.733l3.733 3.734H0l3.733-3.734z' fill='#{hex-color(lighten($ui-base-color, 8%))}'/></svg>") no-repeat right 8px center / auto 16px; } + +.status__wrapper-direct { + background-color: rgba($ui-highlight-color, 0.1); + + &:focus { + background-color: rgba($ui-highlight-color, 0.15); + } +} diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index b9303f2ef51ca0250f7ce7e3ee917d7e0410d348..6d20be5419921534237d36bc3ed15e37197f63b6 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -1244,7 +1244,7 @@ body > [data-popper-placement] { .status__prepend { padding: 16px; padding-bottom: 0; - display: flex; + display: inline-flex; gap: 10px; font-size: 15px; line-height: 22px; @@ -1262,6 +1262,18 @@ body > [data-popper-placement] { } } +.status__wrapper-direct { + background: mix($ui-base-color, $ui-highlight-color, 95%); + + &:focus { + background: mix(lighten($ui-base-color, 4%), $ui-highlight-color, 95%); + } + + .status__prepend { + color: $highlight-text-color; + } +} + .status__action-bar { display: flex; justify-content: space-between; @@ -1315,6 +1327,11 @@ body > [data-popper-placement] { .audio-player { margin-top: 16px; } + + .status__prepend { + padding: 0; + margin-bottom: 16px; + } } .detailed-status__meta { @@ -1333,6 +1350,32 @@ body > [data-popper-placement] { padding: 10px 0; } +.detailed-status__wrapper-direct { + .detailed-status, + .detailed-status__action-bar { + background: mix($ui-base-color, $ui-highlight-color, 95%); + } + + &:focus { + .detailed-status, + .detailed-status__action-bar { + background: mix(lighten($ui-base-color, 4%), $ui-highlight-color, 95%); + } + } + + .detailed-status__action-bar { + border-top-color: mix( + lighten($ui-base-color, 8%), + $ui-highlight-color, + 95% + ); + } + + .status__prepend { + color: $highlight-text-color; + } +} + .detailed-status__link { color: inherit; text-decoration: none;