kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
Use FormattedList for 'Replying to'
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>environments/review-develop-3zknud/deployments/27
rodzic
008b51eef1
commit
eecbbb839a
|
@ -1,8 +1,9 @@
|
|||
import { List as ImmutableList } from 'immutable';
|
||||
import PropTypes from 'prop-types';
|
||||
import React from 'react';
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { FormattedMessage, injectIntl } from 'react-intl';
|
||||
import { FormattedList, FormattedMessage, injectIntl } from 'react-intl';
|
||||
import { connect } from 'react-redux';
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
|
@ -42,7 +43,7 @@ class StatusReplyMentions extends ImmutablePureComponent {
|
|||
return null;
|
||||
}
|
||||
|
||||
const to = status.get('mentions', []);
|
||||
const to = status.get('mentions', ImmutableList());
|
||||
|
||||
// The post is a reply, but it has no mentions.
|
||||
// Rare, but it can happen.
|
||||
|
@ -58,23 +59,27 @@ class StatusReplyMentions extends ImmutablePureComponent {
|
|||
}
|
||||
|
||||
// The typical case with a reply-to and a list of mentions.
|
||||
const accounts = to.slice(0, 2).map(account => (
|
||||
<HoverRefWrapper accountId={account.get('id')} inline>
|
||||
<Link to={`/@${account.get('acct')}`} className='reply-mentions__account'>@{account.get('username')}</Link>
|
||||
</HoverRefWrapper>
|
||||
)).toArray();
|
||||
|
||||
if (to.size > 2) {
|
||||
accounts.push(
|
||||
<span className='hover:underline cursor-pointer' role='presentation' onClick={this.handleOpenMentionsModal}>
|
||||
<FormattedMessage id='reply_mentions.more' defaultMessage='{count} more' values={{ count: to.size - 2 }} />
|
||||
</span>,
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className='reply-mentions'>
|
||||
<FormattedMessage
|
||||
id='reply_mentions.reply'
|
||||
defaultMessage='Replying to {accounts}{more}'
|
||||
defaultMessage='Replying to {accounts}'
|
||||
values={{
|
||||
accounts: to.slice(0, 2).map(account => (<>
|
||||
<HoverRefWrapper accountId={account.get('id')} inline>
|
||||
<Link to={`/@${account.get('acct')}`} className='reply-mentions__account'>@{account.get('username')}</Link>
|
||||
</HoverRefWrapper>
|
||||
{' '}
|
||||
</>)),
|
||||
more: to.size > 2 && (
|
||||
<span className='hover:underline cursor-pointer' role='presentation' onClick={this.handleOpenMentionsModal}>
|
||||
<FormattedMessage id='reply_mentions.more' defaultMessage='and {count} more' values={{ count: to.size - 2 }} />
|
||||
</span>
|
||||
),
|
||||
accounts: <FormattedList type='conjunction' value={accounts} />,
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import React from 'react';
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
import { FormattedList, FormattedMessage } from 'react-intl';
|
||||
import { useDispatch } from 'react-redux';
|
||||
|
||||
import { openModal } from 'soapbox/actions/modals';
|
||||
|
@ -47,14 +47,23 @@ const ReplyMentions: React.FC = () => {
|
|||
);
|
||||
}
|
||||
|
||||
const accounts = to.slice(0, 2).map((acct: string) => (
|
||||
<span className='reply-mentions__account'>@{acct.split('@')[0]}</span>
|
||||
)).toArray();
|
||||
|
||||
if (to.size > 2) {
|
||||
accounts.push(
|
||||
<FormattedMessage id='reply_mentions.more' defaultMessage='{count} more' values={{ count: to.size - 2 }} />,
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<a href='#' className='reply-mentions' onClick={handleClick}>
|
||||
<FormattedMessage
|
||||
id='reply_mentions.reply'
|
||||
defaultMessage='Replying to {accounts}{more}'
|
||||
defaultMessage='Replying to {accounts}'
|
||||
values={{
|
||||
accounts: to.slice(0, 2).map((acct: string) => <><span className='reply-mentions__account'>@{acct.split('@')[0]}</span>{' '}</>),
|
||||
more: to.size > 2 && <FormattedMessage id='reply_mentions.more' defaultMessage='and {count} more' values={{ count: to.size - 2 }} />,
|
||||
accounts: <FormattedList type='conjunction' value={accounts} />,
|
||||
}}
|
||||
/>
|
||||
</a>
|
||||
|
|
|
@ -2,7 +2,7 @@ import classNames from 'classnames';
|
|||
import { History } from 'history';
|
||||
import React from 'react';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { defineMessages, injectIntl, FormattedMessage, IntlShape } from 'react-intl';
|
||||
import { defineMessages, injectIntl, FormattedMessage, IntlShape, FormattedList } from 'react-intl';
|
||||
import { withRouter } from 'react-router-dom';
|
||||
|
||||
import AttachmentThumbs from 'soapbox/components/attachment_thumbs';
|
||||
|
@ -67,10 +67,9 @@ class QuotedStatus extends ImmutablePureComponent<IQuotedStatus> {
|
|||
<div className='reply-mentions'>
|
||||
<FormattedMessage
|
||||
id='reply_mentions.reply'
|
||||
defaultMessage='Replying to {accounts}{more}'
|
||||
defaultMessage='Replying to {accounts}'
|
||||
values={{
|
||||
accounts: `@${account.username}`,
|
||||
more: false,
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
@ -84,14 +83,21 @@ class QuotedStatus extends ImmutablePureComponent<IQuotedStatus> {
|
|||
}
|
||||
}
|
||||
|
||||
const accounts = to.slice(0, 2).map(account => <>@{account.username}</>).toArray();
|
||||
|
||||
if (to.size > 2) {
|
||||
accounts.push(
|
||||
<FormattedMessage id='reply_mentions.more' defaultMessage='{count} more' values={{ count: to.size - 2 }} />,
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className='reply-mentions'>
|
||||
<FormattedMessage
|
||||
id='reply_mentions.reply'
|
||||
defaultMessage='Replying to {accounts}{more}'
|
||||
defaultMessage='Replying to {accounts}'
|
||||
values={{
|
||||
accounts: to.slice(0, 2).map(account => `@${account.username} `),
|
||||
more: to.size > 2 && <FormattedMessage id='reply_mentions.more' defaultMessage='and {count} more' values={{ count: to.size - 2 }} />,
|
||||
accounts: <FormattedList type='conjunction' value={accounts} />,
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "إلغاء",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Encaboxar",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Отказ",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "বাতিল করতে",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel·lar",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Bloquejar {target}",
|
||||
"report.block_hint": "També vols bloquejar aquest compte?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Annullà",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Zrušit",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Zablokovat {target}",
|
||||
"report.block_hint": "Chcete zablokovat tento účet?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Canslo",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Annuller",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,8 @@
|
|||
"reply_indicator.cancel": "Abbrechen",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "und {count, plural, one {einen weiteren Nutzer} other {# weitere Nutzer}}",
|
||||
"reply_mentions.reply": "Antwort an {accounts}{more}",
|
||||
"reply_mentions.more": "{count, plural, one {einen weiteren Nutzer} other {# weitere Nutzer}}",
|
||||
"reply_mentions.reply": "Antwort an {accounts}",
|
||||
"reply_mentions.reply_empty": "Antwort auf einen Beitrag",
|
||||
"report.block": "{target} blockieren.",
|
||||
"report.block_hint": "Soll dieses Konto zusammen mit der Meldung auch gleich blockiert werden?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Άκυρο",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,8 @@
|
|||
"reply_indicator.cancel": "𐑒𐑨𐑯𐑕𐑩𐑤",
|
||||
"reply_mentions.account.add": "𐑨𐑛 𐑑 𐑥𐑧𐑯𐑖𐑩𐑯𐑟",
|
||||
"reply_mentions.account.remove": "𐑮𐑦𐑥𐑵𐑝 𐑓𐑮𐑪𐑥 𐑥𐑧𐑯𐑖𐑩𐑯𐑟",
|
||||
"reply_mentions.more": "𐑯 {count} 𐑥𐑹",
|
||||
"reply_mentions.reply": "𐑮𐑦𐑐𐑤𐑲𐑦𐑙 𐑑 {accounts}{more}",
|
||||
"reply_mentions.more": "{count} 𐑥𐑹",
|
||||
"reply_mentions.reply": "𐑮𐑦𐑐𐑤𐑲𐑦𐑙 𐑑 {accounts}",
|
||||
"reply_mentions.reply_empty": "𐑮𐑦𐑐𐑤𐑲𐑦𐑙 𐑑 𐑐𐑴𐑕𐑑",
|
||||
"report.block": "𐑚𐑤𐑪𐑒 {target}",
|
||||
"report.block_hint": "𐑛𐑵 𐑿 𐑷𐑤𐑕𐑴 𐑢𐑪𐑯𐑑 𐑑 𐑚𐑤𐑪𐑒 𐑞𐑦𐑕 𐑩𐑒𐑬𐑯𐑑?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Nuligi",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancelar",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancelar",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Tühista",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Utzi",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "لغو",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Peruuta",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Annuler",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancelar",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,8 @@
|
|||
"reply_indicator.cancel": "ביטול",
|
||||
"reply_mentions.account.add": "הוסף לאזכורים",
|
||||
"reply_mentions.account.remove": "הסר מהאזכורים",
|
||||
"reply_mentions.more": "ו-{count} עוד",
|
||||
"reply_mentions.reply": "משיב ל-{accounts}{more}",
|
||||
"reply_mentions.more": "{count} עוד",
|
||||
"reply_mentions.reply": "משיב ל-{accounts}",
|
||||
"reply_mentions.reply_empty": "משיב לפוסט",
|
||||
"report.block": "חסום {target}",
|
||||
"report.block_hint": "האם גם אתה רוצה לחסום את החשבון הזה?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Otkaži",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Mégsem",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Չեղարկել",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Batal",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Nihiligar",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -788,8 +788,8 @@
|
|||
"reply_indicator.cancel": "Hætta við",
|
||||
"reply_mentions.account.add": "Bæta við í tilvísanirnar",
|
||||
"reply_mentions.account.remove": "Fjarlægja úr tilvísunum",
|
||||
"reply_mentions.more": "og {count} fleirum",
|
||||
"reply_mentions.reply": "Að svara {accounts}{more}",
|
||||
"reply_mentions.more": "{count} fleirum",
|
||||
"reply_mentions.reply": "Að svara {accounts}",
|
||||
"reply_mentions.reply_empty": "Að svara færslu",
|
||||
"report.block": "Loka á {target}",
|
||||
"report.block_hint": "Viltu líka loka á þennan reikning?",
|
||||
|
|
|
@ -859,8 +859,8 @@
|
|||
"reply_indicator.cancel": "Annulla",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "e ancora {count}",
|
||||
"reply_mentions.reply": "Risponde a {accounts}{more}",
|
||||
"reply_mentions.more": "ancora {count}",
|
||||
"reply_mentions.reply": "Risponde a {accounts}",
|
||||
"reply_mentions.reply_empty": "Rispondendo al contenuto",
|
||||
"report.block": "Blocca {target}",
|
||||
"report.block_hint": "Vuoi anche bloccare questa persona?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "キャンセル",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "{target}さんをブロック",
|
||||
"report.block_hint": "このアカウントをブロックしますか?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "უარყოფა",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Қайтып алу",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "취소",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Annuleren",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Avbryt",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Anullar",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -876,8 +876,8 @@
|
|||
"reply_indicator.cancel": "Anuluj",
|
||||
"reply_mentions.account.add": "Dodaj do wspomnianych",
|
||||
"reply_mentions.account.remove": "Usuń z wspomnianych",
|
||||
"reply_mentions.more": "i {count} więcej",
|
||||
"reply_mentions.reply": "W odpowiedzi do {accounts}{more}",
|
||||
"reply_mentions.more": "{count} więcej",
|
||||
"reply_mentions.reply": "W odpowiedzi do {accounts}",
|
||||
"reply_mentions.reply_empty": "W odpowiedzi na wpis",
|
||||
"report.block": "Zablokuj {target}",
|
||||
"report.block_hint": "Czy chcesz też zablokować to konto?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancelar",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Cancelar",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Bloquear {target}",
|
||||
"report.block_hint": "Desejas também bloquear esta conta?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Anulează",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Отмена",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Zrušiť",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Prekliči",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Anuloje",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Poništi",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Поништи",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Ångra",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "எதிராணை",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "రద్దు చెయ్యి",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "ยกเลิก",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "İptal",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "Відмінити",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "取消",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "屏蔽帐号 {target}",
|
||||
"report.block_hint": "你是否也要屏蔽这个帐号呢?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "取消",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
|
@ -859,8 +859,6 @@
|
|||
"reply_indicator.cancel": "取消",
|
||||
"reply_mentions.account.add": "Add to mentions",
|
||||
"reply_mentions.account.remove": "Remove from mentions",
|
||||
"reply_mentions.more": "and {count} more",
|
||||
"reply_mentions.reply": "Replying to {accounts}{more}",
|
||||
"reply_mentions.reply_empty": "Replying to post",
|
||||
"report.block": "Block {target}",
|
||||
"report.block_hint": "Do you also want to block this account?",
|
||||
|
|
Ładowanie…
Reference in New Issue