mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 14:35:41 +00:00
2409a1fec8
Each src/locales/<lang>.ts (~1800 LOC) becomes a folder src/locales/<lang>/ with one module per i18n namespace (44 each) plus an index.ts barrel that reassembles <lang>Translation in the original key order. Mechanical, script-driven split with a JSON round-trip check: every locale object is byte-identical to its pre-split form. i18n.ts is unchanged — './locales/<lang>' now resolves to the folder index. The per-namespace settings.ts files land ~440-460 LOC; a single i18n namespace is the natural, non-arbitrary split unit for a flat string table, so they are intentionally left whole.
42 lines
1.7 KiB
TypeScript
42 lines
1.7 KiB
TypeScript
export const smartPlaylists = {
|
|
sectionBasic: '1. De bază',
|
|
sectionGenres: '2. Genuri',
|
|
sectionYearsAndFilters: '3. Ani și filtre',
|
|
genreMode: 'Mod gen',
|
|
genreModeInclude: 'Include genuri',
|
|
genreModeExclude: 'Exclude genuri',
|
|
genreSearchPlaceholder: 'Filtrează genuri...',
|
|
availableGenres: 'Disponibil',
|
|
selectedGenres: 'Selectat',
|
|
yearMode: 'Mod an',
|
|
yearModeInclude: 'Include distanță',
|
|
yearModeExclude: 'Exclude distanță',
|
|
name: 'Nume (fără prefix)',
|
|
limit: 'Limită',
|
|
limitHint: 'Cât de multe piese să fie incluse în playlist (1-{{max}}, de obicei 50).',
|
|
artistContains: 'Artistul conține…',
|
|
albumContains: 'Albumul conține…',
|
|
titleContains: 'Titlul conține…',
|
|
minRating: 'Rating minim',
|
|
minRatingAria: 'Rating minim pentru playlist inteligent',
|
|
minRatingHint: '0 dezactivează limita minimă; 1-5 păstrează piesele cu rating peste valoarea selectată.',
|
|
fromYear: 'Din anul',
|
|
toYear: 'Până la anul',
|
|
excludeUnrated: 'Exclude piesele fără rating',
|
|
compilationOnly: 'Doar compilații',
|
|
create: 'Nou Playlist Inteligent',
|
|
save: 'Salvează Playlist Inteligent',
|
|
created: 'Creat {{name}}',
|
|
updated: 'Actualizat {{name}}',
|
|
createFailed: 'Nu s-a putut crea playlistul inteligent.',
|
|
updateFailed: 'Nu s-a putut actualiza playlistul inteligent.',
|
|
navidromeOnly: 'Playlisturile inteligente pot fi create doar pe servere Navidrome.',
|
|
loadFailed: 'Nu s-a putut încărca playlistul inteligent din Navidrome.',
|
|
sortRandom: 'Sortează: aleatoriu',
|
|
sortTitleAsc: 'Sortează: titlu A-Z',
|
|
sortTitleDesc: 'Sortează: titlu Z-A',
|
|
sortYearDesc: 'Sortează: an desc',
|
|
sortYearAsc: 'Sortează: an asc',
|
|
sortPlayCountDesc: 'Sortează: număr de redări desc',
|
|
};
|