mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
5856bdbf1a
* fix(library): show empty-state on Mainstage, Albums, New Releases, Random Albums When the active library has no albums, Mainstage and the three album-list pages rendered a fully blank page — every rail and grid was empty but nothing told the user why. Add a shared `common.libraryEmpty` message (all 9 locales) and render it in place of the empty grid: * Home: when no rail has any albums after loading. * Albums: when no albums and no filter (genre/year/starred/comp) is active — filtered "no matches" is a separate state and stays as-is. * New Releases: when no albums and no genre filter is active. * Random Albums: when no albums after loading. Pages that already had a dedicated empty-state (Artists, Genres, Composers, Playlists, Favorites, MostPlayed, LosslessAlbums, LabelAlbums, InternetRadio) are left alone — their wording is intentional and per-page. * docs(changelog): note empty-library states on Mainstage / album lists (#750)
58 lines
1.9 KiB
TypeScript
58 lines
1.9 KiB
TypeScript
export const common = {
|
|
albums: 'Albums',
|
|
album: 'Album',
|
|
loading: 'Laden…',
|
|
loadingMore: 'Laden…',
|
|
loadingPlaylists: 'Afspeellijsten laden…',
|
|
noAlbums: 'Geen albums gevonden.',
|
|
downloading: 'Downloaden…',
|
|
downloadZip: 'Downloaden (ZIP)',
|
|
back: 'Terug',
|
|
cancel: 'Annuleren',
|
|
save: 'Opslaan',
|
|
delete: 'Verwijderen',
|
|
use: 'Gebruiken',
|
|
add: 'Toevoegen',
|
|
new: 'Nieuw',
|
|
active: 'Actief',
|
|
download: 'Downloaden',
|
|
chooseDownloadFolder: 'Downloadmap kiezen',
|
|
noFolderSelected: 'Geen map geselecteerd',
|
|
rememberDownloadFolder: 'Deze map onthouden',
|
|
filterGenre: 'Genre-filter',
|
|
filterSearchGenres: 'Genres zoeken…',
|
|
filterNoGenres: 'Geen genres gevonden',
|
|
filterClear: 'Wissen',
|
|
favorites: 'Favorieten',
|
|
favoritesTooltipOff: 'Alleen favorieten tonen',
|
|
favoritesTooltipOn: 'Alles tonen',
|
|
play: 'Afspelen',
|
|
bulkSelected: '{{count}} geselecteerd',
|
|
clearSelection: 'Selectie wissen',
|
|
bulkAddToPlaylist: 'Toevoegen aan afspeellijst',
|
|
bulkRemoveFromPlaylist: 'Verwijderen uit afspeellijst',
|
|
bulkClear: 'Selectie wissen',
|
|
updaterAvailable: 'Update beschikbaar',
|
|
updaterVersion: 'v{{version}} beschikbaar',
|
|
updaterWebsite: 'Website',
|
|
updaterModalTitle: 'Nieuwe versie beschikbaar',
|
|
updaterChangelog: 'Wat is er nieuw',
|
|
updaterDownloadBtn: 'Nu downloaden',
|
|
updaterSkipBtn: 'Deze versie overslaan',
|
|
updaterRemindBtn: 'Later herinneren',
|
|
updaterDone: 'Download voltooid',
|
|
updaterShowFolder: 'Tonen in map',
|
|
updaterInstallHint: 'Sluit Psysonic en voer het installatieprogramma handmatig uit.',
|
|
updaterAurHint: 'Update installeren via AUR:',
|
|
updaterErrorMsg: 'Downloaden mislukt',
|
|
updaterRetryBtn: 'Opnieuw proberen',
|
|
durationHoursMinutes: '{{hours}} u {{minutes}} min',
|
|
durationMinutesOnly: '{{minutes}} min',
|
|
updaterOpenGitHub: 'Openen op GitHub',
|
|
filters: 'Filters',
|
|
more: 'meer',
|
|
yearRange: 'Jaarbereik',
|
|
clearAll: 'Alles wissen',
|
|
libraryEmpty: 'Je bibliotheek is leeg.',
|
|
};
|