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.
48 lines
1.8 KiB
TypeScript
48 lines
1.8 KiB
TypeScript
export const statistics = {
|
|
title: 'Statistikk',
|
|
recentlyPlayed: 'Nylig spilt',
|
|
mostPlayed: 'Mest spilte album',
|
|
highestRated: 'Høyest rangerte album',
|
|
genreDistribution: 'Sjangerfordeling (Topp 20)',
|
|
loadMore: 'Last inn mer',
|
|
statArtists: 'Artister',
|
|
statArtistsTooltip: 'Kun albumartister — artister som bare opptrer som sporartist (featuring, gjest, osv.) uten eget album telles ikke med.',
|
|
statAlbums: 'Album',
|
|
statSongs: 'Sanger',
|
|
statGenres: 'Sjangere',
|
|
statPlaytime: 'Total spilletid',
|
|
genreInsights: 'Sjangerinnsikt',
|
|
formatDistribution: 'Formatdistribusjon',
|
|
formatSample: 'Utvalg av {{n}} spor',
|
|
computing: 'Utregner…',
|
|
genreSongs: '{{count}} Sanger',
|
|
genreAlbums: '{{count}} Album',
|
|
recentlyAdded: 'Nylig lagt til',
|
|
decadeDistribution: 'Album etter tiår',
|
|
decadeAlbums_one: '{{count}} Album',
|
|
decadeAlbums_other: '{{count}} Album',
|
|
decadeUnknown: 'Ukjent',
|
|
lfmTitle: 'Last.fm Statistikk',
|
|
lfmTopArtists: 'Toppartister',
|
|
lfmTopAlbums: 'Toppalbum',
|
|
lfmTopTracks: 'Toppspor',
|
|
lfmPlays: '{{count}} avspillinger',
|
|
lfmPeriodOverall: 'Alltid',
|
|
lfmPeriod7day: '7 dager',
|
|
lfmPeriod1month: '1 måned',
|
|
lfmPeriod3month: '3 måneder',
|
|
lfmPeriod6month: '6 måneder',
|
|
lfmPeriod12month: '12 måneder',
|
|
lfmNotConnected: 'Koble til Last.fm i Innstillinger for å se statistikken din.',
|
|
lfmRecentTracks: 'Siste Scrobble-innslag',
|
|
lfmNowPlaying: 'Spilles nå',
|
|
lfmJustNow: 'akkurat nå',
|
|
lfmMinutesAgo: 'For {{n}}m siden',
|
|
lfmHoursAgo: 'For {{n}}t siden',
|
|
lfmDaysAgo: 'For {{n}}d siden',
|
|
topRatedSongs: 'Høyest vurderte spor',
|
|
topRatedArtists: 'Høyest vurderte artister',
|
|
noRatedSongs: 'Ingen vurderte spor ennå. Vurder spor i album- eller spillelistevisning.',
|
|
noRatedArtists: 'Ingen vurderte artister ennå.',
|
|
};
|