diff --git a/app/soapbox/features/auth_login/components/login_form.js b/app/soapbox/features/auth_login/components/login_form.js index 3758bb36d..1b669063b 100644 --- a/app/soapbox/features/auth_login/components/login_form.js +++ b/app/soapbox/features/auth_login/components/login_form.js @@ -1,11 +1,18 @@ import React from 'react'; import { connect } from 'react-redux'; +import { injectIntl, FormattedMessage, defineMessages } from 'react-intl'; import { Link } from 'react-router-dom'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { logIn } from 'soapbox/actions/auth'; import { fetchMe } from 'soapbox/actions/me'; +const messages = defineMessages({ + username: { id: 'login.fields.username_placeholder', defaultMessage: 'Username' }, + password: { id: 'login.fields.password_placeholder', defaultMessage: 'Password' }, +}); + export default @connect() +@injectIntl class LoginForm extends ImmutablePureComponent { state = { @@ -31,23 +38,29 @@ class LoginForm extends ImmutablePureComponent { } render() { + const { intl } = this.props; + return (
- +
- +

- Trouble logging in? + + +

- +
); diff --git a/app/soapbox/features/landing_page/components/registration_form.js b/app/soapbox/features/landing_page/components/registration_form.js index 2fc0c8a53..c145ca9a8 100644 --- a/app/soapbox/features/landing_page/components/registration_form.js +++ b/app/soapbox/features/landing_page/components/registration_form.js @@ -1,7 +1,9 @@ import React from 'react'; import ImmutablePureComponent from 'react-immutable-pure-component'; +import PropTypes from 'prop-types'; import ImmutablePropTypes from 'react-immutable-proptypes'; import { connect } from 'react-redux'; +import { injectIntl, FormattedMessage, defineMessages } from 'react-intl'; import { Link } from 'react-router-dom'; import { SimpleForm, @@ -13,16 +15,30 @@ import { register } from 'soapbox/actions/auth'; import CaptchaField from 'soapbox/features/auth_login/components/captcha'; import { Map as ImmutableMap } from 'immutable'; import { v4 as uuidv4 } from 'uuid'; +import { getSettings } from 'soapbox/actions/settings'; + +const messages = defineMessages({ + username: { id: 'registration.fields.username_placeholder', defaultMessage: 'Username' }, + email: { id: 'registration.fields.email_placeholder', defaultMessage: 'E-Mail address' }, + password: { id: 'registration.fields.password_placeholder', defaultMessage: 'Password' }, + confirm: { id: 'registration.fields.confirm_placeholder', defaultMessage: 'Password (again)' }, + agreement: { id: 'registration.agreement', defaultMessage: 'I agree to the {tos}.' }, + tos: { id: 'registration.tos', defaultMessage: 'Terms of Service' }, +}); const mapStateToProps = (state, props) => ({ instance: state.get('instance'), + locale: getSettings(state).get('locale'), }); export default @connect(mapStateToProps) +@injectIntl class RegistrationForm extends ImmutablePureComponent { static propTypes = { instance: ImmutablePropTypes.map, + locale: PropTypes.string, + intl: PropTypes.func.isRequired, } state = { @@ -45,8 +61,9 @@ class RegistrationForm extends ImmutablePureComponent { } onSubmit = e => { + const params = this.state.params.set('locale', this.props.locale); this.setState({ submissionLoading: true }); - this.props.dispatch(register(this.state.params.toJS())).catch(error => { + this.props.dispatch(register(params.toJS())).catch(error => { this.setState({ submissionLoading: false }); this.refreshCaptcha(); }); @@ -69,24 +86,30 @@ class RegistrationForm extends ImmutablePureComponent { } render() { - const { instance } = this.props; + const { instance, intl } = this.props; const isLoading = this.state.captchaLoading || this.state.submissionLoading; return (
-

With an account on {instance.get('title')} you'll be able to follow people on any server in the fediverse.

+

+ {instance.get('title')} }} + /> +

I agree to the Terms of Service.} + label={intl.formatMessage(messages.agreement, { tos: {intl.formatMessage(messages.tos)} })} name='agreement' onChange={this.onCheckboxChange} required />
-
- +
diff --git a/app/soapbox/features/status/components/action_bar.js b/app/soapbox/features/status/components/action_bar.js index b3e6b3520..a06349c0d 100644 --- a/app/soapbox/features/status/components/action_bar.js +++ b/app/soapbox/features/status/components/action_bar.js @@ -21,7 +21,7 @@ const messages = defineMessages({ reblog_private: { id: 'status.reblog_private', defaultMessage: 'Repost to original audience' }, cancel_reblog_private: { id: 'status.cancel_reblog_private', defaultMessage: 'Un-repost' }, cannot_reblog: { id: 'status.cannot_reblog', defaultMessage: 'This post cannot be reposted' }, - favourite: { id: 'status.favourite', defaultMessage: 'Favorite' }, + favourite: { id: 'status.favourite', defaultMessage: 'Like' }, mute: { id: 'status.mute', defaultMessage: 'Mute @{name}' }, muteConversation: { id: 'status.mute_conversation', defaultMessage: 'Mute conversation' }, unmuteConversation: { id: 'status.unmute_conversation', defaultMessage: 'Unmute conversation' }, @@ -302,7 +302,7 @@ class ActionBar extends React.PureComponent { title={reblog_disabled ? intl.formatMessage(messages.cannot_reblog) : intl.formatMessage(messages.reblog)} icon={reblogIcon} onClick={this.handleReblogClick} - text='Repost' + text={intl.formatMessage(messages.reblog)} />
diff --git a/app/soapbox/features/ui/components/tabs_bar.js b/app/soapbox/features/ui/components/tabs_bar.js index 5a906160d..bc38eea3a 100644 --- a/app/soapbox/features/ui/components/tabs_bar.js +++ b/app/soapbox/features/ui/components/tabs_bar.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import ImmutablePropTypes from 'react-immutable-proptypes'; import { Link, NavLink, withRouter } from 'react-router-dom'; -import { FormattedMessage, injectIntl } from 'react-intl'; +import { FormattedMessage, injectIntl, defineMessages } from 'react-intl'; import { throttle } from 'lodash'; import { connect } from 'react-redux'; import classNames from 'classnames'; @@ -14,6 +14,10 @@ import { openModal } from '../../../actions/modal'; import { openSidebar } from '../../../actions/sidebar'; import Icon from '../../../components/icon'; +const messages = defineMessages({ + post: { id: 'tabs_bar.post', defaultMessage: 'Post' }, +}); + @withRouter class TabsBar extends React.PureComponent { @@ -120,7 +124,7 @@ class TabsBar extends React.PureComponent { }); render() { - const { account, onOpenCompose, onOpenSidebar } = this.props; + const { account, onOpenCompose, onOpenSidebar, intl } = this.props; const { collapsed } = this.state; const classes = classNames('tabs-bar', { @@ -144,8 +148,8 @@ class TabsBar extends React.PureComponent { } diff --git a/app/soapbox/locales/ar.json b/app/soapbox/locales/ar.json index d4e0538de..802b83976 100644 --- a/app/soapbox/locales/ar.json +++ b/app/soapbox/locales/ar.json @@ -226,6 +226,10 @@ "lists.subheading": "قوائمك", "lists.view_all": "View all lists", "loading_indicator.label": "تحميل...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "عرض / إخفاء", "missing_indicator.label": "غير موجود", "missing_indicator.sublabel": "تعذر العثور على هذا المورد", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "غير مدرج", "regeneration_indicator.label": "جارٍ التحميل…", "regeneration_indicator.sublabel": "جارٍ تجهيز تغذية صفحتك الرئيسية!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}ي", "relative_time.hours": "{number}سا", "relative_time.just_now": "الآن", @@ -386,6 +398,7 @@ "tabs_bar.home": "الرئيسية", "tabs_bar.news": "News", "tabs_bar.notifications": "الإخطارات", + "tabs_bar.post": "Post", "tabs_bar.search": "البحث", "time_remaining.days": "{number, plural, one {# يوم} other {# أيام}} متبقية", "time_remaining.hours": "{number, plural, one {# ساعة} other {# ساعات}} متبقية", diff --git a/app/soapbox/locales/ast.json b/app/soapbox/locales/ast.json index 1e9ec3af6..4b10750b0 100644 --- a/app/soapbox/locales/ast.json +++ b/app/soapbox/locales/ast.json @@ -226,6 +226,10 @@ "lists.subheading": "Les tos llistes", "lists.view_all": "View all lists", "loading_indicator.label": "Cargando...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Nun s'alcontró", "missing_indicator.sublabel": "Esti recursu nun pudo alcontrase", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Cargando…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "agora", @@ -386,6 +398,7 @@ "tabs_bar.home": "Aniciu", "tabs_bar.news": "News", "tabs_bar.notifications": "Avisos", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/bg.json b/app/soapbox/locales/bg.json index 571a1b894..253f0a5cd 100644 --- a/app/soapbox/locales/bg.json +++ b/app/soapbox/locales/bg.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Зареждане...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Not found", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Начало", "tabs_bar.news": "News", "tabs_bar.notifications": "Известия", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/bn.json b/app/soapbox/locales/bn.json index 167426d22..d2f5be1b8 100644 --- a/app/soapbox/locales/bn.json +++ b/app/soapbox/locales/bn.json @@ -226,6 +226,10 @@ "lists.subheading": "আপনার তালিকা", "lists.view_all": "View all lists", "loading_indicator.label": "আসছে...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "দৃশ্যতার অবস্থা বদলান", "missing_indicator.label": "খুঁজে পাওয়া যায়নি", "missing_indicator.sublabel": "জিনিসটা খুঁজে পাওয়া যায়নি", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "প্রকাশ্য নয়", "regeneration_indicator.label": "আসছে…", "regeneration_indicator.sublabel": "আপনার বাড়ির-সময়রেখা প্রস্তূত করা হচ্ছে!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number} দিন", "relative_time.hours": "{number} ঘন্টা", "relative_time.just_now": "এখন", @@ -386,6 +398,7 @@ "tabs_bar.home": "বাড়ি", "tabs_bar.news": "News", "tabs_bar.notifications": "প্রজ্ঞাপনগুলো", + "tabs_bar.post": "Post", "tabs_bar.search": "খুঁজতে", "time_remaining.days": "{number, plural, one {# day} other {# days}} বাকি আছে", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} বাকি আছে", diff --git a/app/soapbox/locales/br.json b/app/soapbox/locales/br.json index c9c1b6dfe..8a9ba743e 100644 --- a/app/soapbox/locales/br.json +++ b/app/soapbox/locales/br.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Loading...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Not found", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Home", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/ca.json b/app/soapbox/locales/ca.json index 8b8a48262..c111f7362 100644 --- a/app/soapbox/locales/ca.json +++ b/app/soapbox/locales/ca.json @@ -226,6 +226,10 @@ "lists.subheading": "Les teves llistes", "lists.view_all": "View all lists", "loading_indicator.label": "Carregant...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Alternar visibilitat", "missing_indicator.label": "No trobat", "missing_indicator.sublabel": "Aquest recurs no pot ser trobat", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "No llistat", "regeneration_indicator.label": "Carregant…", "regeneration_indicator.sublabel": "S'està preparant la línia de temps Inici!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "fa {number} dies", "relative_time.hours": "fa {number} hores", "relative_time.just_now": "ara", @@ -386,6 +398,7 @@ "tabs_bar.home": "Inici", "tabs_bar.news": "News", "tabs_bar.notifications": "Notificacions", + "tabs_bar.post": "Post", "tabs_bar.search": "Cerca", "time_remaining.days": "{number, plural, one {# dia} other {# dies}} restants", "time_remaining.hours": "{number, plural, one {# hora} other {# hores}} restants", diff --git a/app/soapbox/locales/co.json b/app/soapbox/locales/co.json index 8198ac7f8..5ab0341cf 100644 --- a/app/soapbox/locales/co.json +++ b/app/soapbox/locales/co.json @@ -226,6 +226,10 @@ "lists.subheading": "E vo liste", "lists.view_all": "View all lists", "loading_indicator.label": "Caricamentu...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Cambià a visibilità", "missing_indicator.label": "Micca trovu", "missing_indicator.sublabel": "Ùn era micca pussivule di truvà sta risorsa", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Micca listatu", "regeneration_indicator.label": "Caricamentu…", "regeneration_indicator.sublabel": "Priparazione di a vostra pagina d'accolta!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}ghj", "relative_time.hours": "{number}o", "relative_time.just_now": "avà", @@ -386,6 +398,7 @@ "tabs_bar.home": "Accolta", "tabs_bar.news": "News", "tabs_bar.notifications": "Nutificazione", + "tabs_bar.post": "Post", "tabs_bar.search": "Cercà", "time_remaining.days": "{number, plural, one {# ghjornu ferma} other {# ghjorni fermanu}}", "time_remaining.hours": "{number, plural, one {# ora ferma} other {# ore fermanu}}", diff --git a/app/soapbox/locales/cs.json b/app/soapbox/locales/cs.json index 5b85f00d4..bf7d6b04c 100644 --- a/app/soapbox/locales/cs.json +++ b/app/soapbox/locales/cs.json @@ -226,6 +226,10 @@ "lists.subheading": "Vaše seznamy", "lists.view_all": "View all lists", "loading_indicator.label": "Načítám…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Přepínat viditelnost", "missing_indicator.label": "Nenalezeno", "missing_indicator.sublabel": "Tento zdroj se nepodařilo najít", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Neuvedený", "regeneration_indicator.label": "Načítám…", "regeneration_indicator.sublabel": "Váš domovský proud se připravuje!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number} d", "relative_time.hours": "{number} h", "relative_time.just_now": "teď", @@ -386,6 +398,7 @@ "tabs_bar.home": "Domů", "tabs_bar.news": "News", "tabs_bar.notifications": "Oznámení", + "tabs_bar.post": "Post", "tabs_bar.search": "Hledat", "time_remaining.days": "{number, plural, one {Zbývá # den} few {Zbývají # dny} many {Zbývá # dne} other {Zbývá # dní}}", "time_remaining.hours": "{number, plural, one {Zbývá # hodina} few {Zbývají # hodiny} many {Zbývá # hodiny} other {Zbývá # hodin}}", diff --git a/app/soapbox/locales/cy.json b/app/soapbox/locales/cy.json index 19ce2e804..fa73d95d5 100644 --- a/app/soapbox/locales/cy.json +++ b/app/soapbox/locales/cy.json @@ -226,6 +226,10 @@ "lists.subheading": "Eich rhestrau", "lists.view_all": "View all lists", "loading_indicator.label": "Llwytho...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toglo gwelededd", "missing_indicator.label": "Heb ei ganfod", "missing_indicator.sublabel": "Ni ellid canfod yr adnodd hwn", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Heb ei restru", "regeneration_indicator.label": "Llwytho…", "regeneration_indicator.sublabel": "Mae eich ffrwd cartref yn cael ei baratoi!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}dydd", "relative_time.hours": "{number}awr", "relative_time.just_now": "nawr", @@ -386,6 +398,7 @@ "tabs_bar.home": "Hafan", "tabs_bar.news": "News", "tabs_bar.notifications": "Hysbysiadau", + "tabs_bar.post": "Post", "tabs_bar.search": "Chwilio", "time_remaining.days": "{number, plural, one {# ddydd} other {# o ddyddiau}} ar ôl", "time_remaining.hours": "{number, plural, one {# awr} other {# o oriau}} ar ôl", diff --git a/app/soapbox/locales/da.json b/app/soapbox/locales/da.json index 0a79b9371..f7b8c3b31 100644 --- a/app/soapbox/locales/da.json +++ b/app/soapbox/locales/da.json @@ -226,6 +226,10 @@ "lists.subheading": "Dine lister", "lists.view_all": "View all lists", "loading_indicator.label": "Indlæser...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Ændre synlighed", "missing_indicator.label": "Ikke fundet", "missing_indicator.sublabel": "Denne ressource kunne ikke blive fundet", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Ikke listet", "regeneration_indicator.label": "Indlæser…", "regeneration_indicator.sublabel": "Din startside er ved at blive forberedt!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}t", "relative_time.just_now": "nu", @@ -386,6 +398,7 @@ "tabs_bar.home": "Hjem", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifikationer", + "tabs_bar.post": "Post", "tabs_bar.search": "Søg", "time_remaining.days": "{number, plural, one {# dag} other {# dage}} tilbage", "time_remaining.hours": "{number, plural, one {# time} other {# timer}} tilbage", diff --git a/app/soapbox/locales/de.json b/app/soapbox/locales/de.json index bfbc8181a..28ff51d29 100644 --- a/app/soapbox/locales/de.json +++ b/app/soapbox/locales/de.json @@ -226,6 +226,10 @@ "lists.subheading": "Deine Listen", "lists.view_all": "View all lists", "loading_indicator.label": "Wird geladen …", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Sichtbarkeit umschalten", "missing_indicator.label": "Nicht gefunden", "missing_indicator.sublabel": "Die Ressource konnte nicht gefunden werden", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Nicht gelistet", "regeneration_indicator.label": "Laden…", "regeneration_indicator.sublabel": "Deine Startseite wird gerade vorbereitet!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "jetzt", @@ -386,6 +398,7 @@ "tabs_bar.home": "Startseite", "tabs_bar.news": "News", "tabs_bar.notifications": "Benachrichtigungen", + "tabs_bar.post": "Post", "tabs_bar.search": "Suche", "time_remaining.days": "{number, plural, one {# Tag} other {# Tage}} verbleibend", "time_remaining.hours": "{number, plural, one {# Stunde} other {# Stunden}} verbleibend", diff --git a/app/soapbox/locales/defaultMessages.json b/app/soapbox/locales/defaultMessages.json index c1cec5a25..3a6fd0b49 100644 --- a/app/soapbox/locales/defaultMessages.json +++ b/app/soapbox/locales/defaultMessages.json @@ -869,6 +869,27 @@ ], "path": "app/soapbox/features/account/components/header.json" }, + { + "descriptors": [ + { + "defaultMessage": "Username", + "id": "login.fields.username_placeholder" + }, + { + "defaultMessage": "Password", + "id": "login.fields.password_placeholder" + }, + { + "defaultMessage": "Trouble logging in?", + "id": "login.reset_password_hint" + }, + { + "defaultMessage": "Log in", + "id": "login.log_in" + } + ], + "path": "app/soapbox/features/auth_login/components/login_form.json" + }, { "descriptors": [ { @@ -1702,6 +1723,43 @@ ], "path": "app/soapbox/features/home_timeline/index.json" }, + { + "descriptors": [ + { + "defaultMessage": "Username", + "id": "registration.fields.username_placeholder" + }, + { + "defaultMessage": "E-Mail address", + "id": "registration.fields.email_placeholder" + }, + { + "defaultMessage": "Password", + "id": "registration.fields.password_placeholder" + }, + { + "defaultMessage": "Password (again)", + "id": "registration.fields.confirm_placeholder" + }, + { + "defaultMessage": "I agree to the {tos}.", + "id": "registration.agreement" + }, + { + "defaultMessage": "Terms of Service", + "id": "registration.tos" + }, + { + "defaultMessage": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "id": "registration.lead" + }, + { + "defaultMessage": "Sign up", + "id": "registration.sign_up" + } + ], + "path": "app/soapbox/features/landing_page/components/registration_form.json" + }, { "descriptors": [ { @@ -2200,7 +2258,7 @@ "id": "status.cannot_reblog" }, { - "defaultMessage": "Favorite", + "defaultMessage": "Like", "id": "status.favourite" }, { @@ -2674,6 +2732,10 @@ }, { "descriptors": [ + { + "defaultMessage": "Post", + "id": "tabs_bar.post" + }, { "defaultMessage": "Home", "id": "tabs_bar.home" diff --git a/app/soapbox/locales/el.json b/app/soapbox/locales/el.json index d3e2a7c8d..8c2829a7f 100644 --- a/app/soapbox/locales/el.json +++ b/app/soapbox/locales/el.json @@ -226,6 +226,10 @@ "lists.subheading": "Οι λίστες σου", "lists.view_all": "View all lists", "loading_indicator.label": "Φορτώνει...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Εναλλαγή ορατότητας", "missing_indicator.label": "Δε βρέθηκε", "missing_indicator.sublabel": "Αδύνατη η εύρεση αυτού του πόρου", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Μη καταχωρημένα", "regeneration_indicator.label": "Φορτώνει…", "regeneration_indicator.sublabel": "Η αρχική σου ροή ετοιμάζεται!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}η", "relative_time.hours": "{number}ω", "relative_time.just_now": "τώρα", @@ -386,6 +398,7 @@ "tabs_bar.home": "Αρχική", "tabs_bar.news": "News", "tabs_bar.notifications": "Ειδοποιήσεις", + "tabs_bar.post": "Post", "tabs_bar.search": "Αναζήτηση", "time_remaining.days": "απομένουν {number, plural, one {# ημέρα} other {# ημέρες}}", "time_remaining.hours": "απομένουν {number, plural, one {# ώρα} other {# ώρες}}", diff --git a/app/soapbox/locales/en.json b/app/soapbox/locales/en.json index e4846d9a9..81cf33582 100644 --- a/app/soapbox/locales/en.json +++ b/app/soapbox/locales/en.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Loading...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Not found", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -350,7 +362,7 @@ "status.detailed_status": "Detailed conversation view", "status.direct": "Direct message @{name}", "status.embed": "Embed", - "status.favourite": "Favorite", + "status.favourite": "Like", "status.filtered": "Filtered", "status.load_more": "Load more", "status.media_hidden": "Media hidden", @@ -386,6 +398,7 @@ "tabs_bar.home": "Home", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/eo.json b/app/soapbox/locales/eo.json index 8ba1d51de..e47b25e9b 100644 --- a/app/soapbox/locales/eo.json +++ b/app/soapbox/locales/eo.json @@ -226,6 +226,10 @@ "lists.subheading": "Viaj listoj", "lists.view_all": "View all lists", "loading_indicator.label": "Ŝargado…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Baskuligi videblecon", "missing_indicator.label": "Ne trovita", "missing_indicator.sublabel": "Ĉi tiu elemento ne estis trovita", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Nelistigita", "regeneration_indicator.label": "Ŝargado…", "regeneration_indicator.sublabel": "Via hejma fluo pretiĝas!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}t", "relative_time.hours": "{number}h", "relative_time.just_now": "nun", @@ -386,6 +398,7 @@ "tabs_bar.home": "Hejmo", "tabs_bar.news": "News", "tabs_bar.notifications": "Sciigoj", + "tabs_bar.post": "Post", "tabs_bar.search": "Serĉi", "time_remaining.days": "{number, plural, one {# tago} other {# tagoj}} restas", "time_remaining.hours": "{number, plural, one {# horo} other {# horoj}} restas", diff --git a/app/soapbox/locales/es-AR.json b/app/soapbox/locales/es-AR.json index 76292c098..84bb24727 100644 --- a/app/soapbox/locales/es-AR.json +++ b/app/soapbox/locales/es-AR.json @@ -226,6 +226,10 @@ "lists.subheading": "Tus listas", "lists.view_all": "View all lists", "loading_indicator.label": "Cargando…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Cambiar visibilidad", "missing_indicator.label": "No se encontró", "missing_indicator.sublabel": "No se encontró este recurso", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "No listado", "regeneration_indicator.label": "Cargando…", "regeneration_indicator.sublabel": "¡Se está preparando tu línea temporal principal!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "recién", @@ -386,6 +398,7 @@ "tabs_bar.home": "Principal", "tabs_bar.news": "News", "tabs_bar.notifications": "Notificaciones", + "tabs_bar.post": "Post", "tabs_bar.search": "Buscar", "time_remaining.days": "{number, plural,one {queda # día} other {quedan # días}}", "time_remaining.hours": "{number, plural,one {queda # hora} other {quedan # horas}}", diff --git a/app/soapbox/locales/es.json b/app/soapbox/locales/es.json index 67c34996f..162d4c087 100644 --- a/app/soapbox/locales/es.json +++ b/app/soapbox/locales/es.json @@ -226,6 +226,10 @@ "lists.subheading": "Tus listas", "lists.view_all": "View all lists", "loading_indicator.label": "Cargando…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Cambiar visibilidad", "missing_indicator.label": "No encontrado", "missing_indicator.sublabel": "No se encontró este recurso", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "No listado", "regeneration_indicator.label": "Cargando…", "regeneration_indicator.sublabel": "¡Tu historia de inicio se está preparando!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "ahora", @@ -386,6 +398,7 @@ "tabs_bar.home": "Inicio", "tabs_bar.news": "News", "tabs_bar.notifications": "Notificaciones", + "tabs_bar.post": "Post", "tabs_bar.search": "Buscar", "time_remaining.days": "{number, plural, one {# día restante} other {# días restantes}}", "time_remaining.hours": "{number, plural, one {# hora restante} other {# horas restantes}}", diff --git a/app/soapbox/locales/et.json b/app/soapbox/locales/et.json index 3b93c3bc2..c996c4891 100644 --- a/app/soapbox/locales/et.json +++ b/app/soapbox/locales/et.json @@ -226,6 +226,10 @@ "lists.subheading": "Sinu nimistud", "lists.view_all": "View all lists", "loading_indicator.label": "Laeb..", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Lülita nähtavus", "missing_indicator.label": "Ei leitud", "missing_indicator.sublabel": "Seda ressurssi ei leitud", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Määramata", "regeneration_indicator.label": "Laeb…", "regeneration_indicator.sublabel": "Sinu kodu voog on ettevalmistamisel!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}p", "relative_time.hours": "{number}t", "relative_time.just_now": "nüüd", @@ -386,6 +398,7 @@ "tabs_bar.home": "Kodu", "tabs_bar.news": "News", "tabs_bar.notifications": "Teated", + "tabs_bar.post": "Post", "tabs_bar.search": "Otsi", "time_remaining.days": "{number, plural, one {# päev} other {# päeva}} left", "time_remaining.hours": "{number, plural, one {# tund} other {# tundi}} left", diff --git a/app/soapbox/locales/eu.json b/app/soapbox/locales/eu.json index 17034dd75..013ded660 100644 --- a/app/soapbox/locales/eu.json +++ b/app/soapbox/locales/eu.json @@ -226,6 +226,10 @@ "lists.subheading": "Zure zerrendak", "lists.view_all": "View all lists", "loading_indicator.label": "Kargatzen...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Txandakatu ikusgaitasuna", "missing_indicator.label": "Ez aurkitua", "missing_indicator.sublabel": "Baliabide hau ezin izan da aurkitu", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Zerrendatu gabea", "regeneration_indicator.label": "Kargatzen…", "regeneration_indicator.sublabel": "Zure hasiera-jarioa prestatzen ari da!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}e", "relative_time.hours": "{number}o", "relative_time.just_now": "orain", @@ -386,6 +398,7 @@ "tabs_bar.home": "Hasiera", "tabs_bar.news": "News", "tabs_bar.notifications": "Jakinarazpenak", + "tabs_bar.post": "Post", "tabs_bar.search": "Bilatu", "time_remaining.days": "{number, plural, one {egun #} other {# egun}} amaitzeko", "time_remaining.hours": "{number, plural, one {ordu #} other {# ordu}} amaitzeko", diff --git a/app/soapbox/locales/fa.json b/app/soapbox/locales/fa.json index b29b7fea3..f25b78169 100644 --- a/app/soapbox/locales/fa.json +++ b/app/soapbox/locales/fa.json @@ -226,6 +226,10 @@ "lists.subheading": "فهرست‌های شما", "lists.view_all": "View all lists", "loading_indicator.label": "بارگیری...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "تغییر پیدایی", "missing_indicator.label": "پیدا نشد", "missing_indicator.sublabel": "این منبع پیدا نشد", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "فهرست‌نشده", "regeneration_indicator.label": "در حال باز شدن…", "regeneration_indicator.sublabel": "این فهرست دارد آماده می‌شود!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number} روز", "relative_time.hours": "{number} ساعت", "relative_time.just_now": "الان", @@ -386,6 +398,7 @@ "tabs_bar.home": "خانه", "tabs_bar.news": "News", "tabs_bar.notifications": "اعلان‌ها", + "tabs_bar.post": "Post", "tabs_bar.search": "جستجو", "time_remaining.days": "{number, plural, one {# روز} other {# روز}} باقی مانده", "time_remaining.hours": "{number, plural, one {# ساعت} other {# ساعت}} باقی مانده", diff --git a/app/soapbox/locales/fi.json b/app/soapbox/locales/fi.json index 4a1c6748f..478479ccc 100644 --- a/app/soapbox/locales/fi.json +++ b/app/soapbox/locales/fi.json @@ -226,6 +226,10 @@ "lists.subheading": "Omat listat", "lists.view_all": "View all lists", "loading_indicator.label": "Ladataan...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Säädä näkyvyyttä", "missing_indicator.label": "Ei löytynyt", "missing_indicator.sublabel": "Tätä resurssia ei löytynyt", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Listaamaton julkinen", "regeneration_indicator.label": "Ladataan…", "regeneration_indicator.sublabel": "Kotinäkymääsi valmistellaan!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number} pv", "relative_time.hours": "{number} h", "relative_time.just_now": "nyt", @@ -386,6 +398,7 @@ "tabs_bar.home": "Koti", "tabs_bar.news": "News", "tabs_bar.notifications": "Ilmoitukset", + "tabs_bar.post": "Post", "tabs_bar.search": "Hae", "time_remaining.days": "{number, plural, one {# päivä} other {# päivää}} jäljellä", "time_remaining.hours": "{number, plural, one {# tunti} other {# tuntia}} jäljellä", diff --git a/app/soapbox/locales/fr.json b/app/soapbox/locales/fr.json index 58ee7bfab..00ea43100 100644 --- a/app/soapbox/locales/fr.json +++ b/app/soapbox/locales/fr.json @@ -226,6 +226,10 @@ "lists.subheading": "Vos listes", "lists.view_all": "View all lists", "loading_indicator.label": "Chargement…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Modifier la visibilité", "missing_indicator.label": "Non trouvé", "missing_indicator.sublabel": "Ressource introuvable", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Non listé", "regeneration_indicator.label": "Chargement…", "regeneration_indicator.sublabel": "Le flux de votre page principale est en cours de préparation !", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number} j", "relative_time.hours": "{number} h", "relative_time.just_now": "à l’instant", @@ -386,6 +398,7 @@ "tabs_bar.home": "Accueil", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Chercher", "time_remaining.days": "{number, plural, one {# day} other {# days}} restants", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} restantes", diff --git a/app/soapbox/locales/ga.json b/app/soapbox/locales/ga.json index 34ca3a403..6251570fe 100644 --- a/app/soapbox/locales/ga.json +++ b/app/soapbox/locales/ga.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Loading...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Not found", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Home", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/gl.json b/app/soapbox/locales/gl.json index c980b28c6..c892accd2 100644 --- a/app/soapbox/locales/gl.json +++ b/app/soapbox/locales/gl.json @@ -226,6 +226,10 @@ "lists.subheading": "As túas listas", "lists.view_all": "View all lists", "loading_indicator.label": "Cargando...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Ocultar", "missing_indicator.label": "Non atopado", "missing_indicator.sublabel": "Non se puido atopar o recurso", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Non listada", "regeneration_indicator.label": "Cargando…", "regeneration_indicator.sublabel": "Estase a preparar a súa liña temporal de inicio!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "agora", @@ -386,6 +398,7 @@ "tabs_bar.home": "Inicio", "tabs_bar.news": "News", "tabs_bar.notifications": "Notificacións", + "tabs_bar.post": "Post", "tabs_bar.search": "Buscar", "time_remaining.days": "{number, plural, one {# dia} other {# días}} restantes", "time_remaining.hours": "{number, plural, one {# hora} other {# horas}} restantes", diff --git a/app/soapbox/locales/he.json b/app/soapbox/locales/he.json index 00bf77b06..ab0a944c3 100644 --- a/app/soapbox/locales/he.json +++ b/app/soapbox/locales/he.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "טוען...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "נראה בלתי נראה", "missing_indicator.label": "לא נמצא", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "לא לפיד הכללי", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "כרגע", @@ -386,6 +398,7 @@ "tabs_bar.home": "בבית", "tabs_bar.news": "News", "tabs_bar.notifications": "התראות", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/hi.json b/app/soapbox/locales/hi.json index 7ab179141..0acaf2450 100644 --- a/app/soapbox/locales/hi.json +++ b/app/soapbox/locales/hi.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Loading...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Not found", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Home", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/hr.json b/app/soapbox/locales/hr.json index fda07ae63..69bd8af6f 100644 --- a/app/soapbox/locales/hr.json +++ b/app/soapbox/locales/hr.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Učitavam...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Preklopi vidljivost", "missing_indicator.label": "Nije nađen", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Dom", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifikacije", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/hu.json b/app/soapbox/locales/hu.json index ae45946e4..d93a5528a 100644 --- a/app/soapbox/locales/hu.json +++ b/app/soapbox/locales/hu.json @@ -226,6 +226,10 @@ "lists.subheading": "Listáid", "lists.view_all": "View all lists", "loading_indicator.label": "Betöltés...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Láthatóság állítása", "missing_indicator.label": "Nincs találat", "missing_indicator.sublabel": "Ez az erőforrás nem található", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Listázatlan", "regeneration_indicator.label": "Töltődik…", "regeneration_indicator.sublabel": "A saját idővonalad épp készül!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}nap", "relative_time.hours": "{number}ó", "relative_time.just_now": "most", @@ -386,6 +398,7 @@ "tabs_bar.home": "Saját", "tabs_bar.news": "News", "tabs_bar.notifications": "Értesítések", + "tabs_bar.post": "Post", "tabs_bar.search": "Keresés", "time_remaining.days": "{number, plural, one {# nap} other {# nap}} van hátra", "time_remaining.hours": "{number, plural, one {# óra} other {# óra}} van hátra", diff --git a/app/soapbox/locales/hy.json b/app/soapbox/locales/hy.json index db6ad6dfd..a962d0ed1 100644 --- a/app/soapbox/locales/hy.json +++ b/app/soapbox/locales/hy.json @@ -226,6 +226,10 @@ "lists.subheading": "Քո ցանկերը", "lists.view_all": "View all lists", "loading_indicator.label": "Բեռնվում է…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Ցուցադրել/թաքցնել", "missing_indicator.label": "Չգտնվեց", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Ծածուկ", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}օր", "relative_time.hours": "{number}ժ", "relative_time.just_now": "նոր", @@ -386,6 +398,7 @@ "tabs_bar.home": "Հիմնական", "tabs_bar.news": "News", "tabs_bar.notifications": "Ծանուցումներ", + "tabs_bar.post": "Post", "tabs_bar.search": "Փնտրել", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/id.json b/app/soapbox/locales/id.json index b14f9f21e..e8649cdfd 100644 --- a/app/soapbox/locales/id.json +++ b/app/soapbox/locales/id.json @@ -226,6 +226,10 @@ "lists.subheading": "Daftar Anda", "lists.view_all": "View all lists", "loading_indicator.label": "Tunggu sebentar...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Tampil/Sembunyikan", "missing_indicator.label": "Tidak ditemukan", "missing_indicator.sublabel": "Sumber daya tak bisa ditemukan", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Tak Terdaftar", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Linimasa anda sedang disiapkan!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Beranda", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifikasi", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/io.json b/app/soapbox/locales/io.json index 3f66cf855..32773fdc5 100644 --- a/app/soapbox/locales/io.json +++ b/app/soapbox/locales/io.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Kargante...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Chanjar videbleso", "missing_indicator.label": "Ne trovita", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Ne enlistigota", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Hemo", "tabs_bar.news": "News", "tabs_bar.notifications": "Savigi", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/it.json b/app/soapbox/locales/it.json index 82d774ce6..ac7454cfb 100644 --- a/app/soapbox/locales/it.json +++ b/app/soapbox/locales/it.json @@ -226,6 +226,10 @@ "lists.subheading": "Le tue liste", "lists.view_all": "View all lists", "loading_indicator.label": "Caricamento...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Imposta visibilità", "missing_indicator.label": "Non trovato", "missing_indicator.sublabel": "Risorsa non trovata", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Non elencato", "regeneration_indicator.label": "Caricamento in corso…", "regeneration_indicator.sublabel": "Stiamo preparando il tuo home feed!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}g", "relative_time.hours": "{number}o", "relative_time.just_now": "ora", @@ -386,6 +398,7 @@ "tabs_bar.home": "Home", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifiche", + "tabs_bar.post": "Post", "tabs_bar.search": "Cerca", "time_remaining.days": "{number, plural, one {# giorno} other {# giorni}} left", "time_remaining.hours": "{number, plural, one {# ora} other {# ore}} left", diff --git a/app/soapbox/locales/ja.json b/app/soapbox/locales/ja.json index c528f6387..765887151 100644 --- a/app/soapbox/locales/ja.json +++ b/app/soapbox/locales/ja.json @@ -226,6 +226,10 @@ "lists.subheading": "あなたのリスト", "lists.view_all": "View all lists", "loading_indicator.label": "読み込み中...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "表示切り替え", "missing_indicator.label": "見つかりません", "missing_indicator.sublabel": "見つかりませんでした", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "未収載", "regeneration_indicator.label": "読み込み中…", "regeneration_indicator.sublabel": "ホームタイムラインは準備中です!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}日前", "relative_time.hours": "{number}時間前", "relative_time.just_now": "今", @@ -386,6 +398,7 @@ "tabs_bar.home": "ホーム", "tabs_bar.news": "News", "tabs_bar.notifications": "通知", + "tabs_bar.post": "Post", "tabs_bar.search": "検索", "time_remaining.days": "残り{number}日", "time_remaining.hours": "残り{number}時間", diff --git a/app/soapbox/locales/ka.json b/app/soapbox/locales/ka.json index 65d831c81..481738fa6 100644 --- a/app/soapbox/locales/ka.json +++ b/app/soapbox/locales/ka.json @@ -226,6 +226,10 @@ "lists.subheading": "თქვენი სიები", "lists.view_all": "View all lists", "loading_indicator.label": "იტვირთება...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "ხილვადობის ჩართვა", "missing_indicator.label": "არაა ნაპოვნი", "missing_indicator.sublabel": "ამ რესურსის პოვნა ვერ მოხერხდა", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "ჩამოუთვლელი", "regeneration_indicator.label": "იტვირთება…", "regeneration_indicator.sublabel": "თქვენი სახლის ლენტა მზადდება!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}დღ", "relative_time.hours": "{number}სთ", "relative_time.just_now": "ახლა", @@ -386,6 +398,7 @@ "tabs_bar.home": "სახლი", "tabs_bar.news": "News", "tabs_bar.notifications": "შეტყობინებები", + "tabs_bar.post": "Post", "tabs_bar.search": "ძებნა", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/kk.json b/app/soapbox/locales/kk.json index 066148d0f..9b5202efe 100644 --- a/app/soapbox/locales/kk.json +++ b/app/soapbox/locales/kk.json @@ -226,6 +226,10 @@ "lists.subheading": "Тізімдеріңіз", "lists.view_all": "View all lists", "loading_indicator.label": "Жүктеу...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Көрінуді қосу", "missing_indicator.label": "Табылмады", "missing_indicator.sublabel": "Бұл ресурс табылмады", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Тізімсіз", "regeneration_indicator.label": "Жүктеу…", "regeneration_indicator.sublabel": "Жергілікті желі құрылуда!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}күн", "relative_time.hours": "{number}сағ", "relative_time.just_now": "жаңа", @@ -386,6 +398,7 @@ "tabs_bar.home": "Басты бет", "tabs_bar.news": "News", "tabs_bar.notifications": "Ескертпелер", + "tabs_bar.post": "Post", "tabs_bar.search": "Іздеу", "time_remaining.days": "{number, plural, one {# күн} other {# күн}}", "time_remaining.hours": "{number, plural, one {# сағат} other {# сағат}}", diff --git a/app/soapbox/locales/ko.json b/app/soapbox/locales/ko.json index f0892ce64..4961dbfdc 100644 --- a/app/soapbox/locales/ko.json +++ b/app/soapbox/locales/ko.json @@ -226,6 +226,10 @@ "lists.subheading": "당신의 리스트", "lists.view_all": "View all lists", "loading_indicator.label": "불러오는 중...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "표시 전환", "missing_indicator.label": "찾을 수 없습니다", "missing_indicator.sublabel": "이 리소스를 찾을 수 없었습니다", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "타임라인에 비표시", "regeneration_indicator.label": "불러오는 중…", "regeneration_indicator.sublabel": "당신의 홈 피드가 준비되는 중입니다!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}일 전", "relative_time.hours": "{number}시간 전", "relative_time.just_now": "방금", @@ -386,6 +398,7 @@ "tabs_bar.home": "홈", "tabs_bar.news": "News", "tabs_bar.notifications": "알림", + "tabs_bar.post": "Post", "tabs_bar.search": "검색", "time_remaining.days": "{number} 일 남음", "time_remaining.hours": "{number} 시간 남음", diff --git a/app/soapbox/locales/lt.json b/app/soapbox/locales/lt.json index e4846d9a9..6075f9c45 100644 --- a/app/soapbox/locales/lt.json +++ b/app/soapbox/locales/lt.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Loading...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Not found", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Home", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/lv.json b/app/soapbox/locales/lv.json index 49bd707fb..b5c33cfbc 100644 --- a/app/soapbox/locales/lv.json +++ b/app/soapbox/locales/lv.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Loading...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Not found", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Home", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/mk.json b/app/soapbox/locales/mk.json index debfff45a..48119dc0e 100644 --- a/app/soapbox/locales/mk.json +++ b/app/soapbox/locales/mk.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Loading...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Not found", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Дома", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/ms.json b/app/soapbox/locales/ms.json index 0b698b356..830c3b8d5 100644 --- a/app/soapbox/locales/ms.json +++ b/app/soapbox/locales/ms.json @@ -226,6 +226,10 @@ "lists.subheading": "Your lists", "lists.view_all": "View all lists", "loading_indicator.label": "Loading...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Not found", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Home", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/nl.json b/app/soapbox/locales/nl.json index 825c4d775..3bfcef44f 100644 --- a/app/soapbox/locales/nl.json +++ b/app/soapbox/locales/nl.json @@ -226,6 +226,10 @@ "lists.subheading": "Jouw lijsten", "lists.view_all": "View all lists", "loading_indicator.label": "Laden…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Media wel/niet tonen", "missing_indicator.label": "Niet gevonden", "missing_indicator.sublabel": "Deze hulpbron kan niet gevonden worden", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Minder openbaar", "regeneration_indicator.label": "Aan het laden…", "regeneration_indicator.sublabel": "Jouw tijdlijn wordt aangemaakt!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}u", "relative_time.just_now": "nu", @@ -386,6 +398,7 @@ "tabs_bar.home": "Start", "tabs_bar.news": "News", "tabs_bar.notifications": "Meldingen", + "tabs_bar.post": "Post", "tabs_bar.search": "Zoeken", "time_remaining.days": "{number, plural, one {# dag} other {# dagen}} te gaan", "time_remaining.hours": "{number, plural, one {# uur} other {# uur}} te gaan", diff --git a/app/soapbox/locales/nn.json b/app/soapbox/locales/nn.json index 1cba0fee2..25228000e 100644 --- a/app/soapbox/locales/nn.json +++ b/app/soapbox/locales/nn.json @@ -226,6 +226,10 @@ "lists.subheading": "Dine lister", "lists.view_all": "View all lists", "loading_indicator.label": "Laster...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Toggle visibility", "missing_indicator.label": "Ikkje funne", "missing_indicator.sublabel": "Denne ressursen ble ikkje funne", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Unlisted", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "now", @@ -386,6 +398,7 @@ "tabs_bar.home": "Heim", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/no.json b/app/soapbox/locales/no.json index 00a5d3b44..d1301021e 100644 --- a/app/soapbox/locales/no.json +++ b/app/soapbox/locales/no.json @@ -226,6 +226,10 @@ "lists.subheading": "Dine lister", "lists.view_all": "View all lists", "loading_indicator.label": "Laster...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Veksle synlighet", "missing_indicator.label": "Ikke funnet", "missing_indicator.sublabel": "Denne ressursen ble ikke funnet", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Uoppført", "regeneration_indicator.label": "Laster…", "regeneration_indicator.sublabel": "Dine startside forberedes!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "nå", @@ -386,6 +398,7 @@ "tabs_bar.home": "Hjem", "tabs_bar.news": "News", "tabs_bar.notifications": "Varslinger", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/oc.json b/app/soapbox/locales/oc.json index b3df31a0d..9ee10dc30 100644 --- a/app/soapbox/locales/oc.json +++ b/app/soapbox/locales/oc.json @@ -226,6 +226,10 @@ "lists.subheading": "Vòstras listas", "lists.view_all": "View all lists", "loading_indicator.label": "Cargament…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Modificar la visibilitat", "missing_indicator.label": "Pas trobat", "missing_indicator.sublabel": "Aquesta ressorsa es pas estada trobada", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Pas-listat", "regeneration_indicator.label": "Cargament…", "regeneration_indicator.sublabel": "Sèm a preparar vòstre flux d’acuèlh !", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "fa {number}d", "relative_time.hours": "fa {number}h", "relative_time.just_now": "ara", @@ -386,6 +398,7 @@ "tabs_bar.home": "Acuèlh", "tabs_bar.news": "News", "tabs_bar.notifications": "Notificacions", + "tabs_bar.post": "Post", "tabs_bar.search": "Recèrcas", "time_remaining.days": "demòra{number, plural, one { # jorn} other {n # jorns}}", "time_remaining.hours": "demòra{number, plural, one { # ora} other {n # oras}}", diff --git a/app/soapbox/locales/pl.json b/app/soapbox/locales/pl.json index 06fddf096..e7eaa2829 100644 --- a/app/soapbox/locales/pl.json +++ b/app/soapbox/locales/pl.json @@ -226,6 +226,10 @@ "lists.subheading": "Twoje listy", "lists.view_all": "View all lists", "loading_indicator.label": "Ładowanie…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Przełącz widoczność", "missing_indicator.label": "Nie znaleziono", "missing_indicator.sublabel": "Nie można odnaleźć tego zasobu", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Niewidoczny", "regeneration_indicator.label": "Ładuję…", "regeneration_indicator.sublabel": "Twoja oś czasu jest przygotowywana!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number} dni", "relative_time.hours": "{number} godz.", "relative_time.just_now": "teraz", @@ -386,6 +398,7 @@ "tabs_bar.home": "Strona główna", "tabs_bar.news": "News", "tabs_bar.notifications": "Powiadomienia", + "tabs_bar.post": "Post", "tabs_bar.search": "Szukaj", "time_remaining.days": "{number, plural, one {Pozostał # dzień} few {Pozostały # dni} many {Pozostało # dni} other {Pozostało # dni}}", "time_remaining.hours": "{number, plural, one {Pozostała # godzina} few {Pozostały # godziny} many {Pozostało # godzin} other {Pozostało # godzin}}", diff --git a/app/soapbox/locales/pt-BR.json b/app/soapbox/locales/pt-BR.json index 9caf601ce..35e63febf 100644 --- a/app/soapbox/locales/pt-BR.json +++ b/app/soapbox/locales/pt-BR.json @@ -226,6 +226,10 @@ "lists.subheading": "Suas listas", "lists.view_all": "View all lists", "loading_indicator.label": "Carregando...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Esconder/Mostrar", "missing_indicator.label": "Não encontrado", "missing_indicator.sublabel": "Esse recurso não pôde ser encontrado", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Não listada", "regeneration_indicator.label": "Carregando…", "regeneration_indicator.sublabel": "Sua página inicial está sendo preparada!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "agora", @@ -386,6 +398,7 @@ "tabs_bar.home": "Página inicial", "tabs_bar.news": "News", "tabs_bar.notifications": "Notificações", + "tabs_bar.post": "Post", "tabs_bar.search": "Buscar", "time_remaining.days": "{number, plural, one {# dia restante} other {# dias restantes}}", "time_remaining.hours": "{number, plural, one {# hora restante} other {# horas restantes}}", diff --git a/app/soapbox/locales/pt.json b/app/soapbox/locales/pt.json index a23b3b00b..41c7c39dc 100644 --- a/app/soapbox/locales/pt.json +++ b/app/soapbox/locales/pt.json @@ -226,6 +226,10 @@ "lists.subheading": "As tuas listas", "lists.view_all": "View all lists", "loading_indicator.label": "A carregar...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Mostrar/ocultar", "missing_indicator.label": "Não encontrado", "missing_indicator.sublabel": "Este recurso não foi encontrado", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Não listar", "regeneration_indicator.label": "A carregar…", "regeneration_indicator.sublabel": "A tua home está a ser preparada!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "agora", @@ -386,6 +398,7 @@ "tabs_bar.home": "Início", "tabs_bar.news": "News", "tabs_bar.notifications": "Notificações", + "tabs_bar.post": "Post", "tabs_bar.search": "Pesquisar", "time_remaining.days": "{number, plural, one {# dia restante} other {# dias restantes}}", "time_remaining.hours": "{number, plural, one {# hora restante} other {# horas restantes}}", diff --git a/app/soapbox/locales/ro.json b/app/soapbox/locales/ro.json index a1d6b2c15..e8c91ebb3 100644 --- a/app/soapbox/locales/ro.json +++ b/app/soapbox/locales/ro.json @@ -226,6 +226,10 @@ "lists.subheading": "Listele tale", "lists.view_all": "View all lists", "loading_indicator.label": "Încărcare...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Comutați vizibilitatea", "missing_indicator.label": "Nu a fost găsit", "missing_indicator.sublabel": "Această resursă nu a putut fi găsită", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Nelistat", "regeneration_indicator.label": "Încărcare…", "regeneration_indicator.sublabel": "Fluxul tău este în preparare!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}z", "relative_time.hours": "{number}h", "relative_time.just_now": "acum", @@ -386,6 +398,7 @@ "tabs_bar.home": "Acasă", "tabs_bar.news": "News", "tabs_bar.notifications": "Notificări", + "tabs_bar.post": "Post", "tabs_bar.search": "Căutare", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/ru.json b/app/soapbox/locales/ru.json index 44dd80c31..b908c87ac 100644 --- a/app/soapbox/locales/ru.json +++ b/app/soapbox/locales/ru.json @@ -226,6 +226,10 @@ "lists.subheading": "Ваши списки", "lists.view_all": "View all lists", "loading_indicator.label": "Загрузка...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Показать/скрыть", "missing_indicator.label": "Не найдено", "missing_indicator.sublabel": "Запрашиваемый ресурс не найден", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Скрытый", "regeneration_indicator.label": "Загрузка…", "regeneration_indicator.sublabel": "Ваша домашняя лента готовится!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}д", "relative_time.hours": "{number}ч", "relative_time.just_now": "только что", @@ -386,6 +398,7 @@ "tabs_bar.home": "Главная", "tabs_bar.news": "News", "tabs_bar.notifications": "Уведомления", + "tabs_bar.post": "Post", "tabs_bar.search": "Поиск", "time_remaining.days": "{number, plural, one {остался # день} few {осталось # дня} many {осталось # дней} other {осталось # дней}}", "time_remaining.hours": "{number, plural, one {остался # час} few {осталось # часа} many {осталось # часов} other {осталось # часов}}", diff --git a/app/soapbox/locales/sk.json b/app/soapbox/locales/sk.json index ed3ed3f6d..e42ea15b9 100644 --- a/app/soapbox/locales/sk.json +++ b/app/soapbox/locales/sk.json @@ -226,6 +226,10 @@ "lists.subheading": "Tvoje zoznamy", "lists.view_all": "View all lists", "loading_indicator.label": "Načítam...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Zapni/Vypni viditeľnosť", "missing_indicator.label": "Nenájdené", "missing_indicator.sublabel": "Tento zdroj sa ešte nepodarilo nájsť", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Verejne, ale nezobraziť v osi", "regeneration_indicator.label": "Načítava sa…", "regeneration_indicator.sublabel": "Vaša domovská nástenka sa pripravuje!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}dní", "relative_time.hours": "{number}hod", "relative_time.just_now": "teraz", @@ -386,6 +398,7 @@ "tabs_bar.home": "Domovská", "tabs_bar.news": "News", "tabs_bar.notifications": "Oboznámenia", + "tabs_bar.post": "Post", "tabs_bar.search": "Hľadaj", "time_remaining.days": "Ostáva {number, plural, one {# deň} few {# dní} many {# dní} other {# dní}}", "time_remaining.hours": "Ostáva {number, plural, one {# hodina} few {# hodín} many {# hodín} other {# hodiny}}", diff --git a/app/soapbox/locales/sl.json b/app/soapbox/locales/sl.json index 4d3771c38..2fa90820f 100644 --- a/app/soapbox/locales/sl.json +++ b/app/soapbox/locales/sl.json @@ -226,6 +226,10 @@ "lists.subheading": "Vaši seznami", "lists.view_all": "View all lists", "loading_indicator.label": "Nalaganje...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Preklopi vidljivost", "missing_indicator.label": "Ni najdeno", "missing_indicator.sublabel": "Tega vira ni bilo mogoče najti", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Ni prikazano", "regeneration_indicator.label": "Nalaganje…", "regeneration_indicator.sublabel": "Vaš domači vir se pripravlja!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "zdaj", @@ -386,6 +398,7 @@ "tabs_bar.home": "Domov", "tabs_bar.news": "News", "tabs_bar.notifications": "Obvestila", + "tabs_bar.post": "Post", "tabs_bar.search": "Iskanje", "time_remaining.days": "{number, plural, one {# dan} other {# dni}} je ostalo", "time_remaining.hours": "{number, plural, one {# ura} other {# ur}} je ostalo", diff --git a/app/soapbox/locales/sq.json b/app/soapbox/locales/sq.json index 8986d4239..974006f2f 100644 --- a/app/soapbox/locales/sq.json +++ b/app/soapbox/locales/sq.json @@ -226,6 +226,10 @@ "lists.subheading": "Listat tuaja", "lists.view_all": "View all lists", "loading_indicator.label": "Po ngarkohet…", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Ndërroni dukshmërinë", "missing_indicator.label": "S’u gjet", "missing_indicator.sublabel": "Ky burim s’u gjet dot", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Jo në lista", "regeneration_indicator.label": "Po ngarkohet…", "regeneration_indicator.sublabel": "Prurja juaj vetjake po përgatiteet!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "tani", @@ -386,6 +398,7 @@ "tabs_bar.home": "Kreu", "tabs_bar.news": "News", "tabs_bar.notifications": "Njoftime", + "tabs_bar.post": "Post", "tabs_bar.search": "Kërkim", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/sr-Latn.json b/app/soapbox/locales/sr-Latn.json index 5df68fdf1..c54e4bbc4 100644 --- a/app/soapbox/locales/sr-Latn.json +++ b/app/soapbox/locales/sr-Latn.json @@ -226,6 +226,10 @@ "lists.subheading": "Vaše liste", "lists.view_all": "View all lists", "loading_indicator.label": "Učitavam...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Uključi/isključi vidljivost", "missing_indicator.label": "Nije pronađeno", "missing_indicator.sublabel": "This resource could not be found", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Neizlistano", "regeneration_indicator.label": "Loading…", "regeneration_indicator.sublabel": "Your home feed is being prepared!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "sada", @@ -386,6 +398,7 @@ "tabs_bar.home": "Početna", "tabs_bar.news": "News", "tabs_bar.notifications": "Obaveštenja", + "tabs_bar.post": "Post", "tabs_bar.search": "Search", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/sr.json b/app/soapbox/locales/sr.json index 8f2f0503f..220e322f7 100644 --- a/app/soapbox/locales/sr.json +++ b/app/soapbox/locales/sr.json @@ -226,6 +226,10 @@ "lists.subheading": "Ваше листе", "lists.view_all": "View all lists", "loading_indicator.label": "Учитавам...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Укључи/искључи видљивост", "missing_indicator.label": "Није пронађено", "missing_indicator.sublabel": "Овај ресурс није пронађен", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Неизлистано", "regeneration_indicator.label": "Учитавање…", "regeneration_indicator.sublabel": "Ваша почетна страница се припрема!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "сада", @@ -386,6 +398,7 @@ "tabs_bar.home": "Почетна", "tabs_bar.news": "News", "tabs_bar.notifications": "Обавештења", + "tabs_bar.post": "Post", "tabs_bar.search": "Претрага", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/sv.json b/app/soapbox/locales/sv.json index 0639f4b0f..f6f0f241f 100644 --- a/app/soapbox/locales/sv.json +++ b/app/soapbox/locales/sv.json @@ -226,6 +226,10 @@ "lists.subheading": "Dina listor", "lists.view_all": "View all lists", "loading_indicator.label": "Laddar...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Växla synlighet", "missing_indicator.label": "Hittades inte", "missing_indicator.sublabel": "Den här resursen kunde inte hittas", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Olistad", "regeneration_indicator.label": "Laddar…", "regeneration_indicator.sublabel": "Ditt hemmaflöde förbereds!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}tim", "relative_time.just_now": "nu", @@ -386,6 +398,7 @@ "tabs_bar.home": "Hem", "tabs_bar.news": "News", "tabs_bar.notifications": "Meddelanden", + "tabs_bar.post": "Post", "tabs_bar.search": "Sök", "time_remaining.days": "{number, plural, one {# dag} other {# dagar}} kvar", "time_remaining.hours": "{number, plural, one {# timme} other {# timmar}} kvar", diff --git a/app/soapbox/locales/ta.json b/app/soapbox/locales/ta.json index 1db594b8f..8e50f00d8 100644 --- a/app/soapbox/locales/ta.json +++ b/app/soapbox/locales/ta.json @@ -226,6 +226,10 @@ "lists.subheading": "உங்கள் பட்டியல்கள்", "lists.view_all": "View all lists", "loading_indicator.label": "ஏற்றுதல்...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "நிலைமாற்று தெரியும்", "missing_indicator.label": "கிடைக்கவில்லை", "missing_indicator.sublabel": "இந்த ஆதாரத்தை காண முடியவில்லை", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "பட்டியலிடப்படாத", "regeneration_indicator.label": "சுமையேற்றம்…", "regeneration_indicator.sublabel": "உங்கள் வீட்டு ஊட்டம் தயார் செய்யப்படுகிறது!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "இப்பொழுது", @@ -386,6 +398,7 @@ "tabs_bar.home": "Home", "tabs_bar.news": "News", "tabs_bar.notifications": "Notifications", + "tabs_bar.post": "Post", "tabs_bar.search": "தேடு", "time_remaining.days": "{number, plural, one {# day} மற்ற {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} மற்ற {# hours}} left", diff --git a/app/soapbox/locales/te.json b/app/soapbox/locales/te.json index 311494d35..3acedaddf 100644 --- a/app/soapbox/locales/te.json +++ b/app/soapbox/locales/te.json @@ -226,6 +226,10 @@ "lists.subheading": "మీ జాబితాలు", "lists.view_all": "View all lists", "loading_indicator.label": "లోడ్ అవుతోంది...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "దృశ్యమానతను టోగుల్ చేయండి", "missing_indicator.label": "దొరకలేదు", "missing_indicator.sublabel": "ఈ వనరు కనుగొనబడలేదు", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "జాబితా చేయబడనిది", "regeneration_indicator.label": "లోడ్ అవుతోంది…", "regeneration_indicator.sublabel": "మీ హోమ్ ఫీడ్ సిద్ధమవుతోంది!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}d", "relative_time.hours": "{number}h", "relative_time.just_now": "ఇప్పుడు", @@ -386,6 +398,7 @@ "tabs_bar.home": "హోమ్", "tabs_bar.news": "News", "tabs_bar.notifications": "ప్రకటనలు", + "tabs_bar.post": "Post", "tabs_bar.search": "శోధన", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/th.json b/app/soapbox/locales/th.json index ecfad637b..0014b1ad1 100644 --- a/app/soapbox/locales/th.json +++ b/app/soapbox/locales/th.json @@ -226,6 +226,10 @@ "lists.subheading": "รายการของคุณ", "lists.view_all": "View all lists", "loading_indicator.label": "กำลังโหลด...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "เปิด/ปิดการมองเห็น", "missing_indicator.label": "ไม่พบ", "missing_indicator.sublabel": "ไม่พบทรัพยากรนี้", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "ไม่อยู่ในรายการ", "regeneration_indicator.label": "กำลังโหลด…", "regeneration_indicator.sublabel": "กำลังเตรียมฟีดหน้าแรกของคุณ!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number} วัน", "relative_time.hours": "{number} ชั่วโมง", "relative_time.just_now": "ตอนนี้", @@ -386,6 +398,7 @@ "tabs_bar.home": "หน้าแรก", "tabs_bar.news": "News", "tabs_bar.notifications": "การแจ้งเตือน", + "tabs_bar.post": "Post", "tabs_bar.search": "ค้นหา", "time_remaining.days": "เหลืออีก {number, plural, other {# วัน}}", "time_remaining.hours": "เหลืออีก {number, plural, other {# ชั่วโมง}}", diff --git a/app/soapbox/locales/tr.json b/app/soapbox/locales/tr.json index 4b2a22d75..0a8a96605 100644 --- a/app/soapbox/locales/tr.json +++ b/app/soapbox/locales/tr.json @@ -226,6 +226,10 @@ "lists.subheading": "Listeleriniz", "lists.view_all": "View all lists", "loading_indicator.label": "Yükleniyor...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Görünürlüğü değiştir", "missing_indicator.label": "Bulunamadı", "missing_indicator.sublabel": "Bu kaynak bulunamadı", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Listelenmemiş", "regeneration_indicator.label": "Yükleniyor…", "regeneration_indicator.sublabel": "Ev akışınız hazırlanıyor!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}g", "relative_time.hours": "{number}s", "relative_time.just_now": "şimdi", @@ -386,6 +398,7 @@ "tabs_bar.home": "Ana sayfa", "tabs_bar.news": "News", "tabs_bar.notifications": "Bildirimler", + "tabs_bar.post": "Post", "tabs_bar.search": "Ara", "time_remaining.days": "{number, plural, one {# gün} other {# gün}} kaldı", "time_remaining.hours": "{number, plural, one {# saat} other {# saat}} kaldı", diff --git a/app/soapbox/locales/uk.json b/app/soapbox/locales/uk.json index 85e54b2e4..3c5c3829e 100644 --- a/app/soapbox/locales/uk.json +++ b/app/soapbox/locales/uk.json @@ -226,6 +226,10 @@ "lists.subheading": "Ваші списки", "lists.view_all": "View all lists", "loading_indicator.label": "Завантаження...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "Показати/приховати", "missing_indicator.label": "Не знайдено", "missing_indicator.sublabel": "Ресурс не знайдений", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "Прихований", "regeneration_indicator.label": "Завантаження…", "regeneration_indicator.sublabel": "Ваша домашня стрічка готується!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}д", "relative_time.hours": "{number}г", "relative_time.just_now": "щойно", @@ -386,6 +398,7 @@ "tabs_bar.home": "Головна", "tabs_bar.news": "News", "tabs_bar.notifications": "Сповіщення", + "tabs_bar.post": "Post", "tabs_bar.search": "Пошук", "time_remaining.days": "{number, plural, one {# день} few {# дні} other {# днів}}", "time_remaining.hours": "{number, plural, one {# година} few {# години} other {# годин}}", diff --git a/app/soapbox/locales/zh-CN.json b/app/soapbox/locales/zh-CN.json index 18fe11955..93964b4ec 100644 --- a/app/soapbox/locales/zh-CN.json +++ b/app/soapbox/locales/zh-CN.json @@ -226,6 +226,10 @@ "lists.subheading": "你的列表", "lists.view_all": "View all lists", "loading_indicator.label": "加载中……", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "切换显示/隐藏", "missing_indicator.label": "找不到内容", "missing_indicator.sublabel": "无法找到此资源", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "不公开", "regeneration_indicator.label": "加载中……", "regeneration_indicator.sublabel": "你的主页时间轴正在准备中!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}天", "relative_time.hours": "{number}时", "relative_time.just_now": "刚刚", @@ -386,6 +398,7 @@ "tabs_bar.home": "主页", "tabs_bar.news": "News", "tabs_bar.notifications": "通知", + "tabs_bar.post": "Post", "tabs_bar.search": "搜索", "time_remaining.days": "剩余 {number, plural, one {# 天} other {# 天}}", "time_remaining.hours": "剩余 {number, plural, one {# 小时} other {# 小时}}", diff --git a/app/soapbox/locales/zh-HK.json b/app/soapbox/locales/zh-HK.json index 95c4e5a2c..df45adb4b 100644 --- a/app/soapbox/locales/zh-HK.json +++ b/app/soapbox/locales/zh-HK.json @@ -226,6 +226,10 @@ "lists.subheading": "列表", "lists.view_all": "View all lists", "loading_indicator.label": "載入中...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "打開或關上", "missing_indicator.label": "找不到內容", "missing_indicator.sublabel": "無法找到內容", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "公開", "regeneration_indicator.label": "載入中……", "regeneration_indicator.sublabel": "你的主頁時間軸正在準備中!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number}日", "relative_time.hours": "{number}小時", "relative_time.just_now": "剛剛", @@ -386,6 +398,7 @@ "tabs_bar.home": "主頁", "tabs_bar.news": "News", "tabs_bar.notifications": "通知", + "tabs_bar.post": "Post", "tabs_bar.search": "搜尋", "time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", diff --git a/app/soapbox/locales/zh-TW.json b/app/soapbox/locales/zh-TW.json index 36d6697c4..8071b910d 100644 --- a/app/soapbox/locales/zh-TW.json +++ b/app/soapbox/locales/zh-TW.json @@ -226,6 +226,10 @@ "lists.subheading": "您的名單", "lists.view_all": "View all lists", "loading_indicator.label": "讀取中...", + "login.fields.password_placeholder": "Password", + "login.fields.username_placeholder": "Username", + "login.log_in": "Log in", + "login.reset_password_hint": "Trouble logging in?", "media_gallery.toggle_visible": "切換可見性", "missing_indicator.label": "找不到", "missing_indicator.sublabel": "找不到此資源", @@ -299,6 +303,14 @@ "privacy.unlisted.short": "不公開", "regeneration_indicator.label": "載入中…", "regeneration_indicator.sublabel": "你的主頁時間軸正在準備中!", + "registration.agreement": "I agree to the {tos}.", + "registration.fields.confirm_placeholder": "Password (again)", + "registration.fields.email_placeholder": "E-Mail address", + "registration.fields.password_placeholder": "Password", + "registration.fields.username_placeholder": "Username", + "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", + "registration.sign_up": "Sign up", + "registration.tos": "Terms of Service", "relative_time.days": "{number} 天", "relative_time.hours": "{number} 小時", "relative_time.just_now": "剛剛", @@ -386,6 +398,7 @@ "tabs_bar.home": "主頁", "tabs_bar.news": "News", "tabs_bar.notifications": "通知", + "tabs_bar.post": "Post", "tabs_bar.search": "搜尋", "time_remaining.days": "剩餘{number, plural, one {# 天數} other {# 天數}}", "time_remaining.hours": "剩餘{number, plural, one {# 小時} other {# 小時}}",