pl.json and language changes

This commit is contained in:
Masterlocker
2024-07-30 17:01:40 +02:00
parent 7404b886c1
commit d71d5d4dfe
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -183,7 +183,7 @@
"Time": "Czas",
"Title": "Tytuł",
"Title (A-Z)": "Tytuł (A-Z)",
"Top Tracks": "Top piosenek",
"Top Tracks": "Top utworów",
"Total time": "Pełny czas",
"Track": "Utwór",
"track": "utwór",
+1 -1
View File
@@ -213,7 +213,7 @@ func NewAlbumPageHeader(page *AlbumPage) *AlbumPageHeader {
}
a.releaseTypeLabel = widget.NewRichText(
&widget.TextSegment{Text: lang.L("Album"), Style: util.BoldRichTextStyle},
&widget.TextSegment{Text: " by", Style: widget.RichTextStyle{Inline: true}},
&widget.TextSegment{Text: " " + lang.L("by"), Style: widget.RichTextStyle{Inline: true}},
)
a.artistLabel = widgets.NewMultiHyperlink()
a.artistLabel.OnTapped = func(id string) {
+1 -1
View File
@@ -189,7 +189,7 @@ func NewAlbumFilterPopup(filter *AlbumFilterButton) *AlbumFilterPopup {
title.TextStyle.Bold = true
a.container = container.NewVBox(
container.NewHBox(layout.NewSpacer(), title, layout.NewSpacer()),
container.NewHBox(widget.NewLabel(lang.L("Year from")), minYear, widget.NewLabel("to"), maxYear),
container.NewHBox(widget.NewLabel(lang.L("Year from")), minYear, widget.NewLabel(lang.L("to")), maxYear),
container.NewHBox(a.isFavorite, a.isNotFavorite),
a.genreFilter,
)