i18n: Metadata
This commit is contained in:
parent
74bd0bae8c
commit
b62dc48896
|
@ -16,7 +16,7 @@
|
||||||
{{ group['first-release-date'] }}
|
{{ group['first-release-date'] }}
|
||||||
</td>
|
</td>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<a :href="getMusicbrainzUrl('release-group', group.id)" class="discrete link" target="_blank" title="View on MusicBrainz">
|
<a :href="getMusicbrainzUrl('release-group', group.id)" class="discrete link" target="_blank" :title="$t('View on MusicBrainz')">
|
||||||
{{ group.title }}
|
{{ group.title }}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
{{ track.position }}
|
{{ track.position }}
|
||||||
</td>
|
</td>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<a :href="getMusicbrainzUrl('recording', track.id)" class="discrete link" target="_blank" title="View on MusicBrainz">
|
<a :href="getMusicbrainzUrl('recording', track.id)" class="discrete link" target="_blank" :title="$t('View on MusicBrainz')">
|
||||||
{{ track.recording.title }}
|
{{ track.recording.title }}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="ui fluid search">
|
<div class="ui fluid search">
|
||||||
<div class="ui icon input">
|
<div class="ui icon input">
|
||||||
<input class="prompt" placeholder="Enter your search query..." type="text">
|
<input class="prompt" :placeholder="$t('Enter your search query...')" type="text">
|
||||||
<i class="search icon"></i>
|
<i class="search icon"></i>
|
||||||
</div>
|
</div>
|
||||||
<div class="results"></div>
|
<div class="results"></div>
|
||||||
|
@ -36,15 +36,15 @@ export default {
|
||||||
types: [
|
types: [
|
||||||
{
|
{
|
||||||
value: 'artist',
|
value: 'artist',
|
||||||
label: 'Artist'
|
label: this.$t('Artist')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'release',
|
value: 'release',
|
||||||
label: 'Album'
|
label: this.$t('Album')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'recording',
|
value: 'recording',
|
||||||
label: 'Track'
|
label: this.$t('Track')
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue