Merge branch 'master' into v2.1

This commit is contained in:
Andy Heathershaw 2018-07-14 08:22:38 +01:00
commit e2d66fd228
2 changed files with 2 additions and 1 deletions

View File

@ -51,6 +51,7 @@ return [
'others' => ' others'
],
'analyse_photos_failed' => 'The following items could not be analysed and were removed:',
'analyse_photos_failed_metadata' => 'The following items could not be analysed:',
'anonymous_users' => 'Anonymous (not logged in)',
'bulk_photos_changed' => ':number photo was updated successfully.|:number photos were updated successfully.',
'cannot_delete_own_user_account' => 'It is not possible to delete your own user account. Please ask another administrator to delete it for you.',

View File

@ -65,7 +65,7 @@
<p>Your analysis has completed.</p>
<div v-if="numberFailed > 0">
<p class="text-danger">@lang('admin.analyse_photos_failed')</p>
<p class="text-danger">@lang('admin.analyse_photos_failed_metadata')</p>
<ul class="text-danger" v-for="image in imagesFailed">
<li><span v-text="image.name"></span>: <span v-text="image.reason"></span></li>
</ul>