diff --git a/Web/Presenters/templates/Audio/bigplayer.xml b/Web/Presenters/templates/Audio/bigplayer.xml
index 7ec8a89f..7e8ffbe9 100644
--- a/Web/Presenters/templates/Audio/bigplayer.xml
+++ b/Web/Presenters/templates/Audio/bigplayer.xml
@@ -2,7 +2,7 @@
diff --git a/Web/static/css/main.css b/Web/static/css/main.css
index 4dd38356..7a087705 100644
--- a/Web/static/css/main.css
+++ b/Web/static/css/main.css
@@ -2974,7 +2974,9 @@ body.article .floating_sidebar, body.article .page_content {
}
hr {
- color: #d0cdcd;
+ background-color: #d8d8d8;
+ border: none;
+ height: 1px;
}
.searchList hr {
diff --git a/Web/static/js/al_music.js b/Web/static/js/al_music.js
index 5adb037e..fbbe7c82 100644
--- a/Web/static/js/al_music.js
+++ b/Web/static/js/al_music.js
@@ -12,6 +12,8 @@ function fastError(message) {
function getElapsedTime(fullTime, time) {
let timer = fullTime - time
+ if(timer < 0) return "-00:00"
+
return "-" + fmtTime(timer)
}
@@ -1187,7 +1189,7 @@ $(document).on("click", "#_audioAttachment", (e) => {
let count = Number(result.querySelector("input[name='count']").value)
if(count < 1) {
- document.querySelector(".audiosInsert").innerHTML = tr("no_results")
+ document.querySelector(".audiosInsert").innerHTML = thisc.context_type == "entity_audios" ? tr("no_audios_thisuser") : tr("no_results")
return
}
@@ -1210,7 +1212,7 @@ $(document).on("click", "#_audioAttachment", (e) => {
if(thisc.page < pagesCount) {
document.querySelector(".audiosInsert").insertAdjacentHTML("beforeend", `
- more...
+ ${tr("show_more_audios")}
`)
}
}
diff --git a/locales/en.strings b/locales/en.strings
index be6ec594..7fbe255e 100644
--- a/locales/en.strings
+++ b/locales/en.strings
@@ -837,6 +837,11 @@
"audios_group" = "Audios from group";
"playlists_group" = "Playlists from group";
+"play_tip" = "Play/pause";
+"repeat_tip" = "Repeat";
+"shuffle_tip" = "Shuffle";
+"mute_tip" = "Mute";
+
/* Notifications */
"feedback" = "Feedback";
diff --git a/locales/ru.strings b/locales/ru.strings
index 49855f82..63f40462 100644
--- a/locales/ru.strings
+++ b/locales/ru.strings
@@ -791,6 +791,11 @@
"audios_group" = "Аудиозаписи группы";
"playlists_group" = "Плейлисты группы";
+"play_tip" = "Проигрывание/пауза";
+"repeat_tip" = "Повторение";
+"shuffle_tip" = "Перемешать";
+"mute_tip" = "Заглушить";
+
/* Notifications */
"feedback" = "Ответы";