diff --git a/components/PersonDetails.brs b/components/PersonDetails.brs index 506102c87..a1e341a6f 100644 --- a/components/PersonDetails.brs +++ b/components/PersonDetails.brs @@ -118,9 +118,11 @@ sub setFavoriteColor() if fave <> invalid and fave fave_button.textColor = "#00ff00ff" fave_button.focusedTextColor = "#269926ff" + fave_button.text = tr("Favorite") else fave_button.textColor = "0xddddddff" fave_button.focusedTextColor = "#262626ff" + fave_button.text = tr("Set Favorite") end if end sub diff --git a/components/movies/MovieDetails.brs b/components/movies/MovieDetails.brs index 40eb3c42c..8deac2374 100644 --- a/components/movies/MovieDetails.brs +++ b/components/movies/MovieDetails.brs @@ -199,9 +199,11 @@ sub setFavoriteColor() if fave <> invalid and fave fave_button.textColor = "#00ff00ff" fave_button.focusedTextColor = "#269926ff" + fave_button.text = tr("Favorite") else fave_button.textColor = "0xddddddff" fave_button.focusedTextColor = "#262626ff" + fave_button.text = tr("Set Favorite") end if end sub @@ -211,9 +213,11 @@ sub setWatchedColor() if watched watched_button.textColor = "#ff0000ff" watched_button.focusedTextColor = "#992626ff" + watched_button.text = tr("Watched") else watched_button.textColor = "0xddddddff" watched_button.focusedTextColor = "#262626ff" + watched_button.text = tr("Set Watched") end if end sub diff --git a/components/movies/MovieDetails.xml b/components/movies/MovieDetails.xml index 37b7f842b..aaa65b5a7 100644 --- a/components/movies/MovieDetails.xml +++ b/components/movies/MovieDetails.xml @@ -33,7 +33,7 @@