mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 22:48:18 +00:00
Clean up strings #3404
This commit is contained in:
@@ -112,7 +112,7 @@
|
|||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<!-- Form Errors -->
|
<!-- Form Errors -->
|
||||||
<div class="alert alert-danger" v-if="createForm.errors.length > 0">
|
<div class="alert alert-danger" v-if="createForm.errors.length > 0">
|
||||||
<p><strong>{{ $t('firefly.whoops') }}</strong> {{ $t('firefly.something_wrong') }}</p>
|
<p><strong>{{ $t('firefly.profile_whoops') }}</strong> {{ $t('firefly.profile_something_wrong') }}</p>
|
||||||
<br>
|
<br>
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="error in createForm.errors">
|
<li v-for="error in createForm.errors">
|
||||||
@@ -180,7 +180,7 @@
|
|||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<!-- Form Errors -->
|
<!-- Form Errors -->
|
||||||
<div class="alert alert-danger" v-if="editForm.errors.length > 0">
|
<div class="alert alert-danger" v-if="editForm.errors.length > 0">
|
||||||
<p><strong>{{ $t('firefly.whoops') }}</strong> {{ $t('firefly.something_wrong') }}</p>
|
<p><strong>{{ $t('firefly.profile_whoops') }}</strong> {{ $t('firefly.profile_something_wrong') }}</p>
|
||||||
<br>
|
<br>
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="error in editForm.errors">
|
<li v-for="error in editForm.errors">
|
||||||
@@ -226,7 +226,7 @@
|
|||||||
<button type="button" class="btn btn-default" data-dismiss="modal">{{ $t('firefly.close') }}</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ $t('firefly.close') }}</button>
|
||||||
|
|
||||||
<button type="button" class="btn btn-primary" @click="update">
|
<button type="button" class="btn btn-primary" @click="update">
|
||||||
{{ $t('firefly.save_changes') }}
|
{{ $t('firefly.profile_save_changes') }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -356,7 +356,7 @@
|
|||||||
if (typeof error.response.data === 'object') {
|
if (typeof error.response.data === 'object') {
|
||||||
form.errors = _.flatten(_.toArray(error.response.data));
|
form.errors = _.flatten(_.toArray(error.response.data));
|
||||||
} else {
|
} else {
|
||||||
form.errors = [$t('firefly.try_again')];
|
form.errors = [$t('firefly.profile_try_again')];
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@@ -93,7 +93,7 @@
|
|||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<!-- Form Errors -->
|
<!-- Form Errors -->
|
||||||
<div class="alert alert-danger" v-if="form.errors.length > 0">
|
<div class="alert alert-danger" v-if="form.errors.length > 0">
|
||||||
<p><strong>{{ $t('firefly.whoops') }}</strong> {{ $t('firefly.something_wrong') }}</p>
|
<p><strong>{{ $t('firefly.profile_whoops') }}</strong> {{ $t('firefly.profile_something_wrong') }}</p>
|
||||||
<br>
|
<br>
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="error in form.errors">
|
<li v-for="error in form.errors">
|
||||||
@@ -271,7 +271,7 @@
|
|||||||
if (typeof error.response.data === 'object') {
|
if (typeof error.response.data === 'object') {
|
||||||
this.form.errors = _.flatten(_.toArray(error.response.data));
|
this.form.errors = _.flatten(_.toArray(error.response.data));
|
||||||
} else {
|
} else {
|
||||||
this.form.errors = [ $t('firefly.try_again') ];
|
this.form.errors = [ $t('firefly.profile_try_again') ];
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@@ -664,7 +664,7 @@ return [
|
|||||||
'profile_oauth_name_help' => 'Something your users will recognize and trust.',
|
'profile_oauth_name_help' => 'Something your users will recognize and trust.',
|
||||||
'profile_oauth_redirect_url' => 'Redirect URL',
|
'profile_oauth_redirect_url' => 'Redirect URL',
|
||||||
'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.',
|
'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.',
|
||||||
'profile_authorized_apps' => 'Authorized Applications',
|
'profile_authorized_apps' => 'Authorized applications',
|
||||||
'profile_authorized_clients' => 'Authorized clients',
|
'profile_authorized_clients' => 'Authorized clients',
|
||||||
'profile_scopes' => 'Scopes',
|
'profile_scopes' => 'Scopes',
|
||||||
'profile_revoke' => 'Revoke',
|
'profile_revoke' => 'Revoke',
|
||||||
@@ -672,9 +672,13 @@ return [
|
|||||||
'profile_personal_access_token' => 'Personal Access Token',
|
'profile_personal_access_token' => 'Personal Access Token',
|
||||||
'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.',
|
'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.',
|
||||||
'profile_no_personal_access_token' => 'You have not created any personal access tokens.',
|
'profile_no_personal_access_token' => 'You have not created any personal access tokens.',
|
||||||
'profile_create_new_token' => 'Create New Token',
|
'profile_create_new_token' => 'Create new token',
|
||||||
'profile_create_token' => 'Create Token',
|
'profile_create_token' => 'Create token',
|
||||||
'profile_create' => 'Create',
|
'profile_create' => 'Create',
|
||||||
|
'profile_save_changes' => 'Save changes',
|
||||||
|
'profile_whoops' => 'Whoops!',
|
||||||
|
'profile_something_wrong' => 'Something went wrong!',
|
||||||
|
'profile_try_again' => 'Something went wrong. Please try again.',
|
||||||
|
|
||||||
// export data:
|
// export data:
|
||||||
'import_and_export_menu' => 'Import and export',
|
'import_and_export_menu' => 'Import and export',
|
||||||
|
Reference in New Issue
Block a user