Files
chatbot-ui/next-i18next.config.js
T
Danil Shishkevich cb58a703e3 feat: Russian language (#148)
* feat: russian (Русский) language

* chore: correct translate

* chore: correct "System prompt" translate
2023-03-25 10:33:29 -06:00

13 lines
253 B
JavaScript

const path = require("path");
module.exports = {
i18n: {
defaultLocale: "en",
locales: ["en", "zh", "ru"],
},
localePath:
typeof window === "undefined"
? require("path").resolve("./public/locales")
: "/public/locales",
};