Files
Psychotoxical-psysonic/src/locales/fr/nowPlayingInfo.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

25 lines
1.0 KiB
TypeScript

export const nowPlayingInfo = {
tab: 'Info',
empty: 'Lancez une lecture pour voir les infos',
artist: 'Artiste',
songInfo: 'Infos du morceau',
onTour: 'En tournée',
noTourEvents: 'Aucun concert à venir',
tourLoading: 'Chargement…',
poweredByBandsintown: 'Données de tournée via Bandsintown',
bioReadMore: 'En lire plus',
bioReadLess: 'Réduire',
showMoreTours_one: 'Afficher {{count}} de plus',
showMoreTours_other: 'Afficher {{count}} de plus',
showLessTours: 'Réduire',
enableBandsintownPrompt: 'Afficher les prochaines dates de tournée ?',
enableBandsintownPromptDesc: 'Optionnel. Charge les concerts de l\'artiste via l\'API publique Bandsintown.',
enableBandsintownPrivacy: 'Lors de l\'activation, le nom de l\'artiste en cours de lecture est envoyé à l\'API Bandsintown pour récupérer les dates de tournée. Aucun compte ni données personnelles ne quittent votre appareil.',
enableBandsintownAction: 'Activer',
role: {
artist: 'Artiste',
albumArtist: 'Artiste de l\'album',
composer: 'Compositeur',
},
};