From c7b39cf9c931b2e36c6628c93bbb216233836b94 Mon Sep 17 00:00:00 2001 From: Bat Date: Sun, 15 Apr 2018 11:45:56 +0100 Subject: [PATCH] I18n: library --- front/src/components/library/Album.vue | 16 +++--- front/src/components/library/Artist.vue | 15 ++++-- front/src/components/library/Artists.vue | 10 ++-- front/src/components/library/Home.vue | 6 +-- front/src/components/library/Library.vue | 17 +++--- front/src/components/library/Radios.vue | 18 ++++--- front/src/components/library/Track.vue | 31 ++++++----- po/funkwhale.pot | 68 ++++++++++++++++++++++++ 8 files changed, 129 insertions(+), 52 deletions(-) diff --git a/front/src/components/library/Album.vue b/front/src/components/library/Album.vue index 1e96757c3..1681d46e3 100644 --- a/front/src/components/library/Album.vue +++ b/front/src/components/library/Album.vue @@ -10,30 +10,30 @@
{{ album.title }} -
- Album containing {{ album.tracks.length }} tracks, - by + + {{ album.tracks.length }} + {{ album.artist.name }} -
+
- Play all + - Search on wikipedia + - View on MusicBrainz +
-

Tracks

+

diff --git a/front/src/components/library/Artist.vue b/front/src/components/library/Artist.vue index 07d8cbbc7..5c17ac6af 100644 --- a/front/src/components/library/Artist.vue +++ b/front/src/components/library/Artist.vue @@ -10,26 +10,31 @@
{{ artist.name }} -
{{ totalTracks }} tracks in {{ albums.length }} albums
+
+ + {{ totalTracks }} + {{ albums.length }} + +
- Play all albums + - Search on wikipedia + - View on MusicBrainz +
-

Albums by this artist

+

diff --git a/front/src/components/library/Artists.vue b/front/src/components/library/Artists.vue index 72ad108f1..0811f0aa7 100644 --- a/front/src/components/library/Artists.vue +++ b/front/src/components/library/Artists.vue @@ -1,15 +1,15 @@