diff --git a/approot/artists.xml b/approot/artists.xml index f4e85f7d..6b566a2c 100644 --- a/approot/artists.xml +++ b/approot/artists.xml @@ -37,4 +37,9 @@ ${name class="text-decoration-none link-secondary"} + + ${elements class="d-grid gap-3"} + ${loading-indicator} + + diff --git a/approot/messages.xml b/approot/messages.xml index 5659e0e4..56a6daa8 100644 --- a/approot/messages.xml +++ b/approot/messages.xml @@ -80,6 +80,7 @@ Fetching track features from AcousticBrainz: {1}/{2} tracks ({3}%)... Reloading similarity engine: {1}%... Scanning files: {1}/{2} files ({3}%)... +Step status New user diff --git a/approot/messages_fr.xml b/approot/messages_fr.xml index b84125ff..345b5cdd 100644 --- a/approot/messages_fr.xml +++ b/approot/messages_fr.xml @@ -80,6 +80,7 @@ Récupération des métadonnées AcousticBrainz : {1}/{2} fichiers ({3}%)... Rechargement du moteur de recommandation : {1}%... Scan des fichiers : {1}/{2} fichiers ({3}%)... +Statut de l'étape Ajouter diff --git a/approot/messages_it.xml b/approot/messages_it.xml index 802ec996..230ae011 100644 --- a/approot/messages_it.xml +++ b/approot/messages_it.xml @@ -80,6 +80,7 @@ Ricarica motore di tracce simili: {1}%... Scansione files: {1}/{2} files ({3}%)... + Nuovo utente Amministratore diff --git a/approot/messages_zh.xml b/approot/messages_zh.xml index 0354f23a..46f10ddd 100644 --- a/approot/messages_zh.xml +++ b/approot/messages_zh.xml @@ -81,6 +81,7 @@ 重载相似引擎中 {1}%... 扫描文件中: {1}/{2} 文件 ({3}%)... + 新建用户 管理员 diff --git a/approot/misc.xml b/approot/misc.xml index 4e1cf978..195c305f 100644 --- a/approot/misc.xml +++ b/approot/misc.xml @@ -10,7 +10,7 @@ - ${elements class="d-grid gap-3"} + ${elements} ${loading-indicator} diff --git a/approot/playqueue.xml b/approot/playqueue.xml index 3746dcf9..77c17d26 100644 --- a/approot/playqueue.xml +++ b/approot/playqueue.xml @@ -31,13 +31,13 @@ -
+
${cover}
-
-
${name}
- ${}${release class="text-decoration-none link-success"}${} +
+
${name}
+ ${}${release class="text-decoration-none link-success text-truncate"}${}
${duration} diff --git a/approot/releases.xml b/approot/releases.xml index 99b1b05e..5f6fc6a6 100644 --- a/approot/releases.xml +++ b/approot/releases.xml @@ -39,8 +39,8 @@ -
-
+
+
${cover class="shadow-sm"}
diff --git a/approot/tracks.xml b/approot/tracks.xml index 9e768216..9a1873ce 100644 --- a/approot/tracks.xml +++ b/approot/tracks.xml @@ -40,13 +40,13 @@ -
+
${cover}
-
-
${name}
- ${}${release class="text-decoration-none link-success"}${} +
+
${name}
+ ${}${release class="text-decoration-none link-success text-truncate"}${}
${duration} diff --git a/docroot/css/lms.css b/docroot/css/lms.css index 627e7584..5a158556 100644 --- a/docroot/css/lms.css +++ b/docroot/css/lms.css @@ -9,8 +9,8 @@ body { } .Lms-cover-small { - width: 72px; - min-width: 72px; + width: 64px; + min-width: 64px; } .Lms-notification-container { diff --git a/src/lms/ui/explore/ArtistsView.cpp b/src/lms/ui/explore/ArtistsView.cpp index 1c4c0a89..d67a601f 100644 --- a/src/lms/ui/explore/ArtistsView.cpp +++ b/src/lms/ui/explore/ArtistsView.cpp @@ -85,7 +85,7 @@ Artists::Artists(Filters& filters) refreshArtistLinkTypes(); }); - _container = bindNew("artists"); + _container = bindNew("artists", Wt::WString::tr("Lms.Explore.Artists.template.container")); _container->onRequestElements.connect([this] { addSome(); diff --git a/src/lms/ui/explore/SearchView.cpp b/src/lms/ui/explore/SearchView.cpp index 4ef0dee2..3b3cdf69 100644 --- a/src/lms/ui/explore/SearchView.cpp +++ b/src/lms/ui/explore/SearchView.cpp @@ -44,7 +44,7 @@ namespace UserInterface { addFunction("tr", &Wt::WTemplate::Functions::tr); - _artists = bindNew("artists", Wt::WString::tr("Lms.infinite-scrolling-container")); + _artists = bindNew("artists", Wt::WString::tr("Lms.Explore.Artists.template.container")); _artists->onRequestElements.connect([this] { addSomeArtists(); }); _releases = bindNew("releases", Wt::WString::tr("Lms.Explore.Releases.template.container"));