pl.json and language changes
This commit is contained in:
@@ -183,7 +183,7 @@
|
|||||||
"Time": "Czas",
|
"Time": "Czas",
|
||||||
"Title": "Tytuł",
|
"Title": "Tytuł",
|
||||||
"Title (A-Z)": "Tytuł (A-Z)",
|
"Title (A-Z)": "Tytuł (A-Z)",
|
||||||
"Top Tracks": "Top piosenek",
|
"Top Tracks": "Top utworów",
|
||||||
"Total time": "Pełny czas",
|
"Total time": "Pełny czas",
|
||||||
"Track": "Utwór",
|
"Track": "Utwór",
|
||||||
"track": "utwór",
|
"track": "utwór",
|
||||||
|
|||||||
@@ -213,7 +213,7 @@ func NewAlbumPageHeader(page *AlbumPage) *AlbumPageHeader {
|
|||||||
}
|
}
|
||||||
a.releaseTypeLabel = widget.NewRichText(
|
a.releaseTypeLabel = widget.NewRichText(
|
||||||
&widget.TextSegment{Text: lang.L("Album"), Style: util.BoldRichTextStyle},
|
&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 = widgets.NewMultiHyperlink()
|
||||||
a.artistLabel.OnTapped = func(id string) {
|
a.artistLabel.OnTapped = func(id string) {
|
||||||
|
|||||||
@@ -189,7 +189,7 @@ func NewAlbumFilterPopup(filter *AlbumFilterButton) *AlbumFilterPopup {
|
|||||||
title.TextStyle.Bold = true
|
title.TextStyle.Bold = true
|
||||||
a.container = container.NewVBox(
|
a.container = container.NewVBox(
|
||||||
container.NewHBox(layout.NewSpacer(), title, layout.NewSpacer()),
|
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),
|
container.NewHBox(a.isFavorite, a.isNotFavorite),
|
||||||
a.genreFilter,
|
a.genreFilter,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user