2023-05-18 13:17:41 +02:00
|
|
|
/*
|
|
|
|
|
* 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/.
|
|
|
|
|
*/
|
|
|
|
|
|
2023-03-23 13:59:32 +01:00
|
|
|
import 'i18next';
|
2024-05-23 01:21:03 +02:00
|
|
|
import en from 'public/locales/en.json';
|
|
|
|
|
|
|
|
|
|
const resources = {
|
|
|
|
|
translation: en,
|
|
|
|
|
};
|
2023-03-23 13:59:32 +01:00
|
|
|
|
|
|
|
|
declare module 'i18next' {
|
|
|
|
|
interface CustomTypeOptions {
|
|
|
|
|
returnNull: false;
|
2024-05-23 01:21:03 +02:00
|
|
|
resources: typeof resources;
|
2023-03-23 13:59:32 +01:00
|
|
|
}
|
|
|
|
|
}
|