aboutsummaryrefslogtreecommitdiff
path: root/Utilities/i18n.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-02-17 00:07:31 -0500
committerGitHub <noreply@github.com>2024-02-17 00:07:31 -0500
commit214a83c0f696ac731c54b00bf7503f87e497afa6 (patch)
tree15d57b08e69d19fb4c2f3effb9937aec8d042bdc /Utilities/i18n.js
parentb29ab06623fd24cfc2a611bdd658b4d2ef934335 (diff)
parentc848f1d90fef40ffa81915d7dd875a2ee6d6c8d5 (diff)
downloadDLAP-214a83c0f696ac731c54b00bf7503f87e497afa6.tar.gz
DLAP-214a83c0f696ac731c54b00bf7503f87e497afa6.tar.bz2
DLAP-214a83c0f696ac731c54b00bf7503f87e497afa6.zip
Merge pull request #17 from Alee14/testing
Merging testing branch
Diffstat (limited to 'Utilities/i18n.js')
-rw-r--r--Utilities/i18n.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/Utilities/i18n.js b/Utilities/i18n.js
index c667c4c..9b431a1 100644
--- a/Utilities/i18n.js
+++ b/Utilities/i18n.js
@@ -20,10 +20,12 @@
***************************************************************************/
import i18next from 'i18next';
import fsBackend from 'i18next-fs-backend';
+import { readFileSync } from 'node:fs';
+const { locale } = JSON.parse(readFileSync('./config.json', 'utf-8'));
i18next.use(fsBackend).init({
- lng: 'en', // if you're using a language detector, do not define the lng option
- debug: true,
+ lng: locale, // if you're using a language detector, do not define the lng option
+ debug: false,
fallbackLng: 'en',
backend: {
loadPath: './Locales/{{lng}}/{{ns}}.json'
@@ -32,7 +34,7 @@ i18next.use(fsBackend).init({
export default {
i18next,
- t(key) {
- return i18next.t(key);
+ t(key, option) {
+ return i18next.t(key, option);
}
};