mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 14:35:41 +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)
68 lines
2.5 KiB
TypeScript
68 lines
2.5 KiB
TypeScript
export const common = {
|
|
albums: 'Albume',
|
|
album: 'Album',
|
|
loading: 'Se încarcă…',
|
|
loadingMore: 'Se încarcă…',
|
|
loadingPlaylists: 'Se încarcă Playlisturi…',
|
|
noAlbums: 'Niciun album găsit.',
|
|
downloading: 'Se descarcă…',
|
|
downloadZip: 'Descarcă (ZIP)',
|
|
back: 'Înapoi',
|
|
cancel: 'Anulează',
|
|
close: 'Închide',
|
|
save: 'Salvează',
|
|
delete: 'Șterge',
|
|
use: 'Folosește',
|
|
add: 'Adaugă',
|
|
new: 'Nou',
|
|
active: 'Activ',
|
|
download: 'Descarcă',
|
|
chooseDownloadFolder: 'Alege folderul de descărcare',
|
|
noFolderSelected: 'Niciun folder selectat',
|
|
rememberDownloadFolder: 'Ține minte acest folder',
|
|
filterGenre: 'Filtru de gen',
|
|
filterSearchGenres: 'Caută genuri…',
|
|
filterNoGenres: 'Niciun gen nu corespunde',
|
|
filterClear: 'Golește',
|
|
favorites: 'Favorite',
|
|
favoritesTooltipOff: 'Arată doar favorite',
|
|
favoritesTooltipOn: 'Arată tot',
|
|
play: 'Redă',
|
|
bulkSelected: '{{count}} selectate',
|
|
clearSelection: 'Golește selecția',
|
|
bulkAddToPlaylist: 'Adaugă la Playlist',
|
|
bulkRemoveFromPlaylist: 'Șterge din Playlist',
|
|
bulkClear: 'Golește selecția',
|
|
updaterAvailable: 'Update disponibil',
|
|
updaterVersion: 'v{{version}} este disponibil',
|
|
updaterWebsite: 'Website',
|
|
updaterModalTitle: 'Nouă versiune disponibilă',
|
|
updaterChangelog: "Ce este nou",
|
|
updaterDownloadBtn: 'Descarcă acum',
|
|
updaterSkipBtn: 'Sari peste această Versiune',
|
|
updaterRemindBtn: 'Amintește-mi mai târziu',
|
|
updaterDone: 'Descărcare finalizată',
|
|
updaterShowFolder: 'Arată în Folder',
|
|
updaterInstallHint: 'Închide Psysonic și rulează programul de instalare manual.',
|
|
updaterAurHint: 'Instalează update-ul prin AUR:',
|
|
updaterErrorMsg: 'Descărcare eșuată',
|
|
updaterRetryBtn: 'Reîncearcă',
|
|
updaterInstallNow: 'Instalează acum',
|
|
updaterMacReadyTitle: 'Pregătit de instalare',
|
|
updaterMacReady: 'Acest update descarcă, verifică și este aplicat în loc — nu este nevoie de DMG. Aplicația își dă restart automat când e gata.',
|
|
updaterTrustNotarized: 'Notarizat de Apple',
|
|
updaterTrustSignature: 'Semnătură verificată',
|
|
updaterMacDoneTitle: 'Update instalat',
|
|
updaterRestartingIn: 'Se restartează în {{n}}s…',
|
|
updaterRestarting: 'Se restartează…',
|
|
updaterRestartNow: 'Restart acum',
|
|
durationHoursMinutes: '{{hours}}h {{minutes}}m',
|
|
durationMinutesOnly: '{{minutes}}m',
|
|
updaterOpenGitHub: 'Deschide în GitHub',
|
|
filters: 'Filtre',
|
|
more: 'mai mult',
|
|
yearRange: 'Interval de an',
|
|
clearAll: 'Golește tot',
|
|
libraryEmpty: 'Biblioteca ta este goală.',
|
|
};
|