Files
psysonic/src/locales/es/artistDetail.ts
T
Frank Stellmacher 2409a1fec8 refactor(i18n): split locale files into per-namespace modules (Phase K) (#688)
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.
2026-05-14 14:06:31 +02:00

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',
},
};