Change "direct message" nomenclature to "private mention" in web UI (#24248)
This commit is contained in:
		
							parent
							
								
									c75fccf033
								
							
						
					
					
						commit
						868d478b1b
					
				
					 109 changed files with 191 additions and 26 deletions
				
			
		|  | @ -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']) }; | ||||
| 
 | ||||
|  |  | |||
|  | @ -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}' }, | ||||
|  |  | |||
|  | @ -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}' }, | ||||
|  |  | |||
|  | @ -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> | ||||
|  |  | |||
|  | @ -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' }, | ||||
|  |  | |||
|  | @ -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' }, | ||||
|  |  | |||
|  | @ -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} /> | ||||
|  |  | |||
|  | @ -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} | ||||
|  |  | |||
|  | @ -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' }, | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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} مرة}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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} разу}}", | ||||
|  |  | |||
|  | @ -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} пъти}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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} کات}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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", | ||||
|  |  | |||
|  | @ -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" | ||||
|       }, | ||||
|       { | ||||
|  |  | |||
|  | @ -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} φορές}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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", | ||||
|  |  | |||
|  | @ -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} مرتبه}} ویرایش شد", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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ð}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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} פעמים}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}回編集", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}번 수정됨", | ||||
|  |  | |||
|  | @ -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", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}} ပြင်ဆင်ခဲ့သည်", | ||||
|  |  | |||
|  | @ -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", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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} изменения}}", | ||||
|  |  | |||
|  | @ -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} वारम्}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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ë}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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} пута}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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} ครั้ง}}", | ||||
|  |  | |||
|  | @ -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", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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}}", | ||||
|  |  | |||
|  | @ -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} разів}}", | ||||
|  |  | |||
Some files were not shown because too many files have changed in this diff Show more
		Loading…
	
		Reference in a new issue