Deactivate --> Delete

tl-language-filters
Alex Gleason 2020-07-20 15:23:38 -05:00
rodzic 79dcbd781d
commit c0dc03b3e4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
65 zmienionych plików z 355 dodań i 352 usunięć

Wyświetl plik

@ -19,9 +19,9 @@ export const CHANGE_EMAIL_REQUEST = 'CHANGE_EMAIL_REQUEST';
export const CHANGE_EMAIL_SUCCESS = 'CHANGE_EMAIL_SUCCESS';
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 DELETE_ACCOUNT_REQUEST = 'DELETE_ACCOUNT_REQUEST';
export const DELETE_ACCOUNT_SUCCESS = 'DELETE_ACCOUNT_SUCCESS';
export const DELETE_ACCOUNT_FAIL = 'DELETE_ACCOUNT_FAIL';
export const CHANGE_PASSWORD_REQUEST = 'CHANGE_PASSWORD_REQUEST';
export const CHANGE_PASSWORD_SUCCESS = 'CHANGE_PASSWORD_SUCCESS';
@ -187,18 +187,18 @@ export function changeEmail(email, password) {
};
}
export function deactivateAccount(password) {
export function deleteAccount(password) {
return (dispatch, getState) => {
dispatch({ type: DEACTIVATE_ACCOUNT_REQUEST });
return api(getState).post('/api/pleroma/disable_account', {
dispatch({ type: DELETE_ACCOUNT_REQUEST });
return api(getState).post('/api/pleroma/delete_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: DELETE_ACCOUNT_SUCCESS, response });
dispatch({ type: AUTH_LOGGED_OUT });
dispatch(showAlert('Successfully logged out.', ''));
dispatch(showAlert('Successfully logged out.', ''));
}).catch(error => {
dispatch({ type: DEACTIVATE_ACCOUNT_FAIL, error, skipAlert: true });
dispatch({ type: DELETE_ACCOUNT_FAIL, error, skipAlert: true });
throw error;
});
};

Wyświetl plik

@ -16,7 +16,7 @@ import {
changePassword,
fetchOAuthTokens,
revokeOAuthToken,
deactivateAccount,
deleteAccount,
} from 'soapbox/actions/auth';
import { showAlert } from 'soapbox/actions/alerts';
@ -46,13 +46,11 @@ const messages = defineMessages({
emailHeader: { id: 'security.headers.update_email', defaultMessage: 'Change Email' },
passwordHeader: { id: 'security.headers.update_password', defaultMessage: 'Change Password' },
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.' },
deleteHeader: { id: 'security.headers.delete', defaultMessage: 'Delete Account' },
deleteText: { id: 'security.text.delete', defaultMessage: 'To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It\'s not guaranteed that all servers will purge your account.' },
deleteSubmit: { id: 'security.submit.delete', defaultMessage: 'Delete Account' },
deleteAccountSuccess: { id: 'security.delete_account.success', defaultMessage: 'Account successfully deleted.' },
deleteAccountFail: { id: 'security.delete_account.fail', defaultMessage: 'Account deletion failed.' },
});
export default @injectIntl
@ -310,12 +308,12 @@ class DeactivateAccount extends ImmutablePureComponent {
const { password } = this.state;
const { dispatch, intl } = this.props;
this.setState({ isLoading: true });
return dispatch(deactivateAccount(password)).then(() => {
return dispatch(deleteAccount(password)).then(() => {
//this.setState({ email: '', password: '' }); // TODO: Maybe redirect user
dispatch(showAlert('', intl.formatMessage(messages.deactivateAccountSuccess)));
dispatch(showAlert('', intl.formatMessage(messages.deleteAccountSuccess)));
}).catch(error => {
this.setState({ password: '' });
dispatch(showAlert('', intl.formatMessage(messages.deactivateAccountFail)));
dispatch(showAlert('', intl.formatMessage(messages.deleteAccountFail)));
}).then(() => {
this.setState({ isLoading: false });
});
@ -326,9 +324,9 @@ class DeactivateAccount extends ImmutablePureComponent {
return (
<SimpleForm onSubmit={this.handleSubmit}>
<h2>{intl.formatMessage(messages.deactivateHeader)}</h2>
<h2>{intl.formatMessage(messages.deleteHeader)}</h2>
<p className='hint'>
{intl.formatMessage(messages.deactivateText)}
{intl.formatMessage(messages.deleteText)}
</p>
<fieldset disabled={this.state.isLoading}>
<FieldsGroup>
@ -341,7 +339,7 @@ class DeactivateAccount extends ImmutablePureComponent {
/>
<div className='actions'>
<button name='button' type='submit' className='btn button button-primary'>
{intl.formatMessage(messages.deactivateSubmit)}
{intl.formatMessage(messages.deleteSubmit)}
</button>
</div>
</FieldsGroup>

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "التبويقات",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "টুট",
"search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {ফলাফল} other {ফলাফল}}",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Statuti",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Příspěvky",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Emailová addresa",
"security.fields.new_password.label": "Nové heslo",
"security.fields.old_password.label": "Současné heslo",
"security.fields.password.label": "Heslo",
"security.fields.password_confirmation.label": "Nové heslo (znova)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Změnit email",
"security.headers.update_password": "Změnit heslo",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Změna emailu se nezdařila.",
"security.update_email.success": "Email úspěšně změněn.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Tŵtiau",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Trut",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Beiträge",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Emailaddresse",
"security.fields.new_password.label": "Neues Passwort",
"security.fields.old_password.label": "Bisheriges Passwort",
"security.fields.password.label": "Passwort",
"security.fields.password_confirmation.label": "Neues Passwort (wiederholen)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Email ändern",
"security.headers.update_password": "Passwort ändern",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Widerrufen",
"security.update_email.fail": "Änderung der Emailadresse fehlgeschlagen.",
"security.update_email.success": "Die neue Emailadresse wurde gespeichert.",

Wyświetl plik

@ -1271,7 +1271,7 @@
{
"descriptors": [
{
"defaultMessage": "Add media attachment",
"defaultMessage": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)",
"id": "upload_button.label"
}
],
@ -2402,24 +2402,24 @@
"id": "security.headers.tokens"
},
{
"defaultMessage": "Deactivate Account",
"id": "security.headers.deactivate"
"defaultMessage": "Delete Account",
"id": "security.headers.delete"
},
{
"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": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"id": "security.text.delete"
},
{
"defaultMessage": "Deactivate Account",
"id": "security.submit.deactivate"
"defaultMessage": "Delete Account",
"id": "security.submit.delete"
},
{
"defaultMessage": "Account successfully deactivated.",
"id": "security.deactivate_account.success"
"defaultMessage": "Account successfully deleted.",
"id": "security.delete_account.success"
},
{
"defaultMessage": "Account deactivation failed.",
"id": "security.deactivate_account.fail"
"defaultMessage": "Account deletion failed.",
"id": "security.delete_account.fail"
}
],
"path": "app/soapbox/features/security/index.json"
@ -2941,14 +2941,6 @@
"defaultMessage": "Post",
"id": "tabs_bar.post"
},
{
"defaultMessage": "Switch to light theme",
"id": "tabs_bar.theme_toggle_light"
},
{
"defaultMessage": "Switch to dark theme",
"id": "tabs_bar.theme_toggle_dark"
},
{
"defaultMessage": "Home",
"id": "tabs_bar.home"
@ -2972,6 +2964,19 @@
],
"path": "app/soapbox/features/ui/components/tabs_bar.json"
},
{
"descriptors": [
{
"defaultMessage": "Switch to light theme",
"id": "tabs_bar.theme_toggle_light"
},
{
"defaultMessage": "Switch to dark theme",
"id": "tabs_bar.theme_toggle_dark"
}
],
"path": "app/soapbox/features/ui/components/theme_toggle.json"
},
{
"descriptors": [
{

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Τουτ",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Mesaĝoj",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Tuudid",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Toot-ak",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "بوق‌ها",
"search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {نتیجه} other {نتیجه}}",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Tuuttaukset",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Pouets",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {תוצאה} other {תוצאות}}",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Tülkök",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {արդյունք} other {արդյունք}}",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Toot",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "トゥート",
"search_results.top": "Top",
"search_results.total": "{count, number}件の結果",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "ტუტები",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Жазбалар",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "툿",
"search_results.top": "Top",
"search_results.total": "{count, number}건의 결과",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Tuts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Wpisy",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Postări",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Посты",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Príspevky",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Tuti",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Mesazhe",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Трубе",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Posts",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "టూట్లు",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "โพสต์",
"search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, other {ผลลัพธ์}}",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Gönderiler",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "Дмухів",
"search_results.top": "Top",
"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.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "嘟文",
"search_results.top": "Top",
"search_results.total": "共 {count, number} 个结果",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "文章",
"search_results.top": "Top",
"search_results.total": "{count, number} 項結果",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",

Wyświetl plik

@ -379,20 +379,20 @@
"search_results.statuses": "嘟文",
"search_results.top": "Top",
"search_results.total": "{count, number} 項結果",
"security.deactivate_account.fail": "Account deactivation failed.",
"security.deactivate_account.success": "Account successfully deactivated.",
"security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.",
"security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password",
"security.fields.password.label": "Password",
"security.fields.password_confirmation.label": "New password (again)",
"security.headers.deactivate": "Deactivate Account",
"security.headers.delete": "Delete Account",
"security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password",
"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.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
"security.tokens.revoke": "Revoke",
"security.update_email.fail": "Update email failed.",
"security.update_email.success": "Email successfully updated.",