rm extra translation

This commit is contained in:
Drew Weymouth
2024-07-21 16:40:10 -07:00
parent 1d49aa171a
commit 1d216d0b4f
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -206,7 +206,7 @@ func DisplayReleaseType(releaseTypes mediaprovider.ReleaseTypes) string {
func NewRatingSubmenu(onSetRating func(int)) *fyne.MenuItem {
newRatingMenuItem := func(rating int) *fyne.MenuItem {
label := lang.L("(none)")
label := fmt.Sprintf("(%s)", lang.L("none"))
if rating > 0 {
label = strconv.Itoa(rating)
}