Skip to content

Commit

Permalink
fix: change empty playlist icon and locale
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph5610 committed Mar 31, 2024
1 parent 46488ed commit f21e68b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class StationsInfoView : BaseView() {
private val copyIcon by lazy { FontAwesome.Glyph.COPY.make(ICON_SIZE, isPrimary = false) }
private val favouriteAddIcon by lazy { FontAwesome.Glyph.HEART.make(ICON_SIZE, isPrimary = false) }
private val favouriteRemoveIcon by lazy { FontAwesome.Glyph.HEART_ALT.make(ICON_SIZE, isPrimary = false) }
private val playlistLargeIcon by lazy { FontAwesome.Glyph.TH_LIST.make(EMPTY_LIST_ICON_SIZE, isPrimary = false) }
private val playlistLargeIcon by lazy { FontAwesome.Glyph.HISTORY.make(EMPTY_LIST_ICON_SIZE, isPrimary = false) }

private val stationLogo by lazy {
stationView(selectedStationViewModel.stationObservable, LOGO_SIZE) {
Expand Down Expand Up @@ -387,5 +387,5 @@ class StationsInfoView : BaseView() {
private val formatter = DateTimeFormatter.ofPattern("HH:mm:ss")
}

private data class MetaDataWithStation(val station: Station, val metaData: StreamMetaData)
data class MetaDataWithStation(val station: Station, val metaData: StreamMetaData)
}
2 changes: 1 addition & 1 deletion src/main/resources/Messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ colors.blue=Blue
colors.purple=Purple
colors.pink=Pink
about.appDescription=Internet Radio Directory
playlistHistory.empty=No playlist history is available!
playlistHistory.empty=No playlist history is available
playlistHistory.searchOnYouTube=Search on YouTube
playlistHistory.play=Play “{0}”
player.sleepTimerFinished=Sleep Timer has finished.
Expand Down

0 comments on commit f21e68b

Please sign in to comment.