mirror of
https://github.com/heyarne/airsonic-ui.git
synced 2026-05-06 18:33:38 +02:00
Correctly inflect "track" in collection info
This commit is contained in:
parent
c79f06cbd5
commit
22eeeac42b
1 changed files with 2 additions and 1 deletions
|
|
@ -17,7 +17,8 @@
|
||||||
|
|
||||||
(defn collection-info [{:keys [songCount duration year]}]
|
(defn collection-info [{:keys [songCount duration year]}]
|
||||||
(vec (cond-> [:ul.is-smaller.collection-info
|
(vec (cond-> [:ul.is-smaller.collection-info
|
||||||
[:li [icon :audio-spectrum] (str songCount " tracks")]
|
[:li [icon :audio-spectrum] (str songCount (if (= 1 songCount)
|
||||||
|
" track" " tracks"))]
|
||||||
[:li [icon :clock] (format-duration duration)]]
|
[:li [icon :clock] (format-duration duration)]]
|
||||||
year (conj [:li [icon :calendar] (str "Released in " year)]))))
|
year (conj [:li [icon :calendar] (str "Released in " year)]))))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue