Merge branch '662-admin-library-FilesList.vue' into 'develop'

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

See merge request funkwhale/funkwhale!597
This commit is contained in:
Eliot Berriot 2019-02-11 09:32:06 +01:00
commit 39fb8c14cd
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')
}
}
}