Use <translate> instead of to avoid extraction issues

This commit is contained in:
Eliot Berriot 2018-07-01 15:31:34 +02:00
parent 0f997f897c
commit 0cfefe7a19
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
74 changed files with 507 additions and 507 deletions

View file

@ -7,7 +7,7 @@
<div class="ui stackable three column grid">
<div class="column">
<h2 class="ui header">
{{ $gettext('Latest artists') }}
<translate>Latest artists</translate>
</h2>
<div :class="['ui', {'active': isLoadingArtists}, 'inline', 'loader']"></div>
<div v-if="artists.length > 0" v-for="artist in artists.slice(0, 3)" :key="artist.id" class="ui cards">
@ -16,7 +16,7 @@
</div>
<div class="column">
<h2 class="ui header">
{{ $gettext('Radios') }}
<translate>Radios</translate>
</h2>
<radio-card :type="'favorites'"></radio-card>
<radio-card :type="'random'"></radio-card>
@ -24,7 +24,7 @@
</div>
<div class="column">
<h2 class="ui header">
{{ $gettext('Music requests') }}
<translate>Music requests</translate>
</h2>
<request-form v-if="$store.state.auth.authenticated"></request-form>
</div>