Files
Psychotoxical-psysonic/src/locales/fr/index.ts
T
Maxim Isaev 884951fbc2 feat(cluster): playback, browse, discovery, Tier 2/3, and infra
Enqueue-time cluster resolve with mixed-server queue refs; play_session
and scrobble target resolved server; mid-session cascade monitor.
Queue share filters to representative with export count. Excluded-member
banner and cluster settings diagnostics. Cluster advanced search, random
tracks, native favorite albums/artists, extended player stats, sync
rebuild hook. Discovery merge helper, filtered Tier 1, Tier 3 by-source
UI, i18n, and tauri test mocks.
2026-06-05 17:36:53 +03:00

94 lines
2.4 KiB
TypeScript

import { sidebar } from './sidebar';
import { home } from './home';
import { hero } from './hero';
import { search } from './search';
import { nowPlaying } from './nowPlaying';
import { contextMenu } from './contextMenu';
import { sharePaste } from './sharePaste';
import { albumDetail } from './albumDetail';
import { entityRating } from './entityRating';
import { artistDetail } from './artistDetail';
import { favorites } from './favorites';
import { randomLanding } from './randomLanding';
import { randomAlbums } from './randomAlbums';
import { genres } from './genres';
import { randomMix } from './randomMix';
import { luckyMix } from './luckyMix';
import { albums } from './albums';
import { tracks } from './tracks';
import { artists } from './artists';
import { composers } from './composers';
import { composerDetail } from './composerDetail';
import { login } from './login';
import { connection } from './connection';
import { common } from './common';
import { settings } from './settings';
import { changelog } from './changelog';
import { whatsNew } from './whatsNew';
import { help } from './help';
import { queue } from './queue';
import { miniPlayer } from './miniPlayer';
import { statistics } from './statistics';
import { player } from './player';
import { nowPlayingInfo } from './nowPlayingInfo';
import { songInfo } from './songInfo';
import { playlists } from './playlists';
import { smartPlaylists } from './smartPlaylists';
import { mostPlayed } from './mostPlayed';
import { losslessAlbums } from './losslessAlbums';
import { radio } from './radio';
import { folderBrowser } from './folderBrowser';
import { deviceSync } from './deviceSync';
import { orbit } from './orbit';
import { tray } from './tray';
import { licenses } from './licenses';
import { cluster } from './cluster';
export const frTranslation = {
sidebar,
home,
hero,
search,
nowPlaying,
contextMenu,
sharePaste,
albumDetail,
entityRating,
artistDetail,
favorites,
randomLanding,
randomAlbums,
genres,
randomMix,
luckyMix,
albums,
tracks,
artists,
composers,
composerDetail,
login,
connection,
common,
settings,
changelog,
whatsNew,
help,
queue,
miniPlayer,
statistics,
player,
nowPlayingInfo,
songInfo,
playlists,
smartPlaylists,
mostPlayed,
losslessAlbums,
radio,
folderBrowser,
deviceSync,
orbit,
tray,
licenses,
cluster,
};