mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 12:44:47 -05:00
* Remove light mode * Trim header * New front page initial * Get rid of build layout * Breadcrumbs * Desktop side nav * Overhaul colors * Add breadcrumbs * New sub nav style * Front page action buttons * Add back add new build button * Add articles page with icon * Minor Object damage page layout tweaks * Remove one unnecessary render from object damage * Fix wrong link in article page * Profile -> My Page in header * Log in/out buttons in front * Add drawings to front page * Remove unnecessary comment
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import "react-i18next";
|
|
|
|
import type common from "../public/locales/en/common.json";
|
|
import type faq from "../public/locales/en/faq.json";
|
|
import type contributions from "../public/locales/en/contributions.json";
|
|
import type user from "../public/locales/en/user.json";
|
|
import type badges from "../public/locales/en/badges.json";
|
|
import type calendar from "../public/locales/en/calendar.json";
|
|
import type weapons from "../public/locales/en/weapons.json";
|
|
import type gear from "../public/locales/en/gear.json";
|
|
import type builds from "../public/locales/en/builds.json";
|
|
import type analyzer from "../public/locales/en/analyzer.json";
|
|
import type gameMisc from "../public/locales/en/game-misc.json";
|
|
import type tournament from "../public/locales/en/tournament.json";
|
|
|
|
declare module "react-i18next" {
|
|
interface CustomTypeOptions {
|
|
defaultNS: "common";
|
|
resources: {
|
|
common: typeof common;
|
|
faq: typeof faq;
|
|
contributions: typeof contributions;
|
|
user: typeof user;
|
|
badges: typeof badges;
|
|
calendar: typeof calendar;
|
|
weapons: typeof weapons;
|
|
gear: typeof gear;
|
|
builds: typeof builds;
|
|
analyzer: typeof analyzer;
|
|
"game-misc": typeof gameMisc;
|
|
tournament: typeof tournament;
|
|
};
|
|
}
|
|
}
|