Migrate to lingui

Switch to "lingui" for better DX.
Tried to persist existing languages as much as possible.

Removed "vite-plugin-node-polyfills" because it's incompatible with "lingui"
This commit is contained in:
schroda
2026-01-10 19:45:02 +01:00
parent c1ac58f4d6
commit 65a9a905be
287 changed files with 120766 additions and 37748 deletions

26
lingui.config.ts Normal file
View File

@@ -0,0 +1,26 @@
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
import { defineConfig } from '@lingui/cli';
// eslint-disable-next-line import/no-extraneous-dependencies
import { formatter } from '@lingui/format-po';
// eslint-disable-next-line no-relative-import-paths/no-relative-import-paths
import localesConfig from './src/i18n/locales.json';
// eslint-disable-next-line import/no-default-export
export default defineConfig({
sourceLocale: localesConfig.defaultLocale,
locales: localesConfig.locales,
catalogs: [
{
path: '<rootDir>/src/i18n/locales/{locale}',
include: ['src'],
},
],
format: formatter({ lineNumbers: false }),
});