edited features/configuration and associated translations

merge-requests/107/merge
crockwave 4 years ago
parent eef32c96e3
commit 34c87bca7e

@ -12,13 +12,15 @@ import {
Checkbox,
FileChooser,
} from 'soapbox/features/forms';
import BrandingPreview from './components/branding_preview';
// import BrandingPreview from './components/branding_preview';
import StillImage from 'soapbox/components/still_image';
import {
Map as ImmutableMap,
List as ImmutableList,
} from 'immutable';
import { patchMe } from 'soapbox/actions/me';
import { unescape } from 'lodash';
import { generateThemeCss } from 'soapbox/utils/theme';
const MAX_FIELDS = 6; // Max promoPanel fields
@ -33,24 +35,25 @@ const messages = defineMessages({
const mapStateToProps = state => {
const soapbox = state.get('soapbox');
console.log(soapbox);
console.log(generateThemeCss(soapbox.get('brandColor')));
console.log(soapbox.get('logo'));
console.log(soapbox.get('promoPanel'));
console.log(soapbox.get('extensions'));
console.log(soapbox.get('defaultSettings'));
console.log(soapbox.get('copyright'));
console.log(soapbox.get('navLinks'));
return {
themeCss: generateThemeCss(state.getIn(['soapbox', 'brandColor'])),
logo: state.getIn(['soapbox', 'logo']),
promoPanel: state.getIn(['soapbox', 'promoPanel', 'items']),
patronEnabled: state.getIn(['soapbox', 'extensions', 'patron', 'enabled']),
autoPlayGif: state.getIn(['soapbox', 'defaultSettings', 'autoPlayGif']),
copyright: state.getIn(['soapbox', 'copyright']),
homeFooter: state.getIn(['soapbox', 'navLinks', 'homeFooter']),
themeCss: generateThemeCss(soapbox.get('brandColor')),
logo: soapbox.get('logo'),
promoPanel: soapbox.get('promoPanel'),
patronEnabled: soapbox.get('extensions'),
autoPlayGif: soapbox.get('defaultSettings'),
copyright: soapbox.get('copyright'),
homeFooter: soapbox.get('navLinks'),
};
};
// Forces fields to be MAX_SIZE, filling empty values
const normalizeFields = fields => (
ImmutableList(fields).setSize(MAX_FIELDS).map(field =>
field ? field : ImmutableMap({ name: '', value: '' })
)
);
// HTML unescape for special chars, eg <br>
const unescapeParams = (map, params) => (
params.reduce((map, param) => (
@ -59,44 +62,35 @@ const unescapeParams = (map, params) => (
);
export default @connect(mapStateToProps)
// export default @connect()
@injectIntl
class ConfigSoapbox extends ImmutablePureComponent {
static propTypes = {
dispatch: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
themeCss: PropTypes.text,
logo: PropTypes.object,
themeCss: PropTypes.string,
logo: PropTypes.string,
promoPanel: ImmutablePropTypes.map,
patronEnabled: PropTypes.Boolean,
autoPlayGif: PropTypes.Boolean,
copyright: PropTypes.text,
patronEnabled: PropTypes.object,
autoPlayGif: PropTypes.object,
copyright: PropTypes.string,
homeFooter: ImmutablePropTypes.map,
};
state = {
isLoading: false,
promoPanel: normalizeFields(Array.from({ length: MAX_FIELDS })),
}
constructor(props) {
super(props);
const initialState = props.withMutations(map => {
map.merge(map.get('source'));
map.delete('source');
map.set('promoPanel', normalizeFields(map.get('promoPanel')));
});
this.state = initialState.toObject();
// promoPanel: normalizeFields(Array.from({ length: MAX_FIELDS })),
}
makePreviewLogo = () => {
const { account } = this.props;
return account.merge(ImmutableMap({
header: this.state.header,
avatar: this.state.avatar,
display_name: this.state.display_name,
}));
}
// makePreviewLogo = () => {
// const { logo } = this.props;
// return logo.merge(ImmutableMap({
// header: this.state.header,
// avatar: this.state.avatar,
// display_name: this.state.display_name,
// }));
// }
getPromoPanelParams = () => {
let params = ImmutableMap();
@ -152,7 +146,7 @@ class ConfigSoapbox extends ImmutablePureComponent {
handlePromoPanelChange = (i, key) => {
return (e) => {
this.setState({
fields: this.state.fields.setIn([i, key], e.target.value),
promoPanel: this.state.promoPanel.setIn([i, key], e.target.value),
});
};
}
@ -177,46 +171,46 @@ class ConfigSoapbox extends ImmutablePureComponent {
<fieldset disabled={this.state.isLoading}>
<FieldsGroup>
<TextInput
label={<FormattedMessage id='edit_profile.fields.display_name_label' defaultMessage='Display name' />}
label={<FormattedMessage id='soapbox_settings.fields.display_name_label' defaultMessage='Display name' />}
name='display_name'
value={this.state.display_name}
onChange={this.handleTextChange}
/>
<TextInput
label={<FormattedMessage id='edit_profile.fields.bio_label' defaultMessage='Bio' />}
label={<FormattedMessage id='soapbox_settings.fields.bio_label' defaultMessage='Bio' />}
name='note'
value={this.state.note}
onChange={this.handleTextChange}
/>
<div className='fields-row'>
<div className='fields-row__column fields-row__column-6'>
<ProfilePreview account={this.makePreviewLogo()} />
<StillImage src={this.state.logo} />
</div>
<div className='fields-row__column fields-group fields-row__column-6'>
<FileChooser
label={<FormattedMessage id='edit_profile.fields.header_label' defaultMessage='Header' />}
label={<FormattedMessage id='soapbox_settings.fields.header_label' defaultMessage='Header' />}
name='header'
hint={<FormattedMessage id='edit_profile.hints.header' defaultMessage='PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px' />}
hint={<FormattedMessage id='soapbox_settings.hints.header' defaultMessage='PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px' />}
onChange={this.handleFileChange}
/>
<FileChooser
label={<FormattedMessage id='edit_profile.fields.avatar_label' defaultMessage='Avatar' />}
label={<FormattedMessage id='soapbox_settings.fields.avatar_label' defaultMessage='Avatar' />}
name='avatar'
hint={<FormattedMessage id='edit_profile.hints.avatar' defaultMessage='PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px' />}
hint={<FormattedMessage id='soapbox_settings.hints.avatar' defaultMessage='PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px' />}
onChange={this.handleFileChange}
/>
</div>
</div>
<Checkbox
label={<FormattedMessage id='edit_profile.fields.locked_label' defaultMessage='Lock account' />}
hint={<FormattedMessage id='edit_profile.hints.locked' defaultMessage='Requires you to manually approve followers' />}
label={<FormattedMessage id='soapbox_settings.fields.locked_label' defaultMessage='Lock account' />}
hint={<FormattedMessage id='soapbox_settings.hints.locked' defaultMessage='Requires you to manually approve followers' />}
name='locked'
checked={this.state.locked}
onChange={this.handleCheckboxChange}
/>
<Checkbox
label={<FormattedMessage id='edit_profile.fields.bot_label' defaultMessage='This is a bot account' />}
hint={<FormattedMessage id='edit_profile.hints.bot' defaultMessage='This account mainly performs automated actions and might not be monitored' />}
label={<FormattedMessage id='soapbox_settings.fields.bot_label' defaultMessage='This is a bot account' />}
hint={<FormattedMessage id='soapbox_settings.hints.bot' defaultMessage='This account mainly performs automated actions and might not be monitored' />}
name='bot'
checked={this.state.bot}
onChange={this.handleCheckboxChange}
@ -225,12 +219,12 @@ class ConfigSoapbox extends ImmutablePureComponent {
<FieldsGroup>
<div className='fields-row__column fields-group'>
<div className='input with_block_label'>
<label><FormattedMessage id='edit_profile.fields.meta_fields_label' defaultMessage='Profile metadata' /></label>
<label><FormattedMessage id='soapbox_settings.fields.meta_fields_label' defaultMessage='Profile metadata' /></label>
<span className='hint'>
<FormattedMessage id='edit_profile.hints.meta_fields' defaultMessage='You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile' values={{ count: MAX_FIELDS }} />
<FormattedMessage id='soapbox_settings.hints.meta_fields' defaultMessage='You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile' values={{ count: MAX_FIELDS }} />
</span>
{
this.state.fields.map((field, i) => (
this.state.promoPanel.map((field, i) => (
<div className='row' key={i}>
<TextInput
placeholder={intl.formatMessage(messages.metaFieldLabel)}
@ -251,7 +245,7 @@ class ConfigSoapbox extends ImmutablePureComponent {
</fieldset>
<div className='actions'>
<button name='button' type='submit' className='btn button button-primary'>
<FormattedMessage id='edit_profile.save' defaultMessage='Save' />
<FormattedMessage id='soapbox_settings.save' defaultMessage='Save' />
</button>
</div>
</SimpleForm>

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "الخيط العام الموحد",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "العودة",
"column_header.hide_settings": "إخفاء الإعدادات",
"column_header.show_settings": "عرض الإعدادات",
@ -171,6 +172,7 @@
"follow_request.reject": "رفض",
"getting_started.heading": "استعدّ للبدء",
"getting_started.open_source_notice": "{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# يوم} other {# أيام}}",
"intervals.full.hours": "{number, plural, one {# ساعة} other {# ساعات}}",
"intervals.full.minutes": "{number, plural, one {# دقيقة} other {# دقائق}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "للعودة",
"keyboard_shortcuts.blocked": "لفتح قائمة المستخدمين المحظورين",
"keyboard_shortcuts.boost": "للترقية",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "افتح الواجهة الإدارية لـ @{name}",
"status.admin_status": "افتح هذا المنشور على واجهة الإشراف",
"status.block": "احجب @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Llinia temporal federada",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Atrás",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Refugar",
"getting_started.heading": "Entamu",
"getting_started.open_source_notice": "{code_name} ye software de códigu abiertu. Pues collaborar o informar de fallos en {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "pa dir p'atrás",
"keyboard_shortcuts.blocked": "p'abrir la llista d'usuarios bloquiaos",
"keyboard_shortcuts.boost": "pa compartir un toot",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Bloquiar a @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Публичен канал",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Назад",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Reject",
"getting_started.heading": "Първи стъпки",
"getting_started.open_source_notice": "{code_name} е софтуер с отворен код. Можеш да помогнеш или да докладваш за проблеми в GitLab: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "যুক্ত সময়রেখা",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "পেছনে",
"column_header.hide_settings": "সেটিংগুলো সরান",
"column_header.show_settings": "সেটিং দেখান",
@ -171,6 +172,7 @@
"follow_request.reject": "প্রত্যাখ্যান করুন",
"getting_started.heading": "শুরু করা",
"getting_started.open_source_notice": "{code_name} একটি মুক্ত সফটওয়্যার। তৈরিতে সাহায্য করতে বা কোনো সমস্যা সম্পর্কে জানাতে আমাদের গিটহাবে যেতে পারেন {code_link} (v{code_version})।",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# ঘটা} other {# ঘটা}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "পেছনে যেতে",
"keyboard_shortcuts.blocked": "বন্ধ করা ব্যবহারকারীদের তালিকা দেখতে",
"keyboard_shortcuts.boost": "সমর্থন করতে",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "@{name} র জন্য পরিচালনার ইন্টারফেসে ঢুকুন",
"status.admin_status": "যায় লেখাটি পরিচালনার ইন্টারফেসে খুলুন",
"status.block": "@{name}কে বন্ধ করুন",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federated timeline",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Back",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Reject",
"getting_started.heading": "Getting started",
"getting_started.open_source_notice": "{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Línia de temps federada",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Enrere",
"column_header.hide_settings": "Amaga la configuració",
"column_header.show_settings": "Mostra la configuració",
@ -171,6 +172,7 @@
"follow_request.reject": "Rebutjar",
"getting_started.heading": "Començant",
"getting_started.open_source_notice": "{code_name} és un programari de codi obert. Pots contribuir o informar de problemes a {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# dia} other {# dies}}",
"intervals.full.hours": "{number, plural, one {# hora} other {# hores}}",
"intervals.full.minutes": "{number, plural, one {# minut} other {# minuts}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "navegar enrera",
"keyboard_shortcuts.blocked": "per obrir la llista d'usuaris bloquejats",
"keyboard_shortcuts.boost": "impulsar",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Obre l'interfície de moderació per a @{name}",
"status.admin_status": "Obre aquest toot a la interfície de moderació",
"status.block": "Bloqueja @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Linea pubblica glubale",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Ritornu",
"column_header.hide_settings": "Piattà i parametri",
"column_header.show_settings": "Mustrà i parametri",
@ -171,6 +172,7 @@
"follow_request.reject": "Righjittà",
"getting_started.heading": "Per principià",
"getting_started.open_source_notice": "{code_name} ghjè un lugiziale liberu. Pudete cuntribuisce à u codice o a traduzione, o palisà un bug, nant'à GitLab: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# ghjornu} other {# ghjorni}}",
"intervals.full.hours": "{number, plural, one {# ora} other {# ore}}",
"intervals.full.minutes": "{number, plural, one {# minuta} other {# minute}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "rivultà",
"keyboard_shortcuts.blocked": "per apre una lista d'utilizatori bluccati",
"keyboard_shortcuts.boost": "sparte",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Apre l'interfaccia di muderazione per @{name}",
"status.admin_status": "Apre stu statutu in l'interfaccia di muderazione",
"status.block": "Bluccà @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preference",
"column.public": "Federovaná zeď",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Zpět",
"column_header.hide_settings": "Skrýt nastavení",
"column_header.show_settings": "Zobrazit nastavení",
@ -171,6 +172,7 @@
"follow_request.reject": "Odmítnout",
"getting_started.heading": "Začínáme",
"getting_started.open_source_notice": "{code_name} je otevřený software. Na GitLabu k němu můžete přispět nebo nahlásit chyby: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "Tato skupina nemá členy.",
"group.removed_accounts.empty": "Tato skupina nemá žádné odstraněné členy.",
"groups.card.join": "Připojit se",
@ -179,13 +181,21 @@
"groups.card.roles.member": "Jsi admin",
"groups.card.view": "Zobrazit",
"groups.create": "Vytvořit skupinu",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Nahrát nový banner (nepovinný)",
"groups.form.coverImageChange": "Banner vybrán",
"groups.form.create": "Vytvořit skupinu",
"groups.form.description": "Popis",
"groups.form.title": "Jméno",
"groups.form.update": "Upravit skupinu",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Odstranit účty",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Člen",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# den} few {# dny} many {# dne} other {# dní}}",
"intervals.full.hours": "{number, plural, one {# hodina} few {# hodiny} many {# hodiny} other {# hodin}}",
"intervals.full.minutes": "{number, plural, one {# minuta} few {# minuty} many {# minuty} other {# minut}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "k návratu zpět",
"keyboard_shortcuts.blocked": "k otevření seznamu blokovaných uživatelů",
"keyboard_shortcuts.boost": "k boostnutí",
@ -401,6 +424,24 @@
"security.update_password.success": "Heslo úspěšně změněno.",
"signup_panel.subtitle": "Registrujte se pro diskuzi.",
"signup_panel.title": "Nový na {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Otevřít moderátorské rozhraní pro uživatele @{name}",
"status.admin_status": "Otevřít tento toot v moderátorském rozhraní",
"status.block": "Zablokovat uživatele @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Ffrwd y ffederasiwn",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Nôl",
"column_header.hide_settings": "Cuddio dewisiadau",
"column_header.show_settings": "Dangos gosodiadau",
@ -171,6 +172,7 @@
"follow_request.reject": "Gwrthod",
"getting_started.heading": "Dechrau",
"getting_started.open_source_notice": "Mae {code_name} yn feddalwedd côd agored. Mae modd cyfrannu neu adrodd materion ar GitLab ar {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# ddydd} other {# o ddyddiau}}",
"intervals.full.hours": "{number, plural, one {# awr} other {# o oriau}}",
"intervals.full.minutes": "{number, plural, one {# funud} other {# o funudau}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "i lywio nôl",
"keyboard_shortcuts.blocked": "i agor rhestr defnyddwyr a flociwyd",
"keyboard_shortcuts.boost": "i fŵstio",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Agor rhyngwyneb goruwchwylio ar gyfer @{name}",
"status.admin_status": "Agor y tŵt yn y rhyngwyneb goruwchwylio",
"status.block": "Blocio @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Fælles tidslinje",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Tilbage",
"column_header.hide_settings": "Skjul indstillinger",
"column_header.show_settings": "Vis indstillinger",
@ -171,6 +172,7 @@
"follow_request.reject": "Afvis",
"getting_started.heading": "Kom igang",
"getting_started.open_source_notice": "{code_name} er et open source software. Du kan bidrage eller rapporterer fejl på GitLab {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# dag} other {# dage}}",
"intervals.full.hours": "{number, plural, one {# time} other {# timer}}",
"intervals.full.minutes": "{number, plural, one {# minut} other {# minutter}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "for at navigere dig tilbage",
"keyboard_shortcuts.blocked": "for at åbne listen over blokerede brugere",
"keyboard_shortcuts.boost": "for at fremhæve",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Åben modereringsvisning for @{name}",
"status.admin_status": "Åben denne status i modereringsvisningen",
"status.block": "Bloker @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Einstellungen",
"column.public": "Föderierte Zeitleiste",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Zurück",
"column_header.hide_settings": "Einstellungen verbergen",
"column_header.show_settings": "Einstellungen anzeigen",
@ -171,6 +172,7 @@
"follow_request.reject": "Ablehnen",
"getting_started.heading": "Erste Schritte",
"getting_started.open_source_notice": "{code_name} ist quelloffene Software. Du kannst auf GitLab unter {code_link} (v{code_version}) mitarbeiten oder Probleme melden.",
"group.detail.archived_group": "Archived group",
"group.members.empty": "Diese Gruppe hat noch keine Mitglieder.",
"group.removed_accounts.empty": "Niemand wurde aus dieser Gruppe entfernt.",
"groups.card.join": "Beitreten",
@ -179,13 +181,21 @@
"groups.card.roles.member": "Mitglied dieser Gruppe",
"groups.card.view": "Ansehen",
"groups.create": "Gruppe erstellen",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Neues Titelbild hochladen (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Gruppe erstellen",
"groups.form.description": "Gruppenbeschreibung",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Mitglied",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# Tag} other {# Tage}}",
"intervals.full.hours": "{number, plural, one {# Stunde} other {# Stunden}}",
"intervals.full.minutes": "{number, plural, one {# Minute} other {# Minuten}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "zurück navigieren",
"keyboard_shortcuts.blocked": "Liste blockierter Profile öffnen",
"keyboard_shortcuts.boost": "teilen",
@ -401,6 +424,24 @@
"security.update_password.success": "Das Passwort wurde erfolgreich geändert.",
"signup_panel.subtitle": "Jetzt anmelden, um mitzureden.",
"signup_panel.title": "Neu auf {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Öffne Moderationsoberfläche für @{name}",
"status.admin_status": "Öffne Beitrag in der Moderationsoberfläche",
"status.block": "Blockiere @{name}",

@ -38,6 +38,15 @@
],
"path": "app/soapbox/actions/notifications.json"
},
{
"descriptors": [
{
"defaultMessage": "Click to see {count} new {count, plural, one {post} other {posts}}",
"id": "status_list.queue_label"
}
],
"path": "app/soapbox/components/__tests__/timeline_queue_button_header-test.json"
},
{
"descriptors": [
{
@ -1403,6 +1412,87 @@
],
"path": "app/soapbox/features/compose/index.json"
},
{
"descriptors": [
{
"defaultMessage": "Soapbox settings",
"id": "column.soapbox_settings"
},
{
"defaultMessage": "Icon",
"id": "soapbox_settings.promo_panel.meta_fields.icon_placeholder"
},
{
"defaultMessage": "Label",
"id": "soapbox_settings.promo_panel.meta_fields.label_placeholder"
},
{
"defaultMessage": "URL",
"id": "soapbox_settings.promo_panel.meta_fields.url_placeholder"
},
{
"defaultMessage": "Label",
"id": "soapbox_settings.home_footer.meta_fields.label_placeholder"
},
{
"defaultMessage": "URL",
"id": "soapbox_settings.home_footer.meta_fields.url_placeholder"
},
{
"defaultMessage": "Display name",
"id": "soapbox_settings.fields.display_name_label"
},
{
"defaultMessage": "Bio",
"id": "soapbox_settings.fields.bio_label"
},
{
"defaultMessage": "Header",
"id": "soapbox_settings.fields.header_label"
},
{
"defaultMessage": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"id": "soapbox_settings.hints.header"
},
{
"defaultMessage": "Avatar",
"id": "soapbox_settings.fields.avatar_label"
},
{
"defaultMessage": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"id": "soapbox_settings.hints.avatar"
},
{
"defaultMessage": "Lock account",
"id": "soapbox_settings.fields.locked_label"
},
{
"defaultMessage": "Requires you to manually approve followers",
"id": "soapbox_settings.hints.locked"
},
{
"defaultMessage": "This is a bot account",
"id": "soapbox_settings.fields.bot_label"
},
{
"defaultMessage": "This account mainly performs automated actions and might not be monitored",
"id": "soapbox_settings.hints.bot"
},
{
"defaultMessage": "Profile metadata",
"id": "soapbox_settings.fields.meta_fields_label"
},
{
"defaultMessage": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"id": "soapbox_settings.hints.meta_fields"
},
{
"defaultMessage": "Save",
"id": "soapbox_settings.save"
}
],
"path": "app/soapbox/features/configuration/index.json"
},
{
"descriptors": [
{
@ -1776,6 +1866,66 @@
],
"path": "app/soapbox/features/groups/removed_accounts/index.json"
},
{
"descriptors": [
{
"defaultMessage": "Groups You're In",
"id": "groups.sidebar-panel.title"
},
{
"defaultMessage": "Show all",
"id": "groups.sidebar-panel.show_all"
}
],
"path": "app/soapbox/features/groups/sidebar_panel/index.json"
},
{
"descriptors": [
{
"defaultMessage": "new posts",
"id": "groups.sidebar-panel.item.view"
},
{
"defaultMessage": "No recent activity",
"id": "groups.sidebar-panel.item.no_recent_activity"
}
],
"path": "app/soapbox/features/groups/sidebar_panel/item.json"
},
{
"descriptors": [
{
"defaultMessage": "Join group",
"id": "groups.join"
},
{
"defaultMessage": "Leave group",
"id": "groups.leave"
},
{
"defaultMessage": "Removed Accounts",
"id": "groups.removed_accounts"
},
{
"defaultMessage": "Edit",
"id": "groups.edit"
}
],
"path": "app/soapbox/features/groups/timeline/components/header.json"
},
{
"descriptors": [
{
"defaultMessage": "Archived group",
"id": "group.detail.archived_group"
},
{
"defaultMessage": "You're an admin",
"id": "groups.detail.role_admin"
}
],
"path": "app/soapbox/features/groups/timeline/components/panel.json"
},
{
"descriptors": [
{
@ -1840,6 +1990,63 @@
],
"path": "app/soapbox/features/home_timeline/index.json"
},
{
"descriptors": [
{
"defaultMessage": "First steps",
"id": "introduction.welcome.headline"
},
{
"defaultMessage": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"id": "introduction.welcome.text"
},
{
"defaultMessage": "Let's go!",
"id": "introduction.welcome.action"
},
{
"defaultMessage": "Home",
"id": "introduction.federation.home.headline"
},
{
"defaultMessage": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"id": "introduction.federation.home.text"
},
{
"defaultMessage": "Next",
"id": "introduction.federation.action"
},
{
"defaultMessage": "Reply",
"id": "introduction.interactions.reply.headline"
},
{
"defaultMessage": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"id": "introduction.interactions.reply.text"
},
{
"defaultMessage": "Repost",
"id": "introduction.interactions.reblog.headline"
},
{
"defaultMessage": "You can share other people's posts with your followers by reposting them.",
"id": "introduction.interactions.reblog.text"
},
{
"defaultMessage": "Favorite",
"id": "introduction.interactions.favourite.headline"
},
{
"defaultMessage": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"id": "introduction.interactions.favourite.text"
},
{
"defaultMessage": "Finish tutorial!",
"id": "introduction.interactions.action"
}
],
"path": "app/soapbox/features/introduction/index.json"
},
{
"descriptors": [
{
@ -2525,6 +2732,47 @@
],
"path": "app/soapbox/features/status/components/action_bar.json"
},
{
"descriptors": [
{
"defaultMessage": "Delete",
"id": "confirmations.delete.confirm"
},
{
"defaultMessage": "Are you sure you want to delete this post?",
"id": "confirmations.delete.message"
},
{
"defaultMessage": "Delete & redraft",
"id": "confirmations.redraft.confirm"
},
{
"defaultMessage": "Are you sure you want to delete this post and re-draft it? Favorites and reposts will be lost, and replies to the original post will be orphaned.",
"id": "confirmations.redraft.message"
},
{
"defaultMessage": "Block",
"id": "confirmations.block.confirm"
},
{
"defaultMessage": "Reply",
"id": "confirmations.reply.confirm"
},
{
"defaultMessage": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
"id": "confirmations.reply.message"
},
{
"defaultMessage": "Block & Report",
"id": "confirmations.block.block_and_report"
},
{
"defaultMessage": "Are you sure you want to block {name}?",
"id": "confirmations.block.message"
}
],
"path": "app/soapbox/features/status/containers/detailed_status_container.json"
},
{
"descriptors": [
{
@ -2676,6 +2924,15 @@
],
"path": "app/soapbox/features/ui/components/embed_modal.json"
},
{
"descriptors": [
{
"defaultMessage": "Follow requests",
"id": "navigation_bar.follow_requests"
}
],
"path": "app/soapbox/features/ui/components/follow_requests_nav_link.json"
},
{
"descriptors": [
{

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Ομοσπονδιακή ροή",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Πίσω",
"column_header.hide_settings": "Απόκρυψη ρυθμίσεων",
"column_header.show_settings": "Εμφάνιση ρυθμίσεων",
@ -171,6 +172,7 @@
"follow_request.reject": "Απέρριψε",
"getting_started.heading": "Αφετηρία",
"getting_started.open_source_notice": "Το {code_name} είναι ελεύθερο λογισμικό. Μπορείς να συνεισφέρεις ή να αναφέρεις ζητήματα στο GitLab στο {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# μέρα} other {# μέρες}}",
"intervals.full.hours": "{number, plural, one {# ώρα} other {# ώρες}}",
"intervals.full.minutes": "{number, plural, one {# λεπτό} other {# λεπτά}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "επιστροφή",
"keyboard_shortcuts.blocked": "άνοιγμα λίστας αποκλεισμένων χρηστών",
"keyboard_shortcuts.boost": "προώθηση",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Άνοιγμα λειτουργίας διαμεσολάβησης για τον/την @{name}",
"status.admin_status": "Άνοιγμα αυτής της δημοσίευσης στη λειτουργία διαμεσολάβησης",
"status.block": "Αποκλεισμός @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federated timeline",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Back",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Reject",
"getting_started.heading": "Getting started",
"getting_started.open_source_notice": "{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Fratara tempolinio",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Reveni",
"column_header.hide_settings": "Kaŝi agordojn",
"column_header.show_settings": "Montri agordojn",
@ -171,6 +172,7 @@
"follow_request.reject": "Rifuzi",
"getting_started.heading": "Por komenci",
"getting_started.open_source_notice": "{code_name} estas malfermitkoda programo. Vi povas kontribui aŭ raporti problemojn en GitLab je {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# tago} other {# tagoj}}",
"intervals.full.hours": "{number, plural, one {# horo} other {# horoj}}",
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutoj}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "por reveni",
"keyboard_shortcuts.blocked": "por malfermi la liston de blokitaj uzantoj",
"keyboard_shortcuts.boost": "por diskonigi",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Malfermi la kontrolan interfacon por @{name}",
"status.admin_status": "Malfermi ĉi tiun mesaĝon en la kontrola interfaco",
"status.block": "Bloki @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Línea temporal federada",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Volver",
"column_header.hide_settings": "Ocultar configuración",
"column_header.show_settings": "Mostrar configuración",
@ -171,6 +172,7 @@
"follow_request.reject": "Rechazar",
"getting_started.heading": "Introducción",
"getting_started.open_source_notice": "{code_name} es software libre. Podés contribuir o informar errores en {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# día} other {# días}}",
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "para volver",
"keyboard_shortcuts.blocked": "para abrir la lista de usuarios bloqueados",
"keyboard_shortcuts.boost": "para retootear",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Abrir interface de moderación para @{name}",
"status.admin_status": "Abrir este estado en la interface de moderación",
"status.block": "Bloquear a @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Línea de tiempo federada",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Atrás",
"column_header.hide_settings": "Ocultar configuración",
"column_header.show_settings": "Mostrar ajustes",
@ -171,6 +172,7 @@
"follow_request.reject": "Rechazar",
"getting_started.heading": "Primeros pasos",
"getting_started.open_source_notice": "{code_name} es software libre. Puedes contribuir o reportar errores en {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# día} other {# días}}",
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "volver atrás",
"keyboard_shortcuts.blocked": "abrir una lista de usuarios bloqueados",
"keyboard_shortcuts.boost": "retootear",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Abrir interfaz de moderación para @{name}",
"status.admin_status": "Abrir este estado en la interfaz de moderación",
"status.block": "Bloquear a @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Föderatiivne ajajoon",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Tagasi",
"column_header.hide_settings": "Peida sätted",
"column_header.show_settings": "Näita sätteid",
@ -171,6 +172,7 @@
"follow_request.reject": "Hülga",
"getting_started.heading": "Alustamine",
"getting_started.open_source_notice": "{code_name} on avatud lähtekoodiga tarkvara. Saad panustada või teatada probleemidest GitLabis {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# päev} other {# päevad}}",
"intervals.full.hours": "{number, plural, one {# tund} other {# tundi}}",
"intervals.full.minutes": "{number, plural, one {# minut} other {# minutit}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "tagasiminekuks",
"keyboard_shortcuts.blocked": "avamaks blokeeritud kasutajate nimistut",
"keyboard_shortcuts.boost": "upitamiseks",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Ava moderaatoriliides kasutajale @{name}",
"status.admin_status": "Ava see staatus moderaatoriliites",
"status.block": "Blokeeri @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federatutako denbora-lerroa",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Atzera",
"column_header.hide_settings": "Ezkutatu ezarpenak",
"column_header.show_settings": "Erakutsi ezarpenak",
@ -171,6 +172,7 @@
"follow_request.reject": "Ukatu",
"getting_started.heading": "Menua",
"getting_started.open_source_notice": "{code_name} software librea da. Ekarpenak egin ditzakezu edo akatsen berri eman GitLab bidez: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {egun #} other {# egun}}",
"intervals.full.hours": "{number, plural, one {ordu #} other {# ordu}}",
"intervals.full.minutes": "{number, plural, one {minutu #} other {# minutu}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "atzera nabigatzeko",
"keyboard_shortcuts.blocked": "blokeatutako erabiltzaileen zerrenda irekitzeko",
"keyboard_shortcuts.boost": "bultzada ematea",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Ireki @{name} erabiltzailearen moderazio interfazea",
"status.admin_status": "Ireki mezu hau moderazio interfazean",
"status.block": "Blokeatu @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "نوشته‌های همه‌جا",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "بازگشت",
"column_header.hide_settings": "نهفتن تنظیمات",
"column_header.show_settings": "نمایش تنظیمات",
@ -171,6 +172,7 @@
"follow_request.reject": "اجازه ندهید",
"getting_started.heading": "آغاز کنید",
"getting_started.open_source_notice": "ماستدون یک نرم‌افزار آزاد است. می‌توانید در ساخت آن مشارکت کنید یا مشکلاتش را در {code_link} (v{code_version}) گزارش دهید.",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# روز} other {# روز}}",
"intervals.full.hours": "{number, plural, one {# ساعت} other {# ساعت}}",
"intervals.full.minutes": "{number, plural, one {# دقیقه} other {# دقیقه}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "برای بازگشت",
"keyboard_shortcuts.blocked": "برای گشودن کاربران بی‌صداشده",
"keyboard_shortcuts.boost": "برای بازبوقیدن",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "محیط مدیریت مربوط به @{name} را باز کن",
"status.admin_status": "این نوشته را در محیط مدیریت باز کن",
"status.block": "مسدودسازی @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Yleinen aikajana",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Takaisin",
"column_header.hide_settings": "Piilota asetukset",
"column_header.show_settings": "Näytä asetukset",
@ -171,6 +172,7 @@
"follow_request.reject": "Hylkää",
"getting_started.heading": "Aloitus",
"getting_started.open_source_notice": "{code_name} on avoimen lähdekoodin ohjelma. Voit avustaa tai raportoida ongelmia GitLabissa: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "liiku taaksepäin",
"keyboard_shortcuts.blocked": "avaa lista estetyistä käyttäjistä",
"keyboard_shortcuts.boost": "buustaa",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Avaa moderaattorinäkymä tilistä @{name}",
"status.admin_status": "Avaa tilapäivitys moderaattorinäkymässä",
"status.block": "Estä @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Fil public global",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Retour",
"column_header.hide_settings": "Masquer les paramètres",
"column_header.show_settings": "Afficher les paramètres",
@ -171,6 +172,7 @@
"follow_request.reject": "Rejeter",
"getting_started.heading": "Pour commencer",
"getting_started.open_source_notice": "{code_name} est un logiciel libre. Vous pouvez contribuer et envoyer vos commentaires et rapports de bogues via {code_link} (v{code_version}) sur GitLab.",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# jour} other {# jours}}",
"intervals.full.hours": "{number, plural, one {# heure} other {# heures}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "pour revenir en arrière",
"keyboard_shortcuts.blocked": "pour ouvrir une liste dutilisateur·rice·s bloqué·e·s",
"keyboard_shortcuts.boost": "pour partager",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Ouvrir linterface de modération pour @{name}",
"status.admin_status": "Ouvrir ce statut dans linterface de modération",
"status.block": "Bloquer @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federated timeline",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Back",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Reject",
"getting_started.heading": "Getting started",
"getting_started.open_source_notice": "{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Liña temporal federada",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Atrás",
"column_header.hide_settings": "Agochar axustes",
"column_header.show_settings": "Mostras axustes",
@ -171,6 +172,7 @@
"follow_request.reject": "Rexeitar",
"getting_started.heading": "Comezando",
"getting_started.open_source_notice": "{code_name} é software de código aberto. Pode contribuír ou informar de fallos en {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural,one {# día} other {# días}}",
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "voltar atrás",
"keyboard_shortcuts.blocked": "abrir lista de usuarias bloqueadas",
"keyboard_shortcuts.boost": "promover",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Abrir interface de moderación para @{name}",
"status.admin_status": "Abrir este estado na interface de moderación",
"status.block": "Bloquear @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "בפרהסיה",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "חזרה",
"column_header.hide_settings": "הסתרת העדפות",
"column_header.show_settings": "הצגת העדפות",
@ -171,6 +172,7 @@
"follow_request.reject": "דחיה",
"getting_started.heading": "בואו נתחיל",
"getting_started.open_source_notice": "מסטודון היא תוכנה חופשית (בקוד פתוח). ניתן לתרום או לדווח על בעיות בגיטהאב: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "ניווט חזרה",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "להדהד",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federated timeline",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Back",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Reject",
"getting_started.heading": "Getting started",
"getting_started.open_source_notice": "{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federalni timeline",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Natrag",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Odbij",
"getting_started.heading": "Počnimo",
"getting_started.open_source_notice": "{code_name} je softver otvorenog koda. Možeš pridonijeti ili prijaviti probleme na GitLabu {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Nyilvános idővonal",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Vissza",
"column_header.hide_settings": "Beállítások elrejtése",
"column_header.show_settings": "Beállítások mutatása",
@ -171,6 +172,7 @@
"follow_request.reject": "Visszautasítás",
"getting_started.heading": "Első lépések",
"getting_started.open_source_notice": "A {code_name} nyílt forráskódú szoftver. Csatlakozhatsz a fejlesztéshez vagy jelenthetsz problémákat GitLab-on {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# nap} other {# nap}}",
"intervals.full.hours": "{number, plural, one {# óra} other {# óra}}",
"intervals.full.minutes": "{number, plural, one {# perc} other {# perc}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "visszafelé navigálás",
"keyboard_shortcuts.blocked": "letiltott felhasználók listájának megnyitása",
"keyboard_shortcuts.boost": "megtolás",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Moderáció megnyitása @{name} felhasználóhoz",
"status.admin_status": "Tülk megnyitása moderációra",
"status.block": "@{name} letiltása",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Դաշնային հոսք",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Ետ",
"column_header.hide_settings": "Թաքցնել կարգավորումները",
"column_header.show_settings": "Ցուցադրել կարգավորումները",
@ -171,6 +172,7 @@
"follow_request.reject": "Մերժել",
"getting_started.heading": "Ինչպես սկսել",
"getting_started.open_source_notice": "Մաստոդոնը բաց ելատեքստով ծրագրակազմ է։ Կարող ես ներդրում անել կամ վրեպներ զեկուցել ԳիթՀաբում՝ {code_link} (v{code_version})։",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "ետ նավարկելու համար",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "տարածելու համար",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Արգելափակել @{name}֊ին",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Linimasa gabungan",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Kembali",
"column_header.hide_settings": "Sembunyikan pengaturan",
"column_header.show_settings": "Tampilkan pengaturan",
@ -171,6 +172,7 @@
"follow_request.reject": "Tolak",
"getting_started.heading": "Mulai",
"getting_started.open_source_notice": "{code_name} adalah perangkat lunak yang bersifat terbuka. Anda dapat berkontribusi atau melaporkan permasalahan/bug di Gitlab {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, other {# hari}}",
"intervals.full.hours": "{number, plural, other {# jam}}",
"intervals.full.minutes": "{number, plural, other {# menit}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "untuk kembali",
"keyboard_shortcuts.blocked": "buka daftar pengguna terblokir",
"keyboard_shortcuts.boost": "untuk menyebarkan",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federata tempolineo",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Retro",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Refuzar",
"getting_started.heading": "Debuto",
"getting_started.open_source_notice": "{code_name} esas programaro kun apertita kodexo. Tu povas kontributar o signalar problemi en GitLab ye {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Timeline federata",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Indietro",
"column_header.hide_settings": "Nascondi impostazioni",
"column_header.show_settings": "Mostra impostazioni",
@ -171,6 +172,7 @@
"follow_request.reject": "Rifiuta",
"getting_started.heading": "Come iniziare",
"getting_started.open_source_notice": "{code_name} è un software open source. Puoi contribuire o segnalare errori su GitLab all'indirizzo {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# giorno} other {# giorni}}",
"intervals.full.hours": "{number, plural, one {# ora} other {# ore}}",
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minuti}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "per tornare indietro",
"keyboard_shortcuts.blocked": "per aprire l'elenco degli utenti bloccati",
"keyboard_shortcuts.boost": "per condividere",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Apri interfaccia di moderazione per @{name}",
"status.admin_status": "Apri questo status nell'interfaccia di moderazione",
"status.block": "Blocca @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "連合タイムライン",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "戻る",
"column_header.hide_settings": "設定を隠す",
"column_header.show_settings": "設定を表示",
@ -171,6 +172,7 @@
"follow_request.reject": "拒否",
"getting_started.heading": "スタート",
"getting_started.open_source_notice": "{code_name}はオープンソースソフトウェアです。誰でもGitLab ( {code_link} (v{code_version}) ) から開発に参加したり、問題を報告したりできます。",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number}日",
"intervals.full.hours": "{number}時間",
"intervals.full.minutes": "{number}分",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "戻る",
"keyboard_shortcuts.blocked": "ブロックしたユーザーのリストを開く",
"keyboard_shortcuts.boost": "ブースト",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "@{name} のモデレーション画面を開く",
"status.admin_status": "このトゥートをモデレーション画面で開く",
"status.block": "@{name}さんをブロック",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "ფედერალური თაიმლაინი",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "უკან",
"column_header.hide_settings": "პარამეტრების დამალვა",
"column_header.show_settings": "პარამეტრების ჩვენება",
@ -171,6 +172,7 @@
"follow_request.reject": "უარყოფა",
"getting_started.heading": "დაწყება",
"getting_started.open_source_notice": "მასტოდონი ღია პროგრამაა. შეგიძლიათ შეუწყოთ ხელი ან შექმნათ პრობემის რეპორტი {code_link} (v{code_version})-ზე.",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "უკან გადასასვლელად",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "დასაბუსტად",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "დაბლოკე @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Жаһандық желі",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Артқа",
"column_header.hide_settings": "Баптауларды жасыр",
"column_header.show_settings": "Баптауларды көрсет",
@ -171,6 +172,7 @@
"follow_request.reject": "Қабылдамау",
"getting_started.heading": "Желіде",
"getting_started.open_source_notice": "{code_name} - ашық кодты құрылым. Түзету енгізу немесе ұсыныстарды GitLab арқылы жасаңыз {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# күн} other {# күн}}",
"intervals.full.hours": "{number, plural, one {# сағат} other {# сағат}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "артқа қайту",
"keyboard_shortcuts.blocked": "бұғатталғандар тізімін ашу",
"keyboard_shortcuts.boost": "жазба бөлісу",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "@{name} үшін модерация интерфейсін аш",
"status.admin_status": "Бұл жазбаны модерация интерфейсінде аш",
"status.block": "Бұғаттау @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "연합 타임라인",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "돌아가기",
"column_header.hide_settings": "설정 숨기기",
"column_header.show_settings": "설정 보이기",
@ -171,6 +172,7 @@
"follow_request.reject": "거부",
"getting_started.heading": "시작",
"getting_started.open_source_notice": "{code_name}은 오픈 소스 소프트웨어입니다. 누구나 GitLab({code_link} (v{code_version}))에서 개발에 참여하거나, 문제를 보고할 수 있습니다.",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number} 일",
"intervals.full.hours": "{number} 시간",
"intervals.full.minutes": "{number} 분",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "뒤로가기",
"keyboard_shortcuts.blocked": "차단한 유저 리스트 열기",
"keyboard_shortcuts.boost": "부스트",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "@{name}에 대한 모더레이션 인터페이스 열기",
"status.admin_status": "모더레이션 인터페이스에서 이 게시물 열기",
"status.block": "@{name} 차단",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federated timeline",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Back",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Reject",
"getting_started.heading": "Getting started",
"getting_started.open_source_notice": "{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federatīvā laika līnija",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Atpakaļ",
"column_header.hide_settings": "Paslēpt iestatījumus",
"column_header.show_settings": "Rādīt iestatījumus",
@ -171,6 +172,7 @@
"follow_request.reject": "Noraidīt",
"getting_started.heading": "Getting started",
"getting_started.open_source_notice": "{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federated timeline",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Назад",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Reject",
"getting_started.heading": "Getting started",
"getting_started.open_source_notice": "{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federated timeline",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Back",
"column_header.hide_settings": "Hide settings",
"column_header.show_settings": "Show settings",
@ -171,6 +172,7 @@
"follow_request.reject": "Reject",
"getting_started.heading": "Getting started",
"getting_started.open_source_notice": "{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Globale tijdlijn",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Terug",
"column_header.hide_settings": "Instellingen verbergen",
"column_header.show_settings": "Instellingen tonen",
@ -171,6 +172,7 @@
"follow_request.reject": "Afkeuren",
"getting_started.heading": "Aan de slag",
"getting_started.open_source_notice": "{code_name} is vrije software. Je kunt bijdragen of problemen melden op GitLab via {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# dag} other {# dagen}}",
"intervals.full.hours": "{number, plural, one {# uur} other {# uur}}",
"intervals.full.minutes": "{number, plural, one {# minuut} other {# minuten}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "om terug te gaan",
"keyboard_shortcuts.blocked": "om de door jou geblokkeerde gebruikers te tonen",
"keyboard_shortcuts.boost": "om te reposten",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Moderatie-omgeving van @{name} openen",
"status.admin_status": "Deze toot in de moderatie-omgeving openen",
"status.block": "Blokkeer @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federert samtid",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Tilbake",
"column_header.hide_settings": "Skjul innstillingar",
"column_header.show_settings": "Vis innstillingar",
@ -171,6 +172,7 @@
"follow_request.reject": "Reject",
"getting_started.heading": "Komme i gong",
"getting_started.open_source_notice": "{code_name} har åpen kilde kode. Du kan hjelpe til med problemar på GitLab gjennom {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to repost",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Felles tidslinje",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Tilbake",
"column_header.hide_settings": "Gjem innstillinger",
"column_header.show_settings": "Vis innstillinger",
@ -171,6 +172,7 @@
"follow_request.reject": "Avvis",
"getting_started.heading": "Kom i gang",
"getting_started.open_source_notice": "{code_name} er fri programvare. Du kan bidra eller rapportere problemer på GitLab på {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "for å navigere tilbake",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "å fremheve",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Flux public global",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Tornar",
"column_header.hide_settings": "Amagar los paramètres",
"column_header.show_settings": "Mostrar los paramètres",
@ -171,6 +172,7 @@
"follow_request.reject": "Regetar",
"getting_started.heading": "Per començar",
"getting_started.open_source_notice": "{code_name} es un logicial liure. Podètz contribuir e mandar vòstres comentaris e rapòrt de bug via {code_link} (v{code_version}) sus GitLab.",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# jorn} other {# jorns}}",
"intervals.full.hours": "{number, plural, one {# ora} other {# oras}}",
"intervals.full.minutes": "{number, plural, one {# minuta} other {# minutas}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "anar enrèire",
"keyboard_shortcuts.blocked": "dobrir la lista dutilizaires blocats",
"keyboard_shortcuts.boost": "partejar",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Dobrir linterfàcia de moderacion per @{name}",
"status.admin_status": "Dobrir aqueste estatut dins linterfàcia de moderacion",
"status.block": "Blocar @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Globalna oś czasu",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Wróć",
"column_header.hide_settings": "Ukryj ustawienia",
"column_header.show_settings": "Pokaż ustawienia",
@ -171,6 +172,7 @@
"follow_request.reject": "Odrzuć",
"getting_started.heading": "Rozpocznij",
"getting_started.open_source_notice": "{code_name} jest oprogramowaniem o otwartym źródle. Możesz pomóc w rozwoju lub zgłaszać błędy na GitLabie tutaj: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# dzień} few {# dni} many {# dni} other {# dni}}",
"intervals.full.hours": "{number, plural, one {# godzina} few {# godziny} many {# godzin} other {# godzin}}",
"intervals.full.minutes": "{number, plural, one {# minuta} few {# minuty} many {# minut} other {# minut}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "aby cofnąć się",
"keyboard_shortcuts.blocked": "aby przejść do listy zablokowanych użytkowników",
"keyboard_shortcuts.boost": "aby podbić wpis",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Otwórz interfejs moderacyjny dla @{name}",
"status.admin_status": "Otwórz ten wpis w interfejsie moderacyjnym",
"status.block": "Zablokuj @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Global",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Voltar",
"column_header.hide_settings": "Esconder configurações",
"column_header.show_settings": "Mostrar configurações",
@ -171,6 +172,7 @@
"follow_request.reject": "Rejeitar",
"getting_started.heading": "Primeiros passos",
"getting_started.open_source_notice": "{code_name} é um software de código aberto. Você pode contribuir ou reportar problemas na página do GitLab do projeto: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# dia} other {# dias}}",
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "para navegar de volta",
"keyboard_shortcuts.blocked": "para abrir a lista de usuários bloqueados",
"keyboard_shortcuts.boost": "para compartilhar",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Abrir interface de moderação para @{name}",
"status.admin_status": "Abrir esse status na interface de moderação",
"status.block": "Bloquear @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Cronologia federada",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Voltar",
"column_header.hide_settings": "Esconder configurações",
"column_header.show_settings": "Mostrar configurações",
@ -171,6 +172,7 @@
"follow_request.reject": "Rejeitar",
"getting_started.heading": "Primeiros passos",
"getting_started.open_source_notice": "{code_name} é software de código aberto (open source). Podes contribuir ou reportar problemas no GitLab do projecto: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# dia} other {# dias}}",
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "para voltar",
"keyboard_shortcuts.blocked": "para abrir a lista de utilizadores bloqueados",
"keyboard_shortcuts.boost": "para partilhar",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Abrir a interface de moderação para @{name}",
"status.admin_status": "Abrir esta publicação na interface de moderação",
"status.block": "Bloquear @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Flux global",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Înapoi",
"column_header.hide_settings": "Ascunde setările",
"column_header.show_settings": "Arată setările",
@ -171,6 +172,7 @@
"follow_request.reject": "Respinge",
"getting_started.heading": "Începe",
"getting_started.open_source_notice": "{code_name} este o rețea de socializare de tip open source. Puteți contribuii la dezvoltarea ei sau să semnalați erorile pe GitLab la {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "navighează inapoi",
"keyboard_shortcuts.blocked": "să deschidă lista utilizatorilor blocați",
"keyboard_shortcuts.boost": "să redistribuie",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Blochează @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Глобальная лента",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Назад",
"column_header.hide_settings": "Скрыть настройки",
"column_header.show_settings": "Показать настройки",
@ -171,6 +172,7 @@
"follow_request.reject": "Отказать",
"getting_started.heading": "Добро пожаловать",
"getting_started.open_source_notice": "{code_name} — сервис с открытым исходным кодом. Вы можете внести вклад или сообщить о проблемах на GitLab: {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# день} few {# дня} other {# дней}}",
"intervals.full.hours": "{number, plural, one {# час} few {# часа} other {# часов}}",
"intervals.full.minutes": "{number, plural, one {# минута} few {# минуты} other {# минут}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "перейти назад",
"keyboard_shortcuts.blocked": "чтобы открыть список заблокированных",
"keyboard_shortcuts.boost": "продвинуть пост",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Открыть интерфейс модератора для @{name}",
"status.admin_status": "Открыть этот статус в интерфейсе модератора",
"status.block": "Заблокировать @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federovaná časová os",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Späť",
"column_header.hide_settings": "Skryť nastavenia",
"column_header.show_settings": "Ukáž nastavenia",
@ -171,6 +172,7 @@
"follow_request.reject": "Odmietni",
"getting_started.heading": "Začni tu",
"getting_started.open_source_notice": "{code_name} je softvér s otvoreným kódom. Nahlásiť chyby, alebo prispievať môžeš na GitLabe v {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# deň} few {# dní} many {# dní} other {# dní}}",
"intervals.full.hours": "{number, plural, one {# hodina} few {# hodín} many {# hodín} other {# hodín}}",
"intervals.full.minutes": "{number, plural, one {# minúta} few {# minút} many {# minút} other {# minút}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "dostať sa naspäť",
"keyboard_shortcuts.blocked": "otvor zoznam blokovaných užívateľov",
"keyboard_shortcuts.boost": "vyzdvihnúť",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Otvor moderovacie rozhranie užívateľa @{name}",
"status.admin_status": "Otvor tento príspevok v moderovacom rozhraní",
"status.block": "Blokuj @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Združena časovnica",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Nazaj",
"column_header.hide_settings": "Skrij nastavitve",
"column_header.show_settings": "Prikaži nastavitve",
@ -171,6 +172,7 @@
"follow_request.reject": "Zavrni",
"getting_started.heading": "Kako začeti",
"getting_started.open_source_notice": "{code_name} je odprtokodna programska oprema. Na GitLabu na {code_link} (v{code_version}) lahko prispevate ali poročate o napakah.",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# dan} two {# dni} few {# dni} other {# dni}}",
"intervals.full.hours": "{number, plural, one {# ura} two {# uri} few {# ure} other {# ur}}",
"intervals.full.minutes": "{number, plural, one {# minuta} two {# minuti} few {# minute} other {# minut}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "pojdi nazaj",
"keyboard_shortcuts.blocked": "odpri seznam blokiranih uporabnikov",
"keyboard_shortcuts.boost": "spodbudi",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Odpri vmesnik za moderiranje za @{name}",
"status.admin_status": "Odpri status v vmesniku za moderiranje",
"status.block": "Blokiraj @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Rrjedhë kohore e federuar",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Mbrapsht",
"column_header.hide_settings": "Fshihi rregullimet",
"column_header.show_settings": "Shfaq rregullime",
@ -171,6 +172,7 @@
"follow_request.reject": "Hidhe tej",
"getting_started.heading": "Si tia fillohet",
"getting_started.open_source_notice": "{code_name}-i është software me burim të hapur. Mund të jepni ndihmesë ose të njoftoni probleme në GitLab, te {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "për shkuarje mbrapsht",
"keyboard_shortcuts.blocked": "për hapje liste përdoruesish të bllokuar",
"keyboard_shortcuts.boost": "për përfocim",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Hap ndërfaqe moderimi për @{name}",
"status.admin_status": "Hape këtë gjendje te ndërfaqja e moderimit",
"status.block": "Blloko @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federisana lajna",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Nazad",
"column_header.hide_settings": "Sakrij postavke",
"column_header.show_settings": "Prikaži postavke",
@ -171,6 +172,7 @@
"follow_request.reject": "Odbij",
"getting_started.heading": "Da počnete",
"getting_started.open_source_notice": "{code_name} je softver otvorenog koda. Možete mu doprineti ili prijaviti probleme preko GitLab-a na {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "da odete nazad",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "da podržite",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Здружена временска линија",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Назад",
"column_header.hide_settings": "Сакриј поставке",
"column_header.show_settings": "Прикажи поставке",
@ -171,6 +172,7 @@
"follow_request.reject": "Одбиј",
"getting_started.heading": "Да почнете",
"getting_started.open_source_notice": "{code_name} је софтвер отвореног кода. Можете му допринети или пријавити проблеме преко ГитХаба на {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "да одете назад",
"keyboard_shortcuts.blocked": "да отворите листу блокираних корисника",
"keyboard_shortcuts.boost": "да подржите",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "Блокирај @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Förenad tidslinje",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Tillbaka",
"column_header.hide_settings": "Dölj inställningar",
"column_header.show_settings": "Visa inställningar",
@ -171,6 +172,7 @@
"follow_request.reject": "Avvisa",
"getting_started.heading": "Kom igång",
"getting_started.open_source_notice": "{code_name} är programvara med öppen källkod. Du kan bidra eller rapportera problem via GitLab på {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# dag} other {# dagar}}",
"intervals.full.hours": "{number, plural, one {# timme} other {# timmar}}",
"intervals.full.minutes": "{number, plural, one {1 minut} other {# minuter}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "för att gå bakåt",
"keyboard_shortcuts.blocked": "för att öppna listan över blockerade användare",
"keyboard_shortcuts.boost": "för att knuffa",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Öppet modereringsgränssnitt för @{name}",
"status.admin_status": "Öppna denna status i modereringsgränssnittet",
"status.block": "Blockera @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "கூட்டாட்சி காலக்கெடு",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "ஆதரி",
"column_header.hide_settings": "அமைப்புகளை மறை",
"column_header.show_settings": "அமைப்புகளைக் காட்டு",
@ -171,6 +172,7 @@
"follow_request.reject": "விலக்கு",
"getting_started.heading": "தொடங்குதல்",
"getting_started.open_source_notice": "{code_name} திறந்த மூல மென்பொருள். GitLab இல் நீங்கள் பங்களிக்கவோ அல்லது புகார் அளிக்கவோ முடியும் {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} மற்ற {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} மற்ற {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} மற்ற {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "மீண்டும் செல்லவும்",
"keyboard_shortcuts.blocked": "தடுக்கப்பட்ட பயனர்களின் பட்டியலைத் திறக்க",
"keyboard_shortcuts.boost": "அதிகரிக்கும்",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "மிதமான இடைமுகத்தை திறக்க @{name}",
"status.admin_status": "மிதமான இடைமுகத்தில் இந்த நிலையை திறக்கவும்",
"status.block": "Block @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "సమాఖ్య కాలక్రమం",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "వెనక్కి",
"column_header.hide_settings": "అమర్పులను దాచిపెట్టు",
"column_header.show_settings": "అమర్పులను చూపించు",
@ -171,6 +172,7 @@
"follow_request.reject": "తిరస్కరించు",
"getting_started.heading": "మొదలుపెడదాం",
"getting_started.open_source_notice": "మాస్టొడొన్ ఓపెన్ సోర్స్ సాఫ్ట్వేర్. మీరు {code_link} (v{code_version}) వద్ద GitLab పై సమస్యలను నివేదించవచ్చు లేదా తోడ్పడచ్చు.",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "వెనక్కి తిరిగి వెళ్ళడానికి",
"keyboard_shortcuts.blocked": "బ్లాక్ చేయబడిన వినియోగదారుల జాబితాను తెరవడానికి",
"keyboard_shortcuts.boost": "బూస్ట్ చేయడానికి",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "@{name} కొరకు సమన్వయ వినిమయసీమను తెరువు",
"status.admin_status": "సమన్వయ వినిమయసీమలో ఈ స్టేటస్ ను తెరవండి",
"status.block": "@{name} ను బ్లాక్ చేయి",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "เส้นเวลาที่ติดต่อกับภายนอก",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "ย้อนกลับ",
"column_header.hide_settings": "ซ่อนการตั้งค่า",
"column_header.show_settings": "แสดงการตั้งค่า",
@ -171,6 +172,7 @@
"follow_request.reject": "ปฏิเสธ",
"getting_started.heading": "เริ่มต้นใช้งาน",
"getting_started.open_source_notice": "{code_name} เป็นซอฟต์แวร์เปิดต้นฉบับ คุณสามารถมีส่วนร่วมหรือรายงานปัญหาที่ GitLab ที่ {code_link} (v{code_version})",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, other {# วัน}}",
"intervals.full.hours": "{number, plural, other {# ชั่วโมง}}",
"intervals.full.minutes": "{number, plural, other {# นาที}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "เพื่อนำทางย้อนกลับ",
"keyboard_shortcuts.blocked": "เพื่อเปิดรายการผู้ใช้ที่ปิดกั้นอยู่",
"keyboard_shortcuts.boost": "เพื่อดัน",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "เปิดส่วนติดต่อการควบคุมสำหรับ @{name}",
"status.admin_status": "เปิดสถานะนี้ในส่วนติดต่อการควบคุม",
"status.block": "ปิดกั้น @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Federe zaman tüneli",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Geri",
"column_header.hide_settings": "Ayarları gizle",
"column_header.show_settings": "Ayarları göster",
@ -171,6 +172,7 @@
"follow_request.reject": "Reddet",
"getting_started.heading": "Başlangıç",
"getting_started.open_source_notice": "{code_name} açık kaynaklı bir yazılımdır. Gitlab {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# gün} other {# gün}}",
"intervals.full.hours": "{number, plural, one {# saat} other {# saat}}",
"intervals.full.minutes": "{number, plural, one {# dakika} other {# dakika}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "geriye gitmek için",
"keyboard_shortcuts.blocked": "engelli kullanıcılar listesini açmak için",
"keyboard_shortcuts.boost": "boostlamak için",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "@{name} için denetim arayüzünü açın",
"status.admin_status": "Denetim arayüzünde bu durumu açın",
"status.block": "Engelle : @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "Глобальна стрічка",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "Назад",
"column_header.hide_settings": "Приховати налаштування",
"column_header.show_settings": "Показати налаштування",
@ -171,6 +172,7 @@
"follow_request.reject": "Відмовити",
"getting_started.heading": "Ласкаво просимо",
"getting_started.open_source_notice": "{code_name} — програма з відкритим сирцевим кодом. Ви можете допомогти проекту, або повідомити про проблеми на GitLab за адресою {code_link} (v{code_version}).",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# день} few {# дні} other {# днів}}",
"intervals.full.hours": "{number, plural, one {# година} few {# години} other {# годин}}",
"intervals.full.minutes": "{number, plural, one {# хвилина} few {# хвилини} other {# хвилин}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "переходити назад",
"keyboard_shortcuts.blocked": "відкрити список заблокованих користувачів",
"keyboard_shortcuts.boost": "передмухувати",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Відкрити інтерфейс модерації для @{name}",
"status.admin_status": "Відкрити цей статус в інтерфейсі модерації",
"status.block": "Заблокувати @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "跨站公共时间轴",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "返回",
"column_header.hide_settings": "隐藏设置",
"column_header.show_settings": "显示设置",
@ -171,6 +172,7 @@
"follow_request.reject": "拒绝",
"getting_started.heading": "开始使用",
"getting_started.open_source_notice": "{code_name} 是开源软件。欢迎前往 GitLab{code_link} (v{code_version}))贡献代码或反馈问题。",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number} 天",
"intervals.full.hours": "{number} 小时",
"intervals.full.minutes": "{number} 分钟",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "返回上一页",
"keyboard_shortcuts.blocked": "打开被屏蔽用户列表",
"keyboard_shortcuts.boost": "转嘟",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "打开 @{name} 的管理界面",
"status.admin_status": "打开这条嘟文的管理界面",
"status.block": "屏蔽 @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "跨站時間軸",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "返回",
"column_header.hide_settings": "隱藏設定",
"column_header.show_settings": "顯示設定",
@ -171,6 +172,7 @@
"follow_request.reject": "拒絕",
"getting_started.heading": "開始使用",
"getting_started.open_source_notice": "{code_name}(萬象)是一個開放源碼的軟件。你可以在官方 GitLab ({code_link} (v{code_version})) 貢獻或者回報問題。",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "後退",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "轉推",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface",
"status.block": "封鎖 @{name}",

@ -72,6 +72,7 @@
"column.preferences": "Preferences",
"column.public": "聯邦時間軸",
"column.security": "Security",
"column.soapbox_settings": "Soapbox settings",
"column_back_button.label": "上一頁",
"column_header.hide_settings": "隱藏設定",
"column_header.show_settings": "顯示設定",
@ -171,6 +172,7 @@
"follow_request.reject": "拒絕",
"getting_started.heading": "開始使用",
"getting_started.open_source_notice": "{code_name} 是開源軟體。你可以在 GitLab {code_link} (v{code_version}) 上貢獻或是回報問題。",
"group.detail.archived_group": "Archived group",
"group.members.empty": "This group does not has any members.",
"group.removed_accounts.empty": "This group does not has any removed accounts.",
"groups.card.join": "Join",
@ -179,13 +181,21 @@
"groups.card.roles.member": "You're a member",
"groups.card.view": "View",
"groups.create": "Create group",
"groups.detail.role_admin": "You're an admin",
"groups.edit": "Edit",
"groups.form.coverImage": "Upload new banner image (optional)",
"groups.form.coverImageChange": "Banner image selected",
"groups.form.create": "Create group",
"groups.form.description": "Description",
"groups.form.title": "Title",
"groups.form.update": "Update group",
"groups.join": "Join group",
"groups.leave": "Leave group",
"groups.removed_accounts": "Removed Accounts",
"groups.sidebar-panel.item.no_recent_activity": "No recent activity",
"groups.sidebar-panel.item.view": "new posts",
"groups.sidebar-panel.show_all": "Show all",
"groups.sidebar-panel.title": "Groups You're In",
"groups.tab_admin": "Manage",
"groups.tab_featured": "Featured",
"groups.tab_member": "Member",
@ -201,6 +211,19 @@
"intervals.full.days": "{number, plural, one {# 天} other {# 天}}",
"intervals.full.hours": "{number, plural, one {# 小時} other {# 小時}}",
"intervals.full.minutes": "{number, plural, one {# 分鐘} other {# 分鐘}}",
"introduction.federation.action": "Next",
"introduction.federation.home.headline": "Home",
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
"introduction.interactions.action": "Finish tutorial!",
"introduction.interactions.favourite.headline": "Favorite",
"introduction.interactions.favourite.text": "You can save a post for later, and let the author know that you liked it, by favoriting it.",
"introduction.interactions.reblog.headline": "Repost",
"introduction.interactions.reblog.text": "You can share other people's posts with your followers by reposting them.",
"introduction.interactions.reply.headline": "Reply",
"introduction.interactions.reply.text": "You can reply to other people's and your own posts, which will chain them together in a conversation.",
"introduction.welcome.action": "Let's go!",
"introduction.welcome.headline": "First steps",
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
"keyboard_shortcuts.back": "返回上一頁",
"keyboard_shortcuts.blocked": "開啟「封鎖使用者」名單",
"keyboard_shortcuts.boost": "轉嘟",
@ -401,6 +424,24 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar",
"soapbox_settings.fields.bio_label": "Bio",
"soapbox_settings.fields.bot_label": "This is a bot account",
"soapbox_settings.fields.display_name_label": "Display name",
"soapbox_settings.fields.header_label": "Header",
"soapbox_settings.fields.locked_label": "Lock account",
"soapbox_settings.fields.meta_fields_label": "Profile metadata",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
"soapbox_settings.hints.locked": "Requires you to manually approve followers",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile",
"soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",
"soapbox_settings.promo_panel.meta_fields.label_placeholder": "Label",
"soapbox_settings.promo_panel.meta_fields.url_placeholder": "URL",
"soapbox_settings.save": "Save",
"status.admin_account": "開啟 @{name} 的管理介面",
"status.admin_status": "在管理介面開啟此嘟文",
"status.block": "封鎖 @{name}",

Loading…
Cancel
Save