rm extra translation
This commit is contained in:
@@ -99,7 +99,6 @@
|
|||||||
"No radio stations available": "No radio stations available",
|
"No radio stations available": "No radio stations available",
|
||||||
"None": "None",
|
"None": "None",
|
||||||
"none": "none",
|
"none": "none",
|
||||||
"(none)": "(none)",
|
|
||||||
"none selected": "none selected",
|
"none selected": "none selected",
|
||||||
"OK": "OK",
|
"OK": "OK",
|
||||||
"optional": "optional",
|
"optional": "optional",
|
||||||
|
|||||||
+1
-1
@@ -206,7 +206,7 @@ func DisplayReleaseType(releaseTypes mediaprovider.ReleaseTypes) string {
|
|||||||
|
|
||||||
func NewRatingSubmenu(onSetRating func(int)) *fyne.MenuItem {
|
func NewRatingSubmenu(onSetRating func(int)) *fyne.MenuItem {
|
||||||
newRatingMenuItem := func(rating int) *fyne.MenuItem {
|
newRatingMenuItem := func(rating int) *fyne.MenuItem {
|
||||||
label := lang.L("(none)")
|
label := fmt.Sprintf("(%s)", lang.L("none"))
|
||||||
if rating > 0 {
|
if rating > 0 {
|
||||||
label = strconv.Itoa(rating)
|
label = strconv.Itoa(rating)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user