2023-11-17 12:26:25 +00:00
|
|
|
/*
|
2024-09-06 10:22:13 +02:00
|
|
|
Copyright 2023, 2024 New Vector Ltd.
|
2023-11-17 12:26:25 +00:00
|
|
|
|
2024-09-06 10:22:13 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
Please see LICENSE in the repository root for full details.
|
2023-11-17 12:26:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import "i18next";
|
|
|
|
|
// import all namespaces (for the default language, only)
|
2024-12-04 14:51:29 +00:00
|
|
|
import app from "../../locales/en/app.json";
|
2023-11-17 12:26:25 +00:00
|
|
|
|
|
|
|
|
declare module "i18next" {
|
|
|
|
|
interface CustomTypeOptions {
|
|
|
|
|
defaultNS: "app";
|
2023-11-20 13:47:36 +00:00
|
|
|
keySeparator: ".";
|
2023-11-17 12:26:25 +00:00
|
|
|
resources: {
|
|
|
|
|
app: typeof app;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|