mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +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.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
export const artistDetail = {
|
|
back: 'Volver',
|
|
albums: 'Álbumes',
|
|
album: 'Álbum',
|
|
playAll: 'Reproducir Todo',
|
|
shareArtist: 'Compartir artista',
|
|
shuffle: 'Aleatorio',
|
|
radio: 'Radio',
|
|
loading: 'Cargando…',
|
|
noRadio: 'No se encontraron pistas similares para este artista.',
|
|
notFound: 'Artista no encontrado.',
|
|
albumsBy: 'Álbumes de {{name}}',
|
|
topTracks: 'Mejores Pistas',
|
|
noAlbums: 'No se encontraron álbumes.',
|
|
trackTitle: 'Título',
|
|
trackAlbum: 'Álbum',
|
|
trackDuration: 'Duración',
|
|
favoriteAdd: 'Agregar a Favoritos',
|
|
favoriteRemove: 'Quitar de Favoritos',
|
|
favorite: 'Favorito',
|
|
albumCount_one: '{{count}} Álbum',
|
|
albumCount_other: '{{count}} Álbumes',
|
|
openedInBrowser: 'Abierto en navegador',
|
|
featuredOn: 'También Aparece En',
|
|
similarArtists: 'Artistas Similares',
|
|
cacheOffline: 'Guardar discografía offline',
|
|
offlineCached: 'Discografía guardada',
|
|
offlineDownloading: 'Descargando… ({{done}}/{{total}} álbumes)',
|
|
uploadImage: 'Subir imagen del artista',
|
|
uploadImageError: 'Error al subir imagen',
|
|
releaseTypes: {
|
|
album: 'Álbum',
|
|
ep: 'EP',
|
|
single: 'Single',
|
|
compilation: 'Recopilación',
|
|
live: 'En vivo',
|
|
soundtrack: 'Banda sonora',
|
|
remix: 'Remix',
|
|
other: 'Otro',
|
|
},
|
|
};
|