Jump to main content

Manual Translations

If you need to add translations manually, you can do it as follows.

We create a translate.json file in the src/locales/es folder and we will add our translations.

Terminal
touch src/locales/es/translate.json
  • This will create a file src/locales/es/translate.json with the following content:
src/locales/es/translate.json
{
"Hola Este es un ejemplo de traduccion base": "Hola Este es un ejemplo de traduccion base"
}

If you wish, you can manually add keys to your translations.

{
"hello": "Hola este es un ejemplo de traduccion base"
}