debugged non-existent soapbox elements and missing soapbox.json. Debugged element state changes. Modified labels and translations.

merge-requests/119/head
crockwave 4 years ago
parent d6ce92bfb3
commit ac17b79253

@ -5,10 +5,22 @@ export const SOAPBOX_CONFIG_REQUEST_FAIL = 'SOAPBOX_CONFIG_REQUEST_FAIL';
export function fetchSoapboxConfig() {
return (dispatch, getState) => {
api(getState).get('/instance/soapbox.json').then(response => {
dispatch(importSoapboxConfig(response.data));
api(getState).get('/api/pleroma/frontend_configurations').then(response => {
if (response.data.soapbox_fe) {
dispatch(importSoapboxConfig(response.data.soapbox_fe));
} else {
api(getState).get('/instance/soapbox.json').then(response => {
dispatch(importSoapboxConfig(response.data));
}).catch(error => {
dispatch(soapboxConfigFail(error));
});
}
}).catch(error => {
dispatch(soapboxConfigFail(error));
api(getState).get('/instance/soapbox.json').then(response => {
dispatch(importSoapboxConfig(response.data));
}).catch(error => {
dispatch(soapboxConfigFail(error));
});
});
};
}
@ -22,7 +34,7 @@ export function importSoapboxConfig(soapboxConfig) {
export function soapboxConfigFail(error) {
if (!error.response) {
console.error('soapbox.json parsing error: ' + error);
console.error('Unable to obtain soapbox configuration: ' + error);
}
return {
type: SOAPBOX_CONFIG_REQUEST_FAIL,

@ -12,15 +12,13 @@ import {
Checkbox,
FileChooser,
} from 'soapbox/features/forms';
// 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';
//import { generateThemeCss } from 'soapbox/utils/theme';
const messages = defineMessages({
heading: { id: 'column.soapbox_settings', defaultMessage: 'Soapbox settings' },
@ -29,13 +27,13 @@ const messages = defineMessages({
promoItemURL: { id: 'soapbox_settings.promo_panel.meta_fields.url_placeholder', defaultMessage: 'URL' },
homeFooterItemLabel: { id: 'soapbox_settings.home_footer.meta_fields.label_placeholder', defaultMessage: 'Label' },
homeFooterItemURL: { id: 'soapbox_settings.home_footer.meta_fields.url_placeholder', defaultMessage: 'URL' },
customCssLabel: { id: 'soapbox_settings.custom_css.meta_fields.label_placeholder', defaultMessage: 'CSS' },
customCssLabel: { id: 'soapbox_settings.custom_css.meta_fields.url_placeholder', defaultMessage: 'URL' },
});
const mapStateToProps = state => {
const soapbox = state.get('soapbox');
return {
themeCss: generateThemeCss(soapbox.get('brandColor')),
// themeCss: generateThemeCss(soapbox.get('brandColor')),
brandColor: soapbox.get('brandColor'),
customCssItems: soapbox.getIn(['customCSS', 'items']),
logo: soapbox.get('logo'),
@ -56,7 +54,7 @@ class ConfigSoapbox extends ImmutablePureComponent {
static propTypes = {
dispatch: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
themeCss: PropTypes.string,
// themeCss: PropTypes.string,
brandColor: PropTypes.string,
customCssItems: ImmutablePropTypes.list,
logo: PropTypes.string,
@ -107,7 +105,7 @@ class ConfigSoapbox extends ImmutablePureComponent {
if (!this.state.customCssItems) {
this.state.customCssItems = ImmutableList([
ImmutableMap({
css: '',
url: '',
}),
]);
};
@ -139,7 +137,7 @@ class ConfigSoapbox extends ImmutablePureComponent {
let params = ImmutableMap();
this.state.customCssItems.forEach((f, i) =>
params = params
.set(`custom_css_attributes[${i}][css]`, f.get('css'))
.set(`custom_css_attributes[${i}][url]`, f.get('url'))
);
return params;
}
@ -147,7 +145,8 @@ class ConfigSoapbox extends ImmutablePureComponent {
getParams = () => {
const { state } = this;
return Object.assign({
themeCss: state.themeCss,
// themeCss: state.themeCss,
brandColor: state.brandColor,
logoFile: state.logoFile,
patronEnabled: state.patronEnabled,
displayMode: state.displayMode,
@ -236,7 +235,7 @@ class ConfigSoapbox extends ImmutablePureComponent {
<FieldsGroup>
<div className='fields-row'>
<div className='fields-row__column fields-row__column-6'>
{this.state.logo ? (<StillImage src={this.state.logo} />) : (<StillImage src={this.props.logo} />)}
{this.state.logo ? (<StillImage src={this.state.logo || ''} />) : (<StillImage src={this.props.logo || ''} />)}
</div>
<div className='fields-row__column fields-group fields-row__column-6'>
<FileChooser
@ -249,7 +248,7 @@ class ConfigSoapbox extends ImmutablePureComponent {
</div>
<div className='fields-row'>
<div className='fields-row__column fields-row__column-6'>
{this.state.banner ? (<StillImage src={this.state.banner} />) : (<StillImage src={this.props.banner} />)}
{this.state.banner ? (<StillImage src={this.state.banner || ''} />) : (<StillImage src={this.props.banner || ''} />)}
</div>
<div className='fields-row__column fields-group fields-row__column-6'>
<FileChooser
@ -272,14 +271,14 @@ class ConfigSoapbox extends ImmutablePureComponent {
<Checkbox
label={<FormattedMessage id='soapbox_settings.fields.patron_enabled_label' defaultMessage='Patron module' />}
hint={<FormattedMessage id='soapbox_settings.hints.patron_enabled' defaultMessage='Enables display of Patron module. Requires installation of Patron module.' />}
name='patron_enabled'
name='patronEnabled'
checked={this.state.patronEnabled ? this.state.patronEnabled : this.props.patronEnabled}
onChange={this.handleCheckboxChange}
/>
<Checkbox
label={<FormattedMessage id='soapbox_settings.fields.auto_play_gif_label' defaultMessage='Auto-play GIFs' />}
hint={<FormattedMessage id='soapbox_settings.hints.auto_play_gif' defaultMessage='Enable auto-playing of GIF files in timeline' />}
name='auto_play_gif'
name='autoPlayGif'
checked={this.state.autoPlayGif ? this.state.autoPlayGif : this.props.autoPlayGif}
onChange={this.handleCheckboxChange}
/>
@ -289,7 +288,10 @@ class ConfigSoapbox extends ImmutablePureComponent {
<div className='input with_block_label'>
<label><FormattedMessage id='soapbox_settings.fields.promo_panel_fields_label' defaultMessage='Promo panel items' /></label>
<span className='hint'>
<FormattedMessage id='soapbox_settings.hints.promo_panel_fields' defaultMessage='You can have custom defined links displayed on the left panel of the timelines page' />
<FormattedMessage id='soapbox_settings.hints.promo_panel_fields' defaultMessage='You can have custom defined links displayed on the left panel of the timelines page.' />
</span>
<span className='hint'>
<FormattedMessage id='soapbox_settings.hints.promo_panel_icons' defaultMessage='{ link }' values={{ link: <a target='_blank' href='https://forkaweso.me/Fork-Awesome/icons/'>Soapbox Icons List</a> }} />
</span>
{
this.state.promoItems.map((field, i) => (
@ -362,8 +364,8 @@ class ConfigSoapbox extends ImmutablePureComponent {
<TextInput
label={intl.formatMessage(messages.customCssLabel)}
placeholder={intl.formatMessage(messages.customCssLabel)}
value={field.get('css')}
onChange={this.handlecustomCSSChange(i, 'css')}
value={field.get('url')}
onChange={this.handlecustomCSSChange(i, 'url')}
/>
</div>
))

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "للترقية",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "সমর্থন করতে",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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í",
@ -424,7 +402,7 @@
"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.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"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.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -38,15 +38,6 @@
],
"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": [
{
@ -1439,8 +1430,8 @@
"id": "soapbox_settings.home_footer.meta_fields.url_placeholder"
},
{
"defaultMessage": "CSS",
"id": "soapbox_settings.custom_css.meta_fields.label_placeholder"
"defaultMessage": "URL",
"id": "soapbox_settings.custom_css.meta_fields.url_placeholder"
},
{
"defaultMessage": "Logo",
@ -1483,9 +1474,13 @@
"id": "soapbox_settings.fields.promo_panel_fields_label"
},
{
"defaultMessage": "You can have custom defined links displayed on the left panel of the timelines page",
"defaultMessage": "You can have custom defined links displayed on the left panel of the timelines page.",
"id": "soapbox_settings.hints.promo_panel_fields"
},
{
"defaultMessage": "{ link }",
"id": "soapbox_settings.hints.promo_panel_icons"
},
{
"defaultMessage": "Add new Promo panel item",
"id": "soapbox_settings.fields.promo_panel.add"
@ -1894,66 +1889,6 @@
],
"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": [
{
@ -2018,63 +1953,6 @@
],
"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": [
{
@ -2760,47 +2638,6 @@
],
"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": [
{
@ -2952,15 +2789,6 @@
],
"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": [
{

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "προώθηση",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "برای بازبوقیدن",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "להדהד",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "տարածելու համար",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "ブースト",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "დასაბუსტად",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "жазба бөлісу",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "부스트",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "продвинуть пост",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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úť",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "да подржите",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "அதிகரிக்கும்",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "బూస్ట్ చేయడానికి",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "เพื่อดัน",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "передмухувати",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "转嘟",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "轉推",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

@ -172,7 +172,6 @@
"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",
@ -181,21 +180,13 @@
"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",
@ -211,19 +202,6 @@
"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": "轉嘟",
@ -424,7 +402,7 @@
"security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?",
"soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.custom_css.meta_fields.url_placeholder": "URL",
"soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.brand_color_label": "Brand color",
@ -443,6 +421,7 @@
"soapbox_settings.hints.logo": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"soapbox_settings.hints.patron_enabled": "Enables display of Patron module. Requires installation of Patron module.",
"soapbox_settings.hints.promo_panel_fields": "You can have custom defined links displayed on the left panel of the timelines page",
"soapbox_settings.hints.promo_panel_icons": "{ link }",
"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",

Loading…
Cancel
Save