mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-17 14:57:49 +00:00
feat(i18n): add localization infrastructure and English catalog
Refs #17
This commit is contained in:
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
import 'i18next';
|
||||
import type { defaultNS, resources } from './i18n/resources';
|
||||
|
||||
declare module 'i18next' {
|
||||
interface CustomTypeOptions {
|
||||
defaultNS: typeof defaultNS;
|
||||
enableSelector: 'optimize';
|
||||
resources: typeof resources['en'];
|
||||
returnNull: false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user