Skip to content
Snippets Groups Projects
Commit 6388e2fb authored by Jo Vuit's avatar Jo Vuit
Browse files

Added context strings

parent d79e729e
Branches
No related tags found
No related merge requests found
...@@ -28,10 +28,10 @@ ...@@ -28,10 +28,10 @@
</table> </table>
<div class="center aligned segment" v-if="artist.albums.length > initialAlbums"> <div class="center aligned segment" v-if="artist.albums.length > initialAlbums">
<em v-if="!showAllAlbums" @click="showAllAlbums = true" class="expand"> <em v-if="!showAllAlbums" @click="showAllAlbums = true" class="expand">
<translate :translate-params="{count: artist.albums.length - initialAlbums}" :translate-n="artist.albums.length - initialAlbums" translate-plural="Show %{ count } more albums">Show 1 more album</translate> <translate :translate-context="'Content/Artist/Card.Link'" :translate-params="{count: artist.albums.length - initialAlbums}" :translate-n="artist.albums.length - initialAlbums" translate-plural="Show %{ count } more albums">Show 1 more album</translate>
</em> </em>
<em v-else @click="showAllAlbums = false" class="expand"> <em v-else @click="showAllAlbums = false" class="expand">
<translate>Collapse</translate> <translate :translate-context="'Content/Artist/Card.Link'">Collapse</translate>
</em> </em>
</div> </div>
</div> </div>
...@@ -39,10 +39,10 @@ ...@@ -39,10 +39,10 @@
<div class="extra content"> <div class="extra content">
<span> <span>
<i class="sound icon"></i> <i class="sound icon"></i>
<translate :translate-params="{count: artist.albums.length}" :translate-n="artist.albums.length" translate-plural="%{ count } albums">1 album</translate> <translate :translate-context="'Content/Artist/Card'" :translate-params="{count: artist.albums.length}" :translate-n="artist.albums.length" translate-plural="%{ count } albums">1 album</translate>
</span> </span>
<play-button :is-playable="isPlayable" class="mini basic orange right floated" :artist="artist.id"> <play-button :is-playable="isPlayable" class="mini basic orange right floated" :artist="artist.id">
<translate>Play all</translate> <translate :translate-context="'Content/Queue/Button.Label/Short, Verb'">Play all</translate>
</play-button> </play-button>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment