edit features/configuration and translations

merge-requests/119/head
crockwave 4 years ago
parent d82fac50b0
commit abd2f6ad83

@ -29,21 +29,16 @@ const messages = defineMessages({
promoItemURL: { id: 'soapbox_settings.promo_panel.meta_fields.url_placeholder', defaultMessage: 'URL' }, promoItemURL: { id: 'soapbox_settings.promo_panel.meta_fields.url_placeholder', defaultMessage: 'URL' },
homeFooterItemLabel: { id: 'soapbox_settings.home_footer.meta_fields.label_placeholder', defaultMessage: 'Label' }, homeFooterItemLabel: { id: 'soapbox_settings.home_footer.meta_fields.label_placeholder', defaultMessage: 'Label' },
homeFooterItemURL: { id: 'soapbox_settings.home_footer.meta_fields.url_placeholder', defaultMessage: 'URL' }, homeFooterItemURL: { id: 'soapbox_settings.home_footer.meta_fields.url_placeholder', defaultMessage: 'URL' },
customCssLabel: { id: 'soapbox_settings.custom_css.meta_fields.label_placeholder', defaultMessage: 'CSS' },
}); });
const mapStateToProps = state => { const mapStateToProps = state => {
const soapbox = state.get('soapbox'); const soapbox = state.get('soapbox');
console.log(soapbox);
console.log(generateThemeCss(soapbox.get('brandColor')));
console.log(soapbox.get('logo'));
console.log(soapbox.getIn(['promoPanel', 'items']));
console.log(soapbox.getIn(['extensions', 'patron']));
console.log(soapbox.getIn(['defaultSettings', 'autoPlayGif']));
console.log(soapbox.get('copyright'));
console.log(soapbox.getIn(['navlinks', 'homeFooter']));
return { return {
themeCss: generateThemeCss(soapbox.get('brandColor')), themeCss: generateThemeCss(soapbox.get('brandColor')),
customCssItems: soapbox.getIn(['customCSS', 'items']),
logo: soapbox.get('logo'), logo: soapbox.get('logo'),
banner: soapbox.get('banner'),
promoItems: soapbox.getIn(['promoPanel', 'items']), promoItems: soapbox.getIn(['promoPanel', 'items']),
patronEnabled: soapbox.getIn(['extensions', 'patron']), patronEnabled: soapbox.getIn(['extensions', 'patron']),
autoPlayGif: soapbox.getIn(['defaultSettings', 'autoPlayGif']), autoPlayGif: soapbox.getIn(['defaultSettings', 'autoPlayGif']),
@ -61,7 +56,9 @@ class ConfigSoapbox extends ImmutablePureComponent {
dispatch: PropTypes.func.isRequired, dispatch: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired, intl: PropTypes.object.isRequired,
themeCss: PropTypes.string, themeCss: PropTypes.string,
customCssItems: ImmutablePropTypes.list,
logo: PropTypes.string, logo: PropTypes.string,
banner: PropTypes.string,
promoItems: ImmutablePropTypes.list, promoItems: ImmutablePropTypes.list,
patronEnabled: PropTypes.bool, patronEnabled: PropTypes.bool,
autoPlayGif: PropTypes.bool, autoPlayGif: PropTypes.bool,
@ -73,28 +70,24 @@ class ConfigSoapbox extends ImmutablePureComponent {
isLoading: false, isLoading: false,
} }
// constructor(props) { constructor(props) {
// super(props); super(props);
// this.state = { this.state = {
// logo: props.themeCss, logo: props.logo,
// }; banner: props.banner,
// } promoItems: props.promoItems,
homeFooterItems: props.homeFooterItems,
// makePreviewLogo = () => { customCssItems: props.customCssItems,
// const { logo } = this.props; };
// return logo.merge(ImmutableMap({ }
// header: this.state.header,
// avatar: this.state.avatar,
// display_name: this.state.display_name,
// }));
// }
getPromoItemsParams = () => { getPromoItemsParams = () => {
let params = ImmutableMap(); let params = ImmutableMap();
this.state.promoItems.forEach((f, i) => this.state.promoItems.forEach((f, i) =>
params = params params = params
.set(`promo_panel_attributes[${i}][name]`, f.get('name')) .set(`promo_panel_attributes[${i}][icon]`, f.get('icon'))
.set(`promo_panel_attributes[${i}][value]`, f.get('value')) .set(`promo_panel_attributes[${i}][text]`, f.get('text'))
.set(`promo_panel_attributes[${i}][url]`, f.get('url'))
); );
return params; return params;
} }
@ -103,8 +96,17 @@ class ConfigSoapbox extends ImmutablePureComponent {
let params = ImmutableMap(); let params = ImmutableMap();
this.state.homeFooterItems.forEach((f, i) => this.state.homeFooterItems.forEach((f, i) =>
params = params params = params
.set(`home_footer_attributes[${i}][name]`, f.get('name')) .set(`home_footer_attributes[${i}][title]`, f.get('title'))
.set(`home_footer_attributes[${i}][value]`, f.get('value')) .set(`home_footer_attributes[${i}][url]`, f.get('url'))
);
return params;
}
getCustomCssParams = () => {
let params = ImmutableMap();
this.state.customCssItems.forEach((f, i) =>
params = params
.set(`custom_css_attributes[${i}][css]`, f.get('css'))
); );
return params; return params;
} }
@ -119,14 +121,15 @@ class ConfigSoapbox extends ImmutablePureComponent {
copyright: state.copyright, copyright: state.copyright,
}, },
this.getHomeFooterParams().toJS(), this.getHomeFooterParams().toJS(),
this.getPromoItemsParams().toJS()); this.getPromoItemsParams().toJS()),
this.getCustomCSSParams().toJS();
} }
getFormdata = () => { getFormdata = () => {
const data = this.getParams(); const data = this.getParams();
let formData = new FormData(); let formData = new FormData();
for (let key in data) { for (let key in data) {
const shouldAppend = Boolean(data[key] || key.startsWith('promo_panel_attributes') || key.startsWith('home_footer_attributes')); const shouldAppend = Boolean(data[key] || key.startsWith('promo_panel_attributes') || key.startsWith('home_footer_attributes') || key.startsWith('custom_css_attributes'));
if (shouldAppend) formData.append(key, data[key] || ''); if (shouldAppend) formData.append(key, data[key] || '');
} }
return formData; return formData;
@ -167,6 +170,14 @@ class ConfigSoapbox extends ImmutablePureComponent {
}; };
} }
handleCustomCSSChange = (i, key) => {
return (e) => {
this.setState({
customCssItems: this.state.customCssItems.setIn([i, key], e.target.value),
});
};
}
handleFileChange = e => { handleFileChange = e => {
const { name } = e.target; const { name } = e.target;
const [file] = e.target.files || []; const [file] = e.target.files || [];
@ -182,7 +193,7 @@ class ConfigSoapbox extends ImmutablePureComponent {
const { intl } = this.props; const { intl } = this.props;
return ( return (
<Column icon='gears' heading={intl.formatMessage(messages.heading)} backBtnSlim> <Column icon='shield' heading={intl.formatMessage(messages.heading)} backBtnSlim>
<SimpleForm onSubmit={this.handleSubmit}> <SimpleForm onSubmit={this.handleSubmit}>
<fieldset disabled={this.state.isLoading}> <fieldset disabled={this.state.isLoading}>
<FieldsGroup> <FieldsGroup>
@ -197,6 +208,13 @@ class ConfigSoapbox extends ImmutablePureComponent {
hint={<FormattedMessage id='soapbox_settings.hints.logo' defaultMessage='SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio' />} hint={<FormattedMessage id='soapbox_settings.hints.logo' defaultMessage='SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio' />}
onChange={this.handleFileChange} onChange={this.handleFileChange}
/> />
</div>
</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} />)}
</div>
<div className='fields-row__column fields-group fields-row__column-6'>
<FileChooser <FileChooser
label={<FormattedMessage id='soapbox_settings.fields.banner_label' defaultMessage='Banner' />} label={<FormattedMessage id='soapbox_settings.fields.banner_label' defaultMessage='Banner' />}
name='banner' name='banner'
@ -205,8 +223,16 @@ class ConfigSoapbox extends ImmutablePureComponent {
/> />
</div> </div>
</div> </div>
</FieldsGroup>
<FieldsGroup>
<div>
<label for='brand_color'><FormattedMessage id='soapbox_settings.fields.brand_color_label' defaultMessage='Brand color' /></label><br /><br />
<input type='color' id='brand_color' name='brand_color' value='#e66465' />
</div>
</FieldsGroup>
<FieldsGroup>
<Checkbox <Checkbox
label={<FormattedMessage id='soapbox_settings.fields.patron_enabled_label' defaultMessage='Enable Patron module' />} 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.' />} hint={<FormattedMessage id='soapbox_settings.hints.patron_enabled' defaultMessage='Enables display of Patron module. Requires installation of Patron module.' />}
name='patron_enabled' name='patron_enabled'
checked={this.state.patronEnabled ? this.state.patronEnabled : this.props.patronEnabled} checked={this.state.patronEnabled ? this.state.patronEnabled : this.props.patronEnabled}
@ -223,48 +249,93 @@ class ConfigSoapbox extends ImmutablePureComponent {
<FieldsGroup> <FieldsGroup>
<div className='fields-row__column fields-group'> <div className='fields-row__column fields-group'>
<div className='input with_block_label'> <div className='input with_block_label'>
<label><FormattedMessage id='soapbox_settings.fields.meta_fields_label' defaultMessage='Profile metadata' /></label> <label><FormattedMessage id='soapbox_settings.fields.promo_panel_fields_label' defaultMessage='Promo panel items' /></label>
<span className='hint'> <span className='hint'>
<FormattedMessage id='soapbox_settings.hints.meta_fields' defaultMessage='You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile' /* values={{ count: MAX_FIELDS }} */ /> <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>
{ {
this.state.promoItems.map((field, i) => ( this.state.promoItems.map((field, i) => (
<div className='row' key={i}> <div className='row' key={i}>
<TextInput <TextInput
placeholder={intl.formatMessage(messages.metaFieldLabel)} label={intl.formatMessage(messages.promoItemIcon)}
value={field.get('name')} placeholder={intl.formatMessage(messages.promoItemIcon)}
onChange={this.handlePromoItemsChange(i, 'name')} value={field.get('icon')}
onChange={this.handlePromoItemsChange(i, 'icon')}
/> />
<TextInput <TextInput
placeholder={intl.formatMessage(messages.metaFieldContent)} label={intl.formatMessage(messages.promoItemLabel)}
value={field.get('value')} placeholder={intl.formatMessage(messages.promoItemLabel)}
onChange={this.handlePromoItemsChange(i, 'value')} value={field.get('text')}
onChange={this.handlePromoItemsChange(i, 'text')}
/>
<TextInput
label={intl.formatMessage(messages.promoItemURL)}
placeholder={intl.formatMessage(messages.promoItemURL)}
value={field.get('url')}
onChange={this.handlePromoItemsChange(i, 'url')}
/> />
</div> </div>
)) ))
} }
<div className='actions'>
<button name='button' type='submit' className='btn button button-secondary'>
<FormattedMessage id='soapbox_settings.fields.promo_panel.add' defaultMessage='Add new Promo panel item' />
</button>
</div>
</div> </div>
<div className='input with_block_label'> <div className='input with_block_label'>
<label><FormattedMessage id='soapbox_settings.fields.meta_fields_label' defaultMessage='Profile metadata' /></label> <label><FormattedMessage id='soapbox_settings.fields.home_footer_fields_label' defaultMessage='Home footer items' /></label>
<span className='hint'> <span className='hint'>
<FormattedMessage id='soapbox_settings.hints.meta_fields' defaultMessage='You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile' /* values={{ count: MAX_FIELDS }} */ /> <FormattedMessage id='soapbox_settings.hints.home_footer_fields' defaultMessage='You can have custom defined links displayed on the footer of your static pages' />
</span> </span>
{ {
this.state.homeFooterItems.map((field, i) => ( this.state.homeFooterItems.map((field, i) => (
<div className='row' key={i}> <div className='row' key={i}>
<TextInput <TextInput
placeholder={intl.formatMessage(messages.metaFieldLabel)} label={intl.formatMessage(messages.homeFooterItemLabel)}
value={field.get('name')} placeholder={intl.formatMessage(messages.homeFooterItemLabel)}
onChange={this.handleHomeFooterItemsChange(i, 'name')} value={field.get('title')}
onChange={this.handleHomeFooterItemsChange(i, 'title')}
/> />
<TextInput <TextInput
placeholder={intl.formatMessage(messages.metaFieldContent)} label={intl.formatMessage(messages.homeFooterItemURL)}
value={field.get('value')} placeholder={intl.formatMessage(messages.homeFooterItemURL)}
onChange={this.handleHomeFooterItemsChange(i, 'value')} value={field.get('url')}
onChange={this.handleHomeFooterItemsChange(i, 'url')}
/>
</div>
))
}
<div className='actions'>
<button name='button' type='submit' className='btn button button-secondary'>
<FormattedMessage id='soapbox_settings.fields.home_footer.add' defaultMessage='Add new Home Footer Item' />
</button>
</div>
</div>
</div>
<div className='fields-row__column fields-group'>
<div className='input with_block_label'>
<label><FormattedMessage id='soapbox_settings.fields.custom_css_fields_label' defaultMessage='Custom CSS' /></label>
<span className='hint'>
<FormattedMessage id='soapbox_settings.hints.custom_css_fields' defaultMessage='You can have custom CSS definitions' />
</span>
{
this.state.customCssItems.map((field, i) => (
<div className='row' key={i}>
<TextInput
label={intl.formatMessage(messages.customCssLabel)}
placeholder={intl.formatMessage(messages.customCssLabel)}
value={field.get('css')}
onChange={this.handlecustomCSSChange(i, 'css')}
/> />
</div> </div>
)) ))
} }
<div className='actions'>
<button name='button' type='submit' className='btn button button-secondary'>
<FormattedMessage id='soapbox_settings.fields.custom_css.add' defaultMessage='Add new Custom CSS item' />
</button>
</div>
</div> </div>
</div> </div>
</FieldsGroup> </FieldsGroup>

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Heslo úspěšně změněno.", "security.update_password.success": "Heslo úspěšně změněno.",
"signup_panel.subtitle": "Registrujte se pro diskuzi.", "signup_panel.subtitle": "Registrujte se pro diskuzi.",
"signup_panel.title": "Nový na {site_title}?", "signup_panel.title": "Nový na {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Das Passwort wurde erfolgreich geändert.", "security.update_password.success": "Das Passwort wurde erfolgreich geändert.",
"signup_panel.subtitle": "Jetzt anmelden, um mitzureden.", "signup_panel.subtitle": "Jetzt anmelden, um mitzureden.",
"signup_panel.title": "Neu auf {site_title}?", "signup_panel.title": "Neu auf {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -1439,52 +1439,80 @@
"id": "soapbox_settings.home_footer.meta_fields.url_placeholder" "id": "soapbox_settings.home_footer.meta_fields.url_placeholder"
}, },
{ {
"defaultMessage": "Display name", "defaultMessage": "CSS",
"id": "soapbox_settings.fields.display_name_label" "id": "soapbox_settings.custom_css.meta_fields.label_placeholder"
}, },
{ {
"defaultMessage": "Bio", "defaultMessage": "Logo",
"id": "soapbox_settings.fields.bio_label" "id": "soapbox_settings.fields.logo_label"
}, },
{ {
"defaultMessage": "Header", "defaultMessage": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio",
"id": "soapbox_settings.fields.header_label" "id": "soapbox_settings.hints.logo"
}, },
{ {
"defaultMessage": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "defaultMessage": "Banner",
"id": "soapbox_settings.hints.header" "id": "soapbox_settings.fields.banner_label"
}, },
{ {
"defaultMessage": "Avatar", "defaultMessage": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"id": "soapbox_settings.fields.avatar_label" "id": "soapbox_settings.hints.banner"
}, },
{ {
"defaultMessage": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "defaultMessage": "Brand color",
"id": "soapbox_settings.hints.avatar" "id": "soapbox_settings.fields.brand_color_label"
}, },
{ {
"defaultMessage": "Lock account", "defaultMessage": "Patron module",
"id": "soapbox_settings.fields.locked_label" "id": "soapbox_settings.fields.patron_enabled_label"
}, },
{ {
"defaultMessage": "Requires you to manually approve followers", "defaultMessage": "Enables display of Patron module. Requires installation of Patron module.",
"id": "soapbox_settings.hints.locked" "id": "soapbox_settings.hints.patron_enabled"
}, },
{ {
"defaultMessage": "This is a bot account", "defaultMessage": "Auto-play GIFs",
"id": "soapbox_settings.fields.bot_label" "id": "soapbox_settings.fields.auto_play_gif_label"
}, },
{ {
"defaultMessage": "This account mainly performs automated actions and might not be monitored", "defaultMessage": "Enable auto-playing of GIF files in timeline",
"id": "soapbox_settings.hints.bot" "id": "soapbox_settings.hints.auto_play_gif"
}, },
{ {
"defaultMessage": "Profile metadata", "defaultMessage": "Promo panel items",
"id": "soapbox_settings.fields.meta_fields_label" "id": "soapbox_settings.fields.promo_panel_fields_label"
}, },
{ {
"defaultMessage": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "defaultMessage": "You can have custom defined links displayed on the left panel of the timelines page",
"id": "soapbox_settings.hints.meta_fields" "id": "soapbox_settings.hints.promo_panel_fields"
},
{
"defaultMessage": "Add new Promo panel item",
"id": "soapbox_settings.fields.promo_panel.add"
},
{
"defaultMessage": "Home footer items",
"id": "soapbox_settings.fields.home_footer_fields_label"
},
{
"defaultMessage": "You can have custom defined links displayed on the footer of your static pages",
"id": "soapbox_settings.hints.home_footer_fields"
},
{
"defaultMessage": "Add new Home Footer Item",
"id": "soapbox_settings.fields.home_footer.add"
},
{
"defaultMessage": "Custom CSS",
"id": "soapbox_settings.fields.custom_css_fields_label"
},
{
"defaultMessage": "You can have custom CSS definitions",
"id": "soapbox_settings.hints.custom_css_fields"
},
{
"defaultMessage": "Add new Custom CSS item",
"id": "soapbox_settings.fields.custom_css.add"
}, },
{ {
"defaultMessage": "Save", "defaultMessage": "Save",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

@ -424,18 +424,25 @@
"security.update_password.success": "Password successfully updated.", "security.update_password.success": "Password successfully updated.",
"signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.subtitle": "Sign up now to discuss.",
"signup_panel.title": "New to {site_title}?", "signup_panel.title": "New to {site_title}?",
"soapbox_settings.fields.avatar_label": "Avatar", "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS",
"soapbox_settings.fields.bio_label": "Bio", "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs",
"soapbox_settings.fields.bot_label": "This is a bot account", "soapbox_settings.fields.banner_label": "Banner",
"soapbox_settings.fields.display_name_label": "Display name", "soapbox_settings.fields.brand_color_label": "Brand color",
"soapbox_settings.fields.header_label": "Header", "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item",
"soapbox_settings.fields.locked_label": "Lock account", "soapbox_settings.fields.custom_css_fields_label": "Custom CSS",
"soapbox_settings.fields.meta_fields_label": "Profile metadata", "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item",
"soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "soapbox_settings.fields.home_footer_fields_label": "Home footer items",
"soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", "soapbox_settings.fields.logo_label": "Logo",
"soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "soapbox_settings.fields.patron_enabled_label": "Patron module",
"soapbox_settings.hints.locked": "Requires you to manually approve followers", "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item",
"soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", "soapbox_settings.fields.promo_panel_fields_label": "Promo panel items",
"soapbox_settings.hints.auto_play_gif": "Enable auto-playing of GIF files in timeline",
"soapbox_settings.hints.banner": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"soapbox_settings.hints.custom_css_fields": "You can have custom CSS definitions",
"soapbox_settings.hints.home_footer_fields": "You can have custom defined links displayed on the footer of your static pages",
"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.home_footer.meta_fields.label_placeholder": "Label", "soapbox_settings.home_footer.meta_fields.label_placeholder": "Label",
"soapbox_settings.home_footer.meta_fields.url_placeholder": "URL", "soapbox_settings.home_footer.meta_fields.url_placeholder": "URL",
"soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",

Loading…
Cancel
Save