How translate the visual novel?
In visual novels it is common to have the option to translate the game into different languages. Pixi’VN does not have any built-in functionality to handle translations. So you will have to use external libraries to perform translations and you have total freedom of implementation.
The most used library and compatible with many frameworks is i18next. What is i18next? i18next is an internationalization-framework written in and for JavaScript.
In order to use i18n you have to initialize it and load the translations.
// i18n.ts
import i18n from 'i18next';
import LanguageDetector from 'i18next-browser-languagedetector';
import { initReactI18next } from 'react-i18next';
import strings_en from '../src/values/translations/strings_en.json';
import strings_es from '../src/values/translations/strings_es.json';
const getUserLang = (): string => {
let userLang: string = navigator.language || "en";
return userLang?.toLocaleLowerCase()?.split("-")[0];
}
export const useI18n = () => {
if (!i18n.isInitialized) {
i18n
.use(LanguageDetector)
.use(initReactI18next)
.init({
debug: false,
fallbackLng: 'en',
lng: getUserLang(),
interpolation: {
escapeValue: false,
},
resources: {
en: strings_en,
es: strings_es,
// Add more languages here
}
});
}
}
// App.tsx
import { useI18n } from './i18n';
export default function App() {
useI18n()
return (
// ...
);
}
It is recommended to divide the translations into two parts: UI and narration. The UI is the text that is not part of the story, such as buttons, menus, etc. The narration is the text that is part of the story, such as dialogues, monologues, etc.
// strings_es.json
{
"ui": {
"text_speed": "Velocidad del texto",
// ...
},
"narration": {
"Hello, my name is {{name}}": "Hola, mi nombre es {{name}}"
// ...
}
}
Depending on what you want to translate, it is recommended to use the following guides:
- Translate the UI
- Translate the narration (TypeScript/JavaScript)
- Translate the narration (Ink)
- Translate the dialogue (Ren'Py) (Under development)
Translate the UI
To translate the UI, you need to use the t
function that is provided by i18next. The t
function is a function that will be called with the key of the translation, so you can use it to translate the text.
Is recommended to use as translation key the a lowercase string with underscores.
For example in React:
import { useTranslation } from 'react-i18next';
export default function MyComponent() {
const { t } = useTranslation("ui");
return (
<div>
<Button>{t("text_speed")}</Button>
</div>
);
}
Translate the narration (TypeScript/JavaScript)
To translate the UI, you need overwrite the StepLabelProps
interface to add the t
function. The t
function is a function that will be called with the key of the translation, so you can use it to translate the text.
This way you can use the t
function in labels to translate the text. It is recommended to use t
inside the label and not when the UI is displayed, because this way you can use the i18n Interpolation.
Is recommended to use as translation key the native string from which the translation is made.
// pixi-vn.types.ts
declare module '@drincs/pixi-vn/dist/override' {
interface StepLabelProps {
/**
* Translate a key to a string.
* @param key The key to translate.
* @returns The translated string.
*/
t: TFunction<[string], undefined>
// ...
}
}
export const startLabel = newLabel(START_LABEL_ID,
[
({ t }) => narration.dialogue = { character: liam, text: t("Hello, my name is {{name}}", { name: "Liam" }) },
]
)