Use FormattedList for 'Replying to'

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
environments/review-develop-3zknud/deployments/27
marcin mikołajczak 2022-05-16 20:30:42 +02:00
rodzic 008b51eef1
commit eecbbb839a
67 zmienionych plików z 56 dodań i 152 usunięć

Wyświetl plik

@ -1,8 +1,9 @@
import { List as ImmutableList } from 'immutable';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import React from 'react'; import React from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component'; 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 { connect } from 'react-redux';
import { Link } from 'react-router-dom'; import { Link } from 'react-router-dom';
@ -42,7 +43,7 @@ class StatusReplyMentions extends ImmutablePureComponent {
return null; return null;
} }
const to = status.get('mentions', []); const to = status.get('mentions', ImmutableList());
// The post is a reply, but it has no mentions. // The post is a reply, but it has no mentions.
// Rare, but it can happen. // 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. // 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 ( return (
<div className='reply-mentions'> <div className='reply-mentions'>
<FormattedMessage <FormattedMessage
id='reply_mentions.reply' id='reply_mentions.reply'
defaultMessage='Replying to {accounts}{more}' defaultMessage='Replying to {accounts}'
values={{ values={{
accounts: to.slice(0, 2).map(account => (<> accounts: <FormattedList type='conjunction' value={accounts} />,
<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>
),
}} }}
/> />
</div> </div>

Wyświetl plik

@ -1,5 +1,5 @@
import React from 'react'; import React from 'react';
import { FormattedMessage } from 'react-intl'; import { FormattedList, FormattedMessage } from 'react-intl';
import { useDispatch } from 'react-redux'; import { useDispatch } from 'react-redux';
import { openModal } from 'soapbox/actions/modals'; 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 ( return (
<a href='#' className='reply-mentions' onClick={handleClick}> <a href='#' className='reply-mentions' onClick={handleClick}>
<FormattedMessage <FormattedMessage
id='reply_mentions.reply' id='reply_mentions.reply'
defaultMessage='Replying to {accounts}{more}' defaultMessage='Replying to {accounts}'
values={{ values={{
accounts: to.slice(0, 2).map((acct: string) => <><span className='reply-mentions__account'>@{acct.split('@')[0]}</span>{' '}</>), accounts: <FormattedList type='conjunction' value={accounts} />,
more: to.size > 2 && <FormattedMessage id='reply_mentions.more' defaultMessage='and {count} more' values={{ count: to.size - 2 }} />,
}} }}
/> />
</a> </a>

Wyświetl plik

@ -2,7 +2,7 @@ import classNames from 'classnames';
import { History } from 'history'; import { History } from 'history';
import React from 'react'; import React from 'react';
import ImmutablePureComponent from 'react-immutable-pure-component'; 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 { withRouter } from 'react-router-dom';
import AttachmentThumbs from 'soapbox/components/attachment_thumbs'; import AttachmentThumbs from 'soapbox/components/attachment_thumbs';
@ -67,10 +67,9 @@ class QuotedStatus extends ImmutablePureComponent<IQuotedStatus> {
<div className='reply-mentions'> <div className='reply-mentions'>
<FormattedMessage <FormattedMessage
id='reply_mentions.reply' id='reply_mentions.reply'
defaultMessage='Replying to {accounts}{more}' defaultMessage='Replying to {accounts}'
values={{ values={{
accounts: `@${account.username}`, accounts: `@${account.username}`,
more: false,
}} }}
/> />
</div> </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 ( return (
<div className='reply-mentions'> <div className='reply-mentions'>
<FormattedMessage <FormattedMessage
id='reply_mentions.reply' id='reply_mentions.reply'
defaultMessage='Replying to {accounts}{more}' defaultMessage='Replying to {accounts}'
values={{ values={{
accounts: to.slice(0, 2).map(account => `@${account.username} `), accounts: <FormattedList type='conjunction' value={accounts} />,
more: to.size > 2 && <FormattedMessage id='reply_mentions.more' defaultMessage='and {count} more' values={{ count: to.size - 2 }} />,
}} }}
/> />
</div> </div>

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "إلغاء", "reply_indicator.cancel": "إلغاء",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Encaboxar", "reply_indicator.cancel": "Encaboxar",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Отказ", "reply_indicator.cancel": "Отказ",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "বাতিল করতে", "reply_indicator.cancel": "বাতিল করতে",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "Cancel",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel·lar", "reply_indicator.cancel": "Cancel·lar",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Bloquejar {target}", "report.block": "Bloquejar {target}",
"report.block_hint": "També vols bloquejar aquest compte?", "report.block_hint": "També vols bloquejar aquest compte?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Annullà", "reply_indicator.cancel": "Annullà",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Zrušit", "reply_indicator.cancel": "Zrušit",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Zablokovat {target}", "report.block": "Zablokovat {target}",
"report.block_hint": "Chcete zablokovat tento účet?", "report.block_hint": "Chcete zablokovat tento účet?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Canslo", "reply_indicator.cancel": "Canslo",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Annuller", "reply_indicator.cancel": "Annuller",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,8 @@
"reply_indicator.cancel": "Abbrechen", "reply_indicator.cancel": "Abbrechen",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from mentions", "reply_mentions.account.remove": "Remove from mentions",
"reply_mentions.more": "und {count, plural, one {einen weiteren Nutzer} other {# weitere Nutzer}}", "reply_mentions.more": "{count, plural, one {einen weiteren Nutzer} other {# weitere Nutzer}}",
"reply_mentions.reply": "Antwort an {accounts}{more}", "reply_mentions.reply": "Antwort an {accounts}",
"reply_mentions.reply_empty": "Antwort auf einen Beitrag", "reply_mentions.reply_empty": "Antwort auf einen Beitrag",
"report.block": "{target} blockieren.", "report.block": "{target} blockieren.",
"report.block_hint": "Soll dieses Konto zusammen mit der Meldung auch gleich blockiert werden?", "report.block_hint": "Soll dieses Konto zusammen mit der Meldung auch gleich blockiert werden?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Άκυρο", "reply_indicator.cancel": "Άκυρο",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,8 @@
"reply_indicator.cancel": "𐑒𐑨𐑯𐑕𐑩𐑤", "reply_indicator.cancel": "𐑒𐑨𐑯𐑕𐑩𐑤",
"reply_mentions.account.add": "𐑨𐑛 𐑑 𐑥𐑧𐑯𐑖𐑩𐑯𐑟", "reply_mentions.account.add": "𐑨𐑛 𐑑 𐑥𐑧𐑯𐑖𐑩𐑯𐑟",
"reply_mentions.account.remove": "𐑮𐑦𐑥𐑵𐑝 𐑓𐑮𐑪𐑥 𐑥𐑧𐑯𐑖𐑩𐑯𐑟", "reply_mentions.account.remove": "𐑮𐑦𐑥𐑵𐑝 𐑓𐑮𐑪𐑥 𐑥𐑧𐑯𐑖𐑩𐑯𐑟",
"reply_mentions.more": "𐑯 {count} 𐑥𐑹", "reply_mentions.more": "{count} 𐑥𐑹",
"reply_mentions.reply": "𐑮𐑦𐑐𐑤𐑲𐑦𐑙 𐑑 {accounts}{more}", "reply_mentions.reply": "𐑮𐑦𐑐𐑤𐑲𐑦𐑙 𐑑 {accounts}",
"reply_mentions.reply_empty": "𐑮𐑦𐑐𐑤𐑲𐑦𐑙 𐑑 𐑐𐑴𐑕𐑑", "reply_mentions.reply_empty": "𐑮𐑦𐑐𐑤𐑲𐑦𐑙 𐑑 𐑐𐑴𐑕𐑑",
"report.block": "𐑚𐑤𐑪𐑒 {target}", "report.block": "𐑚𐑤𐑪𐑒 {target}",
"report.block_hint": "𐑛𐑵 𐑿 𐑷𐑤𐑕𐑴 𐑢𐑪𐑯𐑑 𐑑 𐑚𐑤𐑪𐑒 𐑞𐑦𐑕 𐑩𐑒𐑬𐑯𐑑?", "report.block_hint": "𐑛𐑵 𐑿 𐑷𐑤𐑕𐑴 𐑢𐑪𐑯𐑑 𐑑 𐑚𐑤𐑪𐑒 𐑞𐑦𐑕 𐑩𐑒𐑬𐑯𐑑?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "Cancel",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Nuligi", "reply_indicator.cancel": "Nuligi",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Tühista", "reply_indicator.cancel": "Tühista",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Utzi", "reply_indicator.cancel": "Utzi",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "لغو", "reply_indicator.cancel": "لغو",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Peruuta", "reply_indicator.cancel": "Peruuta",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Annuler", "reply_indicator.cancel": "Annuler",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "Cancel",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,8 @@
"reply_indicator.cancel": "ביטול", "reply_indicator.cancel": "ביטול",
"reply_mentions.account.add": "הוסף לאזכורים", "reply_mentions.account.add": "הוסף לאזכורים",
"reply_mentions.account.remove": "הסר מהאזכורים", "reply_mentions.account.remove": "הסר מהאזכורים",
"reply_mentions.more": "ו-{count} עוד", "reply_mentions.more": "{count} עוד",
"reply_mentions.reply": "משיב ל-{accounts}{more}", "reply_mentions.reply": "משיב ל-{accounts}",
"reply_mentions.reply_empty": "משיב לפוסט", "reply_mentions.reply_empty": "משיב לפוסט",
"report.block": "חסום {target}", "report.block": "חסום {target}",
"report.block_hint": "האם גם אתה רוצה לחסום את החשבון הזה?", "report.block_hint": "האם גם אתה רוצה לחסום את החשבון הזה?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "Cancel",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Otkaži", "reply_indicator.cancel": "Otkaži",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Mégsem", "reply_indicator.cancel": "Mégsem",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Չեղարկել", "reply_indicator.cancel": "Չեղարկել",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Batal", "reply_indicator.cancel": "Batal",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Nihiligar", "reply_indicator.cancel": "Nihiligar",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -788,8 +788,8 @@
"reply_indicator.cancel": "Hætta við", "reply_indicator.cancel": "Hætta við",
"reply_mentions.account.add": "Bæta við í tilvísanirnar", "reply_mentions.account.add": "Bæta við í tilvísanirnar",
"reply_mentions.account.remove": "Fjarlægja úr tilvísunum", "reply_mentions.account.remove": "Fjarlægja úr tilvísunum",
"reply_mentions.more": "og {count} fleirum", "reply_mentions.more": "{count} fleirum",
"reply_mentions.reply": "Að svara {accounts}{more}", "reply_mentions.reply": "Að svara {accounts}",
"reply_mentions.reply_empty": "Að svara færslu", "reply_mentions.reply_empty": "Að svara færslu",
"report.block": "Loka á {target}", "report.block": "Loka á {target}",
"report.block_hint": "Viltu líka loka á þennan reikning?", "report.block_hint": "Viltu líka loka á þennan reikning?",

Wyświetl plik

@ -859,8 +859,8 @@
"reply_indicator.cancel": "Annulla", "reply_indicator.cancel": "Annulla",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from mentions", "reply_mentions.account.remove": "Remove from mentions",
"reply_mentions.more": "e ancora {count}", "reply_mentions.more": "ancora {count}",
"reply_mentions.reply": "Risponde a {accounts}{more}", "reply_mentions.reply": "Risponde a {accounts}",
"reply_mentions.reply_empty": "Rispondendo al contenuto", "reply_mentions.reply_empty": "Rispondendo al contenuto",
"report.block": "Blocca {target}", "report.block": "Blocca {target}",
"report.block_hint": "Vuoi anche bloccare questa persona?", "report.block_hint": "Vuoi anche bloccare questa persona?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "キャンセル", "reply_indicator.cancel": "キャンセル",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "{target}さんをブロック", "report.block": "{target}さんをブロック",
"report.block_hint": "このアカウントをブロックしますか?", "report.block_hint": "このアカウントをブロックしますか?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "უარყოფა", "reply_indicator.cancel": "უარყოფა",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Қайтып алу", "reply_indicator.cancel": "Қайтып алу",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "취소", "reply_indicator.cancel": "취소",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "Cancel",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "Cancel",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "Cancel",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "Cancel",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Annuleren", "reply_indicator.cancel": "Annuleren",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "Cancel",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Avbryt", "reply_indicator.cancel": "Avbryt",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Anullar", "reply_indicator.cancel": "Anullar",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -876,8 +876,8 @@
"reply_indicator.cancel": "Anuluj", "reply_indicator.cancel": "Anuluj",
"reply_mentions.account.add": "Dodaj do wspomnianych", "reply_mentions.account.add": "Dodaj do wspomnianych",
"reply_mentions.account.remove": "Usuń z wspomnianych", "reply_mentions.account.remove": "Usuń z wspomnianych",
"reply_mentions.more": "i {count} więcej", "reply_mentions.more": "{count} więcej",
"reply_mentions.reply": "W odpowiedzi do {accounts}{more}", "reply_mentions.reply": "W odpowiedzi do {accounts}",
"reply_mentions.reply_empty": "W odpowiedzi na wpis", "reply_mentions.reply_empty": "W odpowiedzi na wpis",
"report.block": "Zablokuj {target}", "report.block": "Zablokuj {target}",
"report.block_hint": "Czy chcesz też zablokować to konto?", "report.block_hint": "Czy chcesz też zablokować to konto?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Bloquear {target}", "report.block": "Bloquear {target}",
"report.block_hint": "Desejas também bloquear esta conta?", "report.block_hint": "Desejas também bloquear esta conta?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Anulează", "reply_indicator.cancel": "Anulează",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Отмена", "reply_indicator.cancel": "Отмена",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Zrušiť", "reply_indicator.cancel": "Zrušiť",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Prekliči", "reply_indicator.cancel": "Prekliči",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Anuloje", "reply_indicator.cancel": "Anuloje",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Poništi", "reply_indicator.cancel": "Poništi",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Поништи", "reply_indicator.cancel": "Поништи",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Ångra", "reply_indicator.cancel": "Ångra",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "எதிராணை", "reply_indicator.cancel": "எதிராணை",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "రద్దు చెయ్యి", "reply_indicator.cancel": "రద్దు చెయ్యి",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "ยกเลิก", "reply_indicator.cancel": "ยกเลิก",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "İptal", "reply_indicator.cancel": "İptal",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "Відмінити", "reply_indicator.cancel": "Відмінити",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "取消", "reply_indicator.cancel": "取消",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "屏蔽帐号 {target}", "report.block": "屏蔽帐号 {target}",
"report.block_hint": "你是否也要屏蔽这个帐号呢?", "report.block_hint": "你是否也要屏蔽这个帐号呢?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "取消", "reply_indicator.cancel": "取消",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",

Wyświetl plik

@ -859,8 +859,6 @@
"reply_indicator.cancel": "取消", "reply_indicator.cancel": "取消",
"reply_mentions.account.add": "Add to mentions", "reply_mentions.account.add": "Add to mentions",
"reply_mentions.account.remove": "Remove from 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", "reply_mentions.reply_empty": "Replying to post",
"report.block": "Block {target}", "report.block": "Block {target}",
"report.block_hint": "Do you also want to block this account?", "report.block_hint": "Do you also want to block this account?",