From abd2f6ad83042fedf2fe0b88d9cbc715dcc4e899 Mon Sep 17 00:00:00 2001 From: crockwave Date: Fri, 24 Jul 2020 19:30:33 -0500 Subject: [PATCH] edit features/configuration and translations --- app/soapbox/features/configuration/index.js | 165 ++++++++++++++------ app/soapbox/locales/ar.json | 31 ++-- app/soapbox/locales/ast.json | 31 ++-- app/soapbox/locales/bg.json | 31 ++-- app/soapbox/locales/bn.json | 31 ++-- app/soapbox/locales/br.json | 31 ++-- app/soapbox/locales/ca.json | 31 ++-- app/soapbox/locales/co.json | 31 ++-- app/soapbox/locales/cs.json | 31 ++-- app/soapbox/locales/cy.json | 31 ++-- app/soapbox/locales/da.json | 31 ++-- app/soapbox/locales/de.json | 31 ++-- app/soapbox/locales/defaultMessages.json | 78 ++++++--- app/soapbox/locales/el.json | 31 ++-- app/soapbox/locales/en.json | 31 ++-- app/soapbox/locales/eo.json | 31 ++-- app/soapbox/locales/es-AR.json | 31 ++-- app/soapbox/locales/es.json | 31 ++-- app/soapbox/locales/et.json | 31 ++-- app/soapbox/locales/eu.json | 31 ++-- app/soapbox/locales/fa.json | 31 ++-- app/soapbox/locales/fi.json | 31 ++-- app/soapbox/locales/fr.json | 31 ++-- app/soapbox/locales/ga.json | 31 ++-- app/soapbox/locales/gl.json | 31 ++-- app/soapbox/locales/he.json | 31 ++-- app/soapbox/locales/hi.json | 31 ++-- app/soapbox/locales/hr.json | 31 ++-- app/soapbox/locales/hu.json | 31 ++-- app/soapbox/locales/hy.json | 31 ++-- app/soapbox/locales/id.json | 31 ++-- app/soapbox/locales/io.json | 31 ++-- app/soapbox/locales/it.json | 31 ++-- app/soapbox/locales/ja.json | 31 ++-- app/soapbox/locales/ka.json | 31 ++-- app/soapbox/locales/kk.json | 31 ++-- app/soapbox/locales/ko.json | 31 ++-- app/soapbox/locales/lt.json | 31 ++-- app/soapbox/locales/lv.json | 31 ++-- app/soapbox/locales/mk.json | 31 ++-- app/soapbox/locales/ms.json | 31 ++-- app/soapbox/locales/nl.json | 31 ++-- app/soapbox/locales/nn.json | 31 ++-- app/soapbox/locales/no.json | 31 ++-- app/soapbox/locales/oc.json | 31 ++-- app/soapbox/locales/pl.json | 31 ++-- app/soapbox/locales/pt-BR.json | 31 ++-- app/soapbox/locales/pt.json | 31 ++-- app/soapbox/locales/ro.json | 31 ++-- app/soapbox/locales/ru.json | 31 ++-- app/soapbox/locales/sk.json | 31 ++-- app/soapbox/locales/sl.json | 31 ++-- app/soapbox/locales/sq.json | 31 ++-- app/soapbox/locales/sr-Latn.json | 31 ++-- app/soapbox/locales/sr.json | 31 ++-- app/soapbox/locales/sv.json | 31 ++-- app/soapbox/locales/ta.json | 31 ++-- app/soapbox/locales/te.json | 31 ++-- app/soapbox/locales/th.json | 31 ++-- app/soapbox/locales/tr.json | 31 ++-- app/soapbox/locales/uk.json | 31 ++-- app/soapbox/locales/zh-CN.json | 31 ++-- app/soapbox/locales/zh-HK.json | 31 ++-- app/soapbox/locales/zh-TW.json | 31 ++-- 64 files changed, 1349 insertions(+), 816 deletions(-) diff --git a/app/soapbox/features/configuration/index.js b/app/soapbox/features/configuration/index.js index 226e6bc9b..ded7e007b 100644 --- a/app/soapbox/features/configuration/index.js +++ b/app/soapbox/features/configuration/index.js @@ -29,21 +29,16 @@ const messages = defineMessages({ promoItemURL: { id: 'soapbox_settings.promo_panel.meta_fields.url_placeholder', defaultMessage: 'URL' }, homeFooterItemLabel: { id: 'soapbox_settings.home_footer.meta_fields.label_placeholder', defaultMessage: 'Label' }, homeFooterItemURL: { id: 'soapbox_settings.home_footer.meta_fields.url_placeholder', defaultMessage: 'URL' }, + customCssLabel: { id: 'soapbox_settings.custom_css.meta_fields.label_placeholder', defaultMessage: 'CSS' }, }); const mapStateToProps = state => { const soapbox = state.get('soapbox'); - console.log(soapbox); - console.log(generateThemeCss(soapbox.get('brandColor'))); - console.log(soapbox.get('logo')); - console.log(soapbox.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 { themeCss: generateThemeCss(soapbox.get('brandColor')), + customCssItems: soapbox.getIn(['customCSS', 'items']), logo: soapbox.get('logo'), + banner: soapbox.get('banner'), promoItems: soapbox.getIn(['promoPanel', 'items']), patronEnabled: soapbox.getIn(['extensions', 'patron']), autoPlayGif: soapbox.getIn(['defaultSettings', 'autoPlayGif']), @@ -61,7 +56,9 @@ class ConfigSoapbox extends ImmutablePureComponent { dispatch: PropTypes.func.isRequired, intl: PropTypes.object.isRequired, themeCss: PropTypes.string, + customCssItems: ImmutablePropTypes.list, logo: PropTypes.string, + banner: PropTypes.string, promoItems: ImmutablePropTypes.list, patronEnabled: PropTypes.bool, autoPlayGif: PropTypes.bool, @@ -73,28 +70,24 @@ class ConfigSoapbox extends ImmutablePureComponent { isLoading: false, } - // constructor(props) { - // super(props); - // this.state = { - // logo: props.themeCss, - // }; - // } - - // makePreviewLogo = () => { - // const { logo } = this.props; - // return logo.merge(ImmutableMap({ - // header: this.state.header, - // avatar: this.state.avatar, - // display_name: this.state.display_name, - // })); - // } + constructor(props) { + super(props); + this.state = { + logo: props.logo, + banner: props.banner, + promoItems: props.promoItems, + homeFooterItems: props.homeFooterItems, + customCssItems: props.customCssItems, + }; + } getPromoItemsParams = () => { let params = ImmutableMap(); this.state.promoItems.forEach((f, i) => params = params - .set(`promo_panel_attributes[${i}][name]`, f.get('name')) - .set(`promo_panel_attributes[${i}][value]`, f.get('value')) + .set(`promo_panel_attributes[${i}][icon]`, f.get('icon')) + .set(`promo_panel_attributes[${i}][text]`, f.get('text')) + .set(`promo_panel_attributes[${i}][url]`, f.get('url')) ); return params; } @@ -103,8 +96,17 @@ class ConfigSoapbox extends ImmutablePureComponent { let params = ImmutableMap(); this.state.homeFooterItems.forEach((f, i) => params = params - .set(`home_footer_attributes[${i}][name]`, f.get('name')) - .set(`home_footer_attributes[${i}][value]`, f.get('value')) + .set(`home_footer_attributes[${i}][title]`, f.get('title')) + .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; } @@ -119,14 +121,15 @@ class ConfigSoapbox extends ImmutablePureComponent { copyright: state.copyright, }, this.getHomeFooterParams().toJS(), - this.getPromoItemsParams().toJS()); + this.getPromoItemsParams().toJS()), + this.getCustomCSSParams().toJS(); } getFormdata = () => { const data = this.getParams(); let formData = new FormData(); 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] || ''); } 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 => { const { name } = e.target; const [file] = e.target.files || []; @@ -182,7 +193,7 @@ class ConfigSoapbox extends ImmutablePureComponent { const { intl } = this.props; return ( - +
@@ -197,6 +208,13 @@ class ConfigSoapbox extends ImmutablePureComponent { hint={ + +
+

+ +
+
+ } + label={} hint={} name='patron_enabled' checked={this.state.patronEnabled ? this.state.patronEnabled : this.props.patronEnabled} @@ -223,48 +249,93 @@ class ConfigSoapbox extends ImmutablePureComponent {
- + - + { this.state.promoItems.map((field, i) => (
+
)) } +
+ +
- + - + { this.state.homeFooterItems.map((field, i) => (
)) } +
+ +
+
+
+
+
+ + + + + { + this.state.customCssItems.map((field, i) => ( +
+ +
+ )) + } +
+ +
diff --git a/app/soapbox/locales/ar.json b/app/soapbox/locales/ar.json index 948df3aaf..87e35c20e 100644 --- a/app/soapbox/locales/ar.json +++ b/app/soapbox/locales/ar.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ast.json b/app/soapbox/locales/ast.json index 85cc07647..562107110 100644 --- a/app/soapbox/locales/ast.json +++ b/app/soapbox/locales/ast.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/bg.json b/app/soapbox/locales/bg.json index bde940a25..d4afbf8db 100644 --- a/app/soapbox/locales/bg.json +++ b/app/soapbox/locales/bg.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/bn.json b/app/soapbox/locales/bn.json index bb0801f52..b49b6c68d 100644 --- a/app/soapbox/locales/bn.json +++ b/app/soapbox/locales/bn.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/br.json b/app/soapbox/locales/br.json index 9e4f1ceb9..1c956800e 100644 --- a/app/soapbox/locales/br.json +++ b/app/soapbox/locales/br.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ca.json b/app/soapbox/locales/ca.json index 27743e89c..fe9ea98f4 100644 --- a/app/soapbox/locales/ca.json +++ b/app/soapbox/locales/ca.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/co.json b/app/soapbox/locales/co.json index 46252c927..eb5e7f2c4 100644 --- a/app/soapbox/locales/co.json +++ b/app/soapbox/locales/co.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/cs.json b/app/soapbox/locales/cs.json index 1e3ae0cba..b174b0a5e 100644 --- a/app/soapbox/locales/cs.json +++ b/app/soapbox/locales/cs.json @@ -424,18 +424,25 @@ "security.update_password.success": "Heslo úspěšně změněno.", "signup_panel.subtitle": "Registrujte se pro diskuzi.", "signup_panel.title": "Nový na {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/cy.json b/app/soapbox/locales/cy.json index 0c6be02d6..e0cc61b52 100644 --- a/app/soapbox/locales/cy.json +++ b/app/soapbox/locales/cy.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/da.json b/app/soapbox/locales/da.json index b1a8febfb..4468ea768 100644 --- a/app/soapbox/locales/da.json +++ b/app/soapbox/locales/da.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/de.json b/app/soapbox/locales/de.json index 397a970bb..6da829a48 100644 --- a/app/soapbox/locales/de.json +++ b/app/soapbox/locales/de.json @@ -424,18 +424,25 @@ "security.update_password.success": "Das Passwort wurde erfolgreich geändert.", "signup_panel.subtitle": "Jetzt anmelden, um mitzureden.", "signup_panel.title": "Neu auf {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/defaultMessages.json b/app/soapbox/locales/defaultMessages.json index 509c9dc32..5e4421265 100644 --- a/app/soapbox/locales/defaultMessages.json +++ b/app/soapbox/locales/defaultMessages.json @@ -1439,52 +1439,80 @@ "id": "soapbox_settings.home_footer.meta_fields.url_placeholder" }, { - "defaultMessage": "Display name", - "id": "soapbox_settings.fields.display_name_label" + "defaultMessage": "CSS", + "id": "soapbox_settings.custom_css.meta_fields.label_placeholder" }, { - "defaultMessage": "Bio", - "id": "soapbox_settings.fields.bio_label" + "defaultMessage": "Logo", + "id": "soapbox_settings.fields.logo_label" }, { - "defaultMessage": "Header", - "id": "soapbox_settings.fields.header_label" + "defaultMessage": "SVG. At most 2 MB. Will be downscaled to 50px height, maintaining aspect ratio", + "id": "soapbox_settings.hints.logo" }, { - "defaultMessage": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "id": "soapbox_settings.hints.header" - }, - { - "defaultMessage": "Avatar", - "id": "soapbox_settings.fields.avatar_label" + "defaultMessage": "Banner", + "id": "soapbox_settings.fields.banner_label" }, { "defaultMessage": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "id": "soapbox_settings.hints.avatar" + "id": "soapbox_settings.hints.banner" }, { - "defaultMessage": "Lock account", - "id": "soapbox_settings.fields.locked_label" + "defaultMessage": "Brand color", + "id": "soapbox_settings.fields.brand_color_label" }, { - "defaultMessage": "Requires you to manually approve followers", - "id": "soapbox_settings.hints.locked" + "defaultMessage": "Patron module", + "id": "soapbox_settings.fields.patron_enabled_label" }, { - "defaultMessage": "This is a bot account", - "id": "soapbox_settings.fields.bot_label" + "defaultMessage": "Enables display of Patron module. Requires installation of Patron module.", + "id": "soapbox_settings.hints.patron_enabled" }, { - "defaultMessage": "This account mainly performs automated actions and might not be monitored", - "id": "soapbox_settings.hints.bot" + "defaultMessage": "Auto-play GIFs", + "id": "soapbox_settings.fields.auto_play_gif_label" }, { - "defaultMessage": "Profile metadata", - "id": "soapbox_settings.fields.meta_fields_label" + "defaultMessage": "Enable auto-playing of GIF files in timeline", + "id": "soapbox_settings.hints.auto_play_gif" }, { - "defaultMessage": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", - "id": "soapbox_settings.hints.meta_fields" + "defaultMessage": "Promo panel items", + "id": "soapbox_settings.fields.promo_panel_fields_label" + }, + { + "defaultMessage": "You can have custom defined links displayed on the left panel of the timelines page", + "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", diff --git a/app/soapbox/locales/el.json b/app/soapbox/locales/el.json index db658f6a8..19b310fac 100644 --- a/app/soapbox/locales/el.json +++ b/app/soapbox/locales/el.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/en.json b/app/soapbox/locales/en.json index 970b07c86..87920c646 100644 --- a/app/soapbox/locales/en.json +++ b/app/soapbox/locales/en.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/eo.json b/app/soapbox/locales/eo.json index f7c965795..ee4bd02ed 100644 --- a/app/soapbox/locales/eo.json +++ b/app/soapbox/locales/eo.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/es-AR.json b/app/soapbox/locales/es-AR.json index 5d20261cf..3cb994390 100644 --- a/app/soapbox/locales/es-AR.json +++ b/app/soapbox/locales/es-AR.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/es.json b/app/soapbox/locales/es.json index b37cd07ca..4855dc820 100644 --- a/app/soapbox/locales/es.json +++ b/app/soapbox/locales/es.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/et.json b/app/soapbox/locales/et.json index ac5e63e59..69a6fddcf 100644 --- a/app/soapbox/locales/et.json +++ b/app/soapbox/locales/et.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/eu.json b/app/soapbox/locales/eu.json index e7f86e8e5..2842642a9 100644 --- a/app/soapbox/locales/eu.json +++ b/app/soapbox/locales/eu.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/fa.json b/app/soapbox/locales/fa.json index e84be7f64..053c62aea 100644 --- a/app/soapbox/locales/fa.json +++ b/app/soapbox/locales/fa.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/fi.json b/app/soapbox/locales/fi.json index 193e6d7c1..a46705836 100644 --- a/app/soapbox/locales/fi.json +++ b/app/soapbox/locales/fi.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/fr.json b/app/soapbox/locales/fr.json index d1bf4ceec..cf7d52b95 100644 --- a/app/soapbox/locales/fr.json +++ b/app/soapbox/locales/fr.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ga.json b/app/soapbox/locales/ga.json index ed15c2a49..45f379776 100644 --- a/app/soapbox/locales/ga.json +++ b/app/soapbox/locales/ga.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/gl.json b/app/soapbox/locales/gl.json index f05b71198..8cf064092 100644 --- a/app/soapbox/locales/gl.json +++ b/app/soapbox/locales/gl.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/he.json b/app/soapbox/locales/he.json index 24b6ba9d5..d1498535b 100644 --- a/app/soapbox/locales/he.json +++ b/app/soapbox/locales/he.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/hi.json b/app/soapbox/locales/hi.json index 3c0c542f7..859e26bcc 100644 --- a/app/soapbox/locales/hi.json +++ b/app/soapbox/locales/hi.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/hr.json b/app/soapbox/locales/hr.json index e8fe0429b..8e644e0eb 100644 --- a/app/soapbox/locales/hr.json +++ b/app/soapbox/locales/hr.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/hu.json b/app/soapbox/locales/hu.json index 145d0621d..20ede2a58 100644 --- a/app/soapbox/locales/hu.json +++ b/app/soapbox/locales/hu.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/hy.json b/app/soapbox/locales/hy.json index b18674f3b..d5093342b 100644 --- a/app/soapbox/locales/hy.json +++ b/app/soapbox/locales/hy.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/id.json b/app/soapbox/locales/id.json index 55f076d9f..010d42e78 100644 --- a/app/soapbox/locales/id.json +++ b/app/soapbox/locales/id.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/io.json b/app/soapbox/locales/io.json index d23d8939a..6797e12b6 100644 --- a/app/soapbox/locales/io.json +++ b/app/soapbox/locales/io.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/it.json b/app/soapbox/locales/it.json index e3f03ffb8..0acb082f4 100644 --- a/app/soapbox/locales/it.json +++ b/app/soapbox/locales/it.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ja.json b/app/soapbox/locales/ja.json index 9dad233a9..74f9d4b30 100644 --- a/app/soapbox/locales/ja.json +++ b/app/soapbox/locales/ja.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ka.json b/app/soapbox/locales/ka.json index 643ad45cc..efd74f70d 100644 --- a/app/soapbox/locales/ka.json +++ b/app/soapbox/locales/ka.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/kk.json b/app/soapbox/locales/kk.json index 0ebf5f2c6..dd528108f 100644 --- a/app/soapbox/locales/kk.json +++ b/app/soapbox/locales/kk.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ko.json b/app/soapbox/locales/ko.json index e493c233b..bbb2fd0ae 100644 --- a/app/soapbox/locales/ko.json +++ b/app/soapbox/locales/ko.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/lt.json b/app/soapbox/locales/lt.json index b823756e7..84c1546c7 100644 --- a/app/soapbox/locales/lt.json +++ b/app/soapbox/locales/lt.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/lv.json b/app/soapbox/locales/lv.json index 76a86e951..6e930e3b9 100644 --- a/app/soapbox/locales/lv.json +++ b/app/soapbox/locales/lv.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/mk.json b/app/soapbox/locales/mk.json index d18bcf14b..dded64990 100644 --- a/app/soapbox/locales/mk.json +++ b/app/soapbox/locales/mk.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ms.json b/app/soapbox/locales/ms.json index d1e1f7895..7e3c9efdf 100644 --- a/app/soapbox/locales/ms.json +++ b/app/soapbox/locales/ms.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/nl.json b/app/soapbox/locales/nl.json index 0943de017..f408227e8 100644 --- a/app/soapbox/locales/nl.json +++ b/app/soapbox/locales/nl.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/nn.json b/app/soapbox/locales/nn.json index d0be299d5..c5ab477d5 100644 --- a/app/soapbox/locales/nn.json +++ b/app/soapbox/locales/nn.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/no.json b/app/soapbox/locales/no.json index de2255130..b63978d0f 100644 --- a/app/soapbox/locales/no.json +++ b/app/soapbox/locales/no.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/oc.json b/app/soapbox/locales/oc.json index 687fc4f26..2b4712838 100644 --- a/app/soapbox/locales/oc.json +++ b/app/soapbox/locales/oc.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/pl.json b/app/soapbox/locales/pl.json index 6dfd5b5a3..2d347871a 100644 --- a/app/soapbox/locales/pl.json +++ b/app/soapbox/locales/pl.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/pt-BR.json b/app/soapbox/locales/pt-BR.json index f496cf305..c05298894 100644 --- a/app/soapbox/locales/pt-BR.json +++ b/app/soapbox/locales/pt-BR.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/pt.json b/app/soapbox/locales/pt.json index 39c23f1e7..37a1be169 100644 --- a/app/soapbox/locales/pt.json +++ b/app/soapbox/locales/pt.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ro.json b/app/soapbox/locales/ro.json index 7e3854062..ea986e67c 100644 --- a/app/soapbox/locales/ro.json +++ b/app/soapbox/locales/ro.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ru.json b/app/soapbox/locales/ru.json index b50103e22..f0390d0e2 100644 --- a/app/soapbox/locales/ru.json +++ b/app/soapbox/locales/ru.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/sk.json b/app/soapbox/locales/sk.json index 3a90831a2..11cbc721f 100644 --- a/app/soapbox/locales/sk.json +++ b/app/soapbox/locales/sk.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/sl.json b/app/soapbox/locales/sl.json index 814c935aa..10b7c7aa1 100644 --- a/app/soapbox/locales/sl.json +++ b/app/soapbox/locales/sl.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/sq.json b/app/soapbox/locales/sq.json index c2098cb25..f1dcaa217 100644 --- a/app/soapbox/locales/sq.json +++ b/app/soapbox/locales/sq.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/sr-Latn.json b/app/soapbox/locales/sr-Latn.json index fba28d7fd..ebf657108 100644 --- a/app/soapbox/locales/sr-Latn.json +++ b/app/soapbox/locales/sr-Latn.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/sr.json b/app/soapbox/locales/sr.json index 9d7414d1d..1fe59d03a 100644 --- a/app/soapbox/locales/sr.json +++ b/app/soapbox/locales/sr.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/sv.json b/app/soapbox/locales/sv.json index e4c0d8822..96e6a2357 100644 --- a/app/soapbox/locales/sv.json +++ b/app/soapbox/locales/sv.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/ta.json b/app/soapbox/locales/ta.json index 8ea50a3e3..a94cc4da6 100644 --- a/app/soapbox/locales/ta.json +++ b/app/soapbox/locales/ta.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/te.json b/app/soapbox/locales/te.json index 76abe0612..23086f0f8 100644 --- a/app/soapbox/locales/te.json +++ b/app/soapbox/locales/te.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/th.json b/app/soapbox/locales/th.json index 468e9bf61..ac2a497b2 100644 --- a/app/soapbox/locales/th.json +++ b/app/soapbox/locales/th.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/tr.json b/app/soapbox/locales/tr.json index e9b46ff46..773dd6d44 100644 --- a/app/soapbox/locales/tr.json +++ b/app/soapbox/locales/tr.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/uk.json b/app/soapbox/locales/uk.json index 277f7ef90..83fba3afd 100644 --- a/app/soapbox/locales/uk.json +++ b/app/soapbox/locales/uk.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/zh-CN.json b/app/soapbox/locales/zh-CN.json index c8800891e..97075760d 100644 --- a/app/soapbox/locales/zh-CN.json +++ b/app/soapbox/locales/zh-CN.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/zh-HK.json b/app/soapbox/locales/zh-HK.json index 3cfd9651c..54220338f 100644 --- a/app/soapbox/locales/zh-HK.json +++ b/app/soapbox/locales/zh-HK.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon", diff --git a/app/soapbox/locales/zh-TW.json b/app/soapbox/locales/zh-TW.json index b9ea9c037..612154e7f 100644 --- a/app/soapbox/locales/zh-TW.json +++ b/app/soapbox/locales/zh-TW.json @@ -424,18 +424,25 @@ "security.update_password.success": "Password successfully updated.", "signup_panel.subtitle": "Sign up now to discuss.", "signup_panel.title": "New to {site_title}?", - "soapbox_settings.fields.avatar_label": "Avatar", - "soapbox_settings.fields.bio_label": "Bio", - "soapbox_settings.fields.bot_label": "This is a bot account", - "soapbox_settings.fields.display_name_label": "Display name", - "soapbox_settings.fields.header_label": "Header", - "soapbox_settings.fields.locked_label": "Lock account", - "soapbox_settings.fields.meta_fields_label": "Profile metadata", - "soapbox_settings.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", - "soapbox_settings.hints.bot": "This account mainly performs automated actions and might not be monitored", - "soapbox_settings.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", - "soapbox_settings.hints.locked": "Requires you to manually approve followers", - "soapbox_settings.hints.meta_fields": "You can have up to {count, plural, one {# item} other {# items}} displayed as a table on your profile", + "soapbox_settings.custom_css.meta_fields.label_placeholder": "CSS", + "soapbox_settings.fields.auto_play_gif_label": "Auto-play GIFs", + "soapbox_settings.fields.banner_label": "Banner", + "soapbox_settings.fields.brand_color_label": "Brand color", + "soapbox_settings.fields.custom_css.add": "Add new Custom CSS item", + "soapbox_settings.fields.custom_css_fields_label": "Custom CSS", + "soapbox_settings.fields.home_footer.add": "Add new Home Footer Item", + "soapbox_settings.fields.home_footer_fields_label": "Home footer items", + "soapbox_settings.fields.logo_label": "Logo", + "soapbox_settings.fields.patron_enabled_label": "Patron module", + "soapbox_settings.fields.promo_panel.add": "Add new Promo panel item", + "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.url_placeholder": "URL", "soapbox_settings.promo_panel.meta_fields.icon_placeholder": "Icon",