'#662:Added translation strings for admin/library/FilesList.vue

This commit is contained in:
Jo Vuit 2019-02-09 16:44:30 +01:00
parent 22749ea2e2
commit ac7f403616
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<template>
<main v-title="labels.title">
<section class="ui vertical stripe segment">
<h2 class="ui header"><translate>Library files</translate></h2>
<h2 class="ui header"><translate :translate-context="'Content/Admin/Title'">Library files</translate></h2>
<div class="ui hidden divider"></div>
<library-files-table :show-library="true"></library-files-table>
</section>
@ -18,7 +18,7 @@ export default {
computed: {
labels() {
return {
title: this.$gettext("Files")
title: this.$pgettext('Head/Admin/Title', 'Files')
}
}
}