Translate strings that were not using i18n yet

Only English and Spanish translations have been included.
This commit is contained in:
Guillermo Hoardings
2023-02-03 01:53:04 +01:00
parent 95d143ce4d
commit 602799881a
12 changed files with 68 additions and 16 deletions
+2
View File
@@ -5,6 +5,7 @@ import type leaderboard from "public/locales/en/leaderboard.json";
import type message from "public/locales/en/message.json";
import type labelling from "public/locales/en/labelling.json";
import type tasks from "public/locales/en/tasks.json";
import type side_menu from "public/locales/en/side_menu.json";
declare module "i18next" {
interface CustomTypeOptions {
@@ -16,6 +17,7 @@ declare module "i18next" {
tasks: typeof tasks;
message: typeof message;
labelling: typeof labelling;
side_menu: typeof side_menu;
};
}
}