kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
Merge branch 'deactivate_account_from_profile' into 'develop'
Deactivate account from profile. Fixes #153 Closes #153 See merge request soapbox-pub/soapbox-fe!87tl-language-filters
commit
79dcbd781d
|
@ -19,6 +19,10 @@ export const CHANGE_EMAIL_REQUEST = 'CHANGE_EMAIL_REQUEST';
|
||||||
export const CHANGE_EMAIL_SUCCESS = 'CHANGE_EMAIL_SUCCESS';
|
export const CHANGE_EMAIL_SUCCESS = 'CHANGE_EMAIL_SUCCESS';
|
||||||
export const CHANGE_EMAIL_FAIL = 'CHANGE_EMAIL_FAIL';
|
export const CHANGE_EMAIL_FAIL = 'CHANGE_EMAIL_FAIL';
|
||||||
|
|
||||||
|
export const DEACTIVATE_ACCOUNT_REQUEST = 'DEACTIVATE_ACCOUNT_REQUEST';
|
||||||
|
export const DEACTIVATE_ACCOUNT_SUCCESS = 'DEACTIVATE_ACCOUNT_SUCCESS';
|
||||||
|
export const DEACTIVATE_ACCOUNT_FAIL = 'DEACTIVATE_ACCOUNT_FAIL';
|
||||||
|
|
||||||
export const CHANGE_PASSWORD_REQUEST = 'CHANGE_PASSWORD_REQUEST';
|
export const CHANGE_PASSWORD_REQUEST = 'CHANGE_PASSWORD_REQUEST';
|
||||||
export const CHANGE_PASSWORD_SUCCESS = 'CHANGE_PASSWORD_SUCCESS';
|
export const CHANGE_PASSWORD_SUCCESS = 'CHANGE_PASSWORD_SUCCESS';
|
||||||
export const CHANGE_PASSWORD_FAIL = 'CHANGE_PASSWORD_FAIL';
|
export const CHANGE_PASSWORD_FAIL = 'CHANGE_PASSWORD_FAIL';
|
||||||
|
@ -183,6 +187,23 @@ export function changeEmail(email, password) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function deactivateAccount(password) {
|
||||||
|
return (dispatch, getState) => {
|
||||||
|
dispatch({ type: DEACTIVATE_ACCOUNT_REQUEST });
|
||||||
|
return api(getState).post('/api/pleroma/disable_account', {
|
||||||
|
password,
|
||||||
|
}).then(response => {
|
||||||
|
if (response.data.error) throw response.data.error; // This endpoint returns HTTP 200 even on failure
|
||||||
|
dispatch({ type: DEACTIVATE_ACCOUNT_SUCCESS, response });
|
||||||
|
dispatch({ type: AUTH_LOGGED_OUT });
|
||||||
|
dispatch(showAlert('Successfully logged out.', ''));
|
||||||
|
}).catch(error => {
|
||||||
|
dispatch({ type: DEACTIVATE_ACCOUNT_FAIL, error, skipAlert: true });
|
||||||
|
throw error;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
export function changePassword(oldPassword, newPassword, confirmation) {
|
export function changePassword(oldPassword, newPassword, confirmation) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
dispatch({ type: CHANGE_PASSWORD_REQUEST });
|
dispatch({ type: CHANGE_PASSWORD_REQUEST });
|
||||||
|
|
|
@ -16,9 +16,20 @@ import {
|
||||||
changePassword,
|
changePassword,
|
||||||
fetchOAuthTokens,
|
fetchOAuthTokens,
|
||||||
revokeOAuthToken,
|
revokeOAuthToken,
|
||||||
|
deactivateAccount,
|
||||||
} from 'soapbox/actions/auth';
|
} from 'soapbox/actions/auth';
|
||||||
import { showAlert } from 'soapbox/actions/alerts';
|
import { showAlert } from 'soapbox/actions/alerts';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Security settings page for user account
|
||||||
|
Routed to /auth/edit
|
||||||
|
Includes following features:
|
||||||
|
- Change Email
|
||||||
|
- Change Password
|
||||||
|
- Sessions
|
||||||
|
- Deactivate Account
|
||||||
|
*/
|
||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
heading: { id: 'column.security', defaultMessage: 'Security' },
|
heading: { id: 'column.security', defaultMessage: 'Security' },
|
||||||
submit: { id: 'security.submit', defaultMessage: 'Save changes' },
|
submit: { id: 'security.submit', defaultMessage: 'Save changes' },
|
||||||
|
@ -35,6 +46,13 @@ const messages = defineMessages({
|
||||||
emailHeader: { id: 'security.headers.update_email', defaultMessage: 'Change Email' },
|
emailHeader: { id: 'security.headers.update_email', defaultMessage: 'Change Email' },
|
||||||
passwordHeader: { id: 'security.headers.update_password', defaultMessage: 'Change Password' },
|
passwordHeader: { id: 'security.headers.update_password', defaultMessage: 'Change Password' },
|
||||||
tokenHeader: { id: 'security.headers.tokens', defaultMessage: 'Sessions' },
|
tokenHeader: { id: 'security.headers.tokens', defaultMessage: 'Sessions' },
|
||||||
|
deactivateHeader: { id: 'security.headers.deactivate', defaultMessage: 'Deactivate Account' },
|
||||||
|
deactivateText: { id: 'security.text.deactivate', defaultMessage: 'To deactivate your account, you must first enter your account password, then click Deactivate Account. \
|
||||||
|
\n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \
|
||||||
|
\n In addition, any of your data that was previously distributed to other servers will remain on those servers.' },
|
||||||
|
deactivateSubmit: { id: 'security.submit.deactivate', defaultMessage: 'Deactivate Account' },
|
||||||
|
deactivateAccountSuccess: { id: 'security.deactivate_account.success', defaultMessage: 'Account successfully deactivated.' },
|
||||||
|
deactivateAccountFail: { id: 'security.deactivate_account.fail', defaultMessage: 'Account deactivation failed.' },
|
||||||
});
|
});
|
||||||
|
|
||||||
export default @injectIntl
|
export default @injectIntl
|
||||||
|
@ -53,6 +71,7 @@ class SecurityForm extends ImmutablePureComponent {
|
||||||
<ChangeEmailForm />
|
<ChangeEmailForm />
|
||||||
<ChangePasswordForm />
|
<ChangePasswordForm />
|
||||||
<AuthTokenList />
|
<AuthTokenList />
|
||||||
|
<DeactivateAccount />
|
||||||
</Column>
|
</Column>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -268,3 +287,67 @@ class AuthTokenList extends ImmutablePureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@connect(mapStateToProps)
|
||||||
|
@injectIntl
|
||||||
|
class DeactivateAccount extends ImmutablePureComponent {
|
||||||
|
|
||||||
|
static propTypes = {
|
||||||
|
dispatch: PropTypes.func.isRequired,
|
||||||
|
intl: PropTypes.object.isRequired,
|
||||||
|
};
|
||||||
|
|
||||||
|
state = {
|
||||||
|
password: '',
|
||||||
|
isLoading: false,
|
||||||
|
}
|
||||||
|
|
||||||
|
handleInputChange = e => {
|
||||||
|
this.setState({ [e.target.name]: e.target.value });
|
||||||
|
}
|
||||||
|
|
||||||
|
handleSubmit = e => {
|
||||||
|
const { password } = this.state;
|
||||||
|
const { dispatch, intl } = this.props;
|
||||||
|
this.setState({ isLoading: true });
|
||||||
|
return dispatch(deactivateAccount(password)).then(() => {
|
||||||
|
//this.setState({ email: '', password: '' }); // TODO: Maybe redirect user
|
||||||
|
dispatch(showAlert('', intl.formatMessage(messages.deactivateAccountSuccess)));
|
||||||
|
}).catch(error => {
|
||||||
|
this.setState({ password: '' });
|
||||||
|
dispatch(showAlert('', intl.formatMessage(messages.deactivateAccountFail)));
|
||||||
|
}).then(() => {
|
||||||
|
this.setState({ isLoading: false });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
const { intl } = this.props;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<SimpleForm onSubmit={this.handleSubmit}>
|
||||||
|
<h2>{intl.formatMessage(messages.deactivateHeader)}</h2>
|
||||||
|
<p className='hint'>
|
||||||
|
{intl.formatMessage(messages.deactivateText)}
|
||||||
|
</p>
|
||||||
|
<fieldset disabled={this.state.isLoading}>
|
||||||
|
<FieldsGroup>
|
||||||
|
<SimpleInput
|
||||||
|
type='password'
|
||||||
|
label={intl.formatMessage(messages.passwordFieldLabel)}
|
||||||
|
name='password'
|
||||||
|
onChange={this.handleInputChange}
|
||||||
|
value={this.state.password}
|
||||||
|
/>
|
||||||
|
<div className='actions'>
|
||||||
|
<button name='button' type='submit' className='btn button button-primary'>
|
||||||
|
{intl.formatMessage(messages.deactivateSubmit)}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</FieldsGroup>
|
||||||
|
</fieldset>
|
||||||
|
</SimpleForm>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "التبويقات",
|
"search_results.statuses": "التبويقات",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} و {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} و {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "টুট",
|
"search_results.statuses": "টুট",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {ফলাফল} other {ফলাফল}}",
|
"search_results.total": "{count, number} {count, plural, one {ফলাফল} other {ফলাফল}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}",
|
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Statuti",
|
"search_results.statuses": "Statuti",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {risultatu} other {risultati}}",
|
"search_results.total": "{count, number} {count, plural, one {risultatu} other {risultati}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Příspěvky",
|
"search_results.statuses": "Příspěvky",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {výsledek} few {výsledky} many {výsledku} other {výsledků}}",
|
"search_results.total": "{count, number} {count, plural, one {výsledek} few {výsledky} many {výsledku} other {výsledků}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Emailová addresa",
|
"security.fields.email.label": "Emailová addresa",
|
||||||
"security.fields.new_password.label": "Nové heslo",
|
"security.fields.new_password.label": "Nové heslo",
|
||||||
"security.fields.old_password.label": "Současné heslo",
|
"security.fields.old_password.label": "Současné heslo",
|
||||||
"security.fields.password.label": "Heslo",
|
"security.fields.password.label": "Heslo",
|
||||||
"security.fields.password_confirmation.label": "Nové heslo (znova)",
|
"security.fields.password_confirmation.label": "Nové heslo (znova)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Změnit email",
|
"security.headers.update_email": "Změnit email",
|
||||||
"security.headers.update_password": "Změnit heslo",
|
"security.headers.update_password": "Změnit heslo",
|
||||||
"security.submit": "Uložit změny",
|
"security.submit": "Uložit změny",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Změna emailu se nezdařila.",
|
"security.update_email.fail": "Změna emailu se nezdařila.",
|
||||||
"security.update_email.success": "Email úspěšně změněn.",
|
"security.update_email.success": "Email úspěšně změněn.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Tŵtiau",
|
"search_results.statuses": "Tŵtiau",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Trut",
|
"search_results.statuses": "Trut",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}",
|
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Beiträge",
|
"search_results.statuses": "Beiträge",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {Ergebnis} other {Ergebnisse}}",
|
"search_results.total": "{count, number} {count, plural, one {Ergebnis} other {Ergebnisse}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Emailaddresse",
|
"security.fields.email.label": "Emailaddresse",
|
||||||
"security.fields.new_password.label": "Neues Passwort",
|
"security.fields.new_password.label": "Neues Passwort",
|
||||||
"security.fields.old_password.label": "Bisheriges Passwort",
|
"security.fields.old_password.label": "Bisheriges Passwort",
|
||||||
"security.fields.password.label": "Passwort",
|
"security.fields.password.label": "Passwort",
|
||||||
"security.fields.password_confirmation.label": "Neues Passwort (wiederholen)",
|
"security.fields.password_confirmation.label": "Neues Passwort (wiederholen)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Email ändern",
|
"security.headers.update_email": "Email ändern",
|
||||||
"security.headers.update_password": "Passwort ändern",
|
"security.headers.update_password": "Passwort ändern",
|
||||||
"security.submit": "Änderungen speichern",
|
"security.submit": "Änderungen speichern",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Widerrufen",
|
"security.tokens.revoke": "Widerrufen",
|
||||||
"security.update_email.fail": "Änderung der Emailadresse fehlgeschlagen.",
|
"security.update_email.fail": "Änderung der Emailadresse fehlgeschlagen.",
|
||||||
"security.update_email.success": "Die neue Emailadresse wurde gespeichert.",
|
"security.update_email.success": "Die neue Emailadresse wurde gespeichert.",
|
||||||
|
|
|
@ -2400,6 +2400,26 @@
|
||||||
{
|
{
|
||||||
"defaultMessage": "Sessions",
|
"defaultMessage": "Sessions",
|
||||||
"id": "security.headers.tokens"
|
"id": "security.headers.tokens"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"defaultMessage": "Deactivate Account",
|
||||||
|
"id": "security.headers.deactivate"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"defaultMessage": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
|
"id": "security.text.deactivate"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"defaultMessage": "Deactivate Account",
|
||||||
|
"id": "security.submit.deactivate"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"defaultMessage": "Account successfully deactivated.",
|
||||||
|
"id": "security.deactivate_account.success"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"defaultMessage": "Account deactivation failed.",
|
||||||
|
"id": "security.deactivate_account.fail"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"path": "app/soapbox/features/security/index.json"
|
"path": "app/soapbox/features/security/index.json"
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Τουτ",
|
"search_results.statuses": "Τουτ",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, zero {αποτελέσματα} one {αποτέλεσμα} other {αποτελέσματα}}",
|
"search_results.total": "{count, number} {count, plural, zero {αποτελέσματα} one {αποτέλεσμα} other {αποτελέσματα}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Mesaĝoj",
|
"search_results.statuses": "Mesaĝoj",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {rezulto} other {rezultoj}}",
|
"search_results.total": "{count, number} {count, plural, one {rezulto} other {rezultoj}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
|
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
|
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Tuudid",
|
"search_results.statuses": "Tuudid",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {tulemus} other {tulemust}}",
|
"search_results.total": "{count, number} {count, plural, one {tulemus} other {tulemust}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Toot-ak",
|
"search_results.statuses": "Toot-ak",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {emaitza} other {emaitzak}}",
|
"search_results.total": "{count, number} {count, plural, one {emaitza} other {emaitzak}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "بوقها",
|
"search_results.statuses": "بوقها",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {نتیجه} other {نتیجه}}",
|
"search_results.total": "{count, number} {count, plural, one {نتیجه} other {نتیجه}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Tuuttaukset",
|
"search_results.statuses": "Tuuttaukset",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {tulos} other {tulosta}}",
|
"search_results.total": "{count, number} {count, plural, one {tulos} other {tulosta}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Pouets",
|
"search_results.statuses": "Pouets",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {résultat} other {résultats}}",
|
"search_results.total": "{count, number} {count, plural, one {résultat} other {résultats}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count,plural,one {result} outros {results}}",
|
"search_results.total": "{count, number} {count,plural,one {result} outros {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {תוצאה} other {תוצאות}}",
|
"search_results.total": "{count, number} {count, plural, one {תוצאה} other {תוצאות}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Tülkök",
|
"search_results.statuses": "Tülkök",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {találat} other {találat}}",
|
"search_results.total": "{count, number} {count, plural, one {találat} other {találat}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {արդյունք} other {արդյունք}}",
|
"search_results.total": "{count, number} {count, plural, one {արդյունք} other {արդյունք}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {hasil} other {hasil}}",
|
"search_results.total": "{count, number} {count, plural, one {hasil} other {hasil}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {rezulto} other {rezulti}}",
|
"search_results.total": "{count, number} {count, plural, one {rezulto} other {rezulti}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Toot",
|
"search_results.statuses": "Toot",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count} {count, plural, one {risultato} other {risultati}}",
|
"search_results.total": "{count} {count, plural, one {risultato} other {risultati}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "トゥート",
|
"search_results.statuses": "トゥート",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number}件の結果",
|
"search_results.total": "{count, number}件の結果",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "ტუტები",
|
"search_results.statuses": "ტუტები",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Жазбалар",
|
"search_results.statuses": "Жазбалар",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "툿",
|
"search_results.statuses": "툿",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number}건의 결과",
|
"search_results.total": "{count, number}건의 결과",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {resultaat} other {resultaten}}",
|
"search_results.total": "{count, number} {count, plural, one {resultaat} other {resultaten}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}",
|
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Tuts",
|
"search_results.statuses": "Tuts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}",
|
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Wpisy",
|
"search_results.statuses": "Wpisy",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {wynik} few {wyniki} many {wyników} more {wyników}}",
|
"search_results.total": "{count, number} {count, plural, one {wynik} few {wyniki} many {wyników} more {wyników}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
|
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
|
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Postări",
|
"search_results.statuses": "Postări",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Посты",
|
"search_results.statuses": "Посты",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {результат} few {результата} many {результатов} other {результатов}}",
|
"search_results.total": "{count, number} {count, plural, one {результат} few {результата} many {результатов} other {результатов}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Príspevky",
|
"search_results.statuses": "Príspevky",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {výsledok} many {výsledkov} other {výsledky}}",
|
"search_results.total": "{count, number} {count, plural, one {výsledok} many {výsledkov} other {výsledky}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Tuti",
|
"search_results.statuses": "Tuti",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultatov}}",
|
"search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultatov}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Mesazhe",
|
"search_results.statuses": "Mesazhe",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultate}}",
|
"search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultate}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {rezultat} few {rezultata} other {rezultata}}",
|
"search_results.total": "{count, number} {count, plural, one {rezultat} few {rezultata} other {rezultata}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Трубе",
|
"search_results.statuses": "Трубе",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {резултат} few {резултата} other {резултата}}",
|
"search_results.total": "{count, number} {count, plural, one {резултат} few {резултата} other {резултата}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, ett {result} andra {results}}",
|
"search_results.total": "{count, number} {count, plural, ett {result} andra {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Posts",
|
"search_results.statuses": "Posts",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} மற்ற {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} மற்ற {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "టూట్లు",
|
"search_results.statuses": "టూట్లు",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "โพสต์",
|
"search_results.statuses": "โพสต์",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, other {ผลลัพธ์}}",
|
"search_results.total": "{count, number} {count, plural, other {ผลลัพธ์}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Gönderiler",
|
"search_results.statuses": "Gönderiler",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {sonuç} other {sonuçlar}}",
|
"search_results.total": "{count, number} {count, plural, one {sonuç} other {sonuçlar}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "Дмухів",
|
"search_results.statuses": "Дмухів",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} {count, plural, one {результат} few {результати} many {результатів} other {результатів}}",
|
"search_results.total": "{count, number} {count, plural, one {результат} few {результати} many {результатів} other {результатів}}",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "嘟文",
|
"search_results.statuses": "嘟文",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "共 {count, number} 个结果",
|
"search_results.total": "共 {count, number} 个结果",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "文章",
|
"search_results.statuses": "文章",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} 項結果",
|
"search_results.total": "{count, number} 項結果",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
|
@ -379,15 +379,20 @@
|
||||||
"search_results.statuses": "嘟文",
|
"search_results.statuses": "嘟文",
|
||||||
"search_results.top": "Top",
|
"search_results.top": "Top",
|
||||||
"search_results.total": "{count, number} 項結果",
|
"search_results.total": "{count, number} 項結果",
|
||||||
|
"security.deactivate_account.fail": "Account deactivation failed.",
|
||||||
|
"security.deactivate_account.success": "Account successfully deactivated.",
|
||||||
"security.fields.email.label": "Email address",
|
"security.fields.email.label": "Email address",
|
||||||
"security.fields.new_password.label": "New password",
|
"security.fields.new_password.label": "New password",
|
||||||
"security.fields.old_password.label": "Current password",
|
"security.fields.old_password.label": "Current password",
|
||||||
"security.fields.password.label": "Password",
|
"security.fields.password.label": "Password",
|
||||||
"security.fields.password_confirmation.label": "New password (again)",
|
"security.fields.password_confirmation.label": "New password (again)",
|
||||||
|
"security.headers.deactivate": "Deactivate Account",
|
||||||
"security.headers.tokens": "Sessions",
|
"security.headers.tokens": "Sessions",
|
||||||
"security.headers.update_email": "Change Email",
|
"security.headers.update_email": "Change Email",
|
||||||
"security.headers.update_password": "Change Password",
|
"security.headers.update_password": "Change Password",
|
||||||
"security.submit": "Save changes",
|
"security.submit": "Save changes",
|
||||||
|
"security.submit.deactivate": "Deactivate Account",
|
||||||
|
"security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.",
|
||||||
"security.tokens.revoke": "Revoke",
|
"security.tokens.revoke": "Revoke",
|
||||||
"security.update_email.fail": "Update email failed.",
|
"security.update_email.fail": "Update email failed.",
|
||||||
"security.update_email.success": "Email successfully updated.",
|
"security.update_email.success": "Email successfully updated.",
|
||||||
|
|
Ładowanie…
Reference in New Issue