[3.x] Adding custom language translation to the project #5
rozsazoltan
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you create a translation for your language in the form of a PR, I'd be happy to merge it into the project.
Files containing translations
./app/locales/{!! langCode !!}/translation.json
(server application texts)./app/client/public/locales/{!! langCode !!}/translation.json
(client application texts)Modifying the necessary files for translation
./app/locales/
folder, add the native name of the new language for all other languages. For example, for the Hungarian language:"hu": "Magyar"
../app/configs/i18next.config.client.ts
file, add the new language. For the Hungarian language, for example:./app/configs/i18next.config.client.spec.ts
file, add the new language. For the Hungarian language, for example:Beta Was this translation helpful? Give feedback.
All reactions