Files
suwayomi-material-you-webui/lingui.config.ts
2026-04-25 21:59:00 +00:00

26 lines
961 B
TypeScript

/*
* 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-x/no-extraneous-dependencies
import { formatter } from '@lingui/format-po';
// eslint-disable-next-line import-x/no-default-export
export default defineConfig({
sourceLocale: 'en',
// !!!IMPORTANT!!!: 'locales' is auto-generated by tools/scripts/weblate/generatei18nResources.ts. Do not edit manually.
locales: ['ar', 'de', 'en', 'es', 'fa', 'fr', 'hu', 'id', 'it', 'ja', 'ko', 'pl', 'ru', 'vi', 'zh-Hans', 'zh-Hant'],
catalogs: [
{
path: '<rootDir>/src/i18n/locales/{locale}',
include: ['src'],
},
],
format: formatter({ lineNumbers: false }),
});