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';
|
2023-06-05 01:42:39 +02:00
|
|
|
import resources from '@/i18n/translations';
|
2023-03-23 13:59:32 +01:00
|
|
|
|
|
|
|
|
declare module 'i18next' {
|
|
|
|
|
interface CustomTypeOptions {
|
|
|
|
|
returnNull: false;
|
|
|
|
|
resources: typeof resources.en;
|
|
|
|
|
}
|
|
|
|
|
}
|