Skip to content

Commit

Permalink
rm extra translation
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Jul 21, 2024
1 parent 1d49aa1 commit 1d216d0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion res/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@
"No radio stations available": "No radio stations available",
"None": "None",
"none": "none",
"(none)": "(none)",
"none selected": "none selected",
"OK": "OK",
"optional": "optional",
Expand Down
2 changes: 1 addition & 1 deletion ui/util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 1d216d0

Please sign in to comment.