Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser

Quick Information

A Godot plugin for importing JSON files for translations.Usage:1. Install the plugin into your project and activate it.2. Add JSON translations files into your project in .json format.3. Make sure the JSON files are imported as "JSON Translation".4. Add your JSON files to translations using Project Settings > Localization > Translations > Add (Change "All Recognized" to "All files (*)" to see the JSON file)JSON FormatThe json data in file must be an object with locale and messages keys."locale" field signify which locale the texts are in."message" field must be an object that contains keys and corresponding text as string value.Example JSON{ "locale": "en", "messages": { "HELLOWORLD": "Hello world!", "ANOTHERTEXT": "This is another text." }}
Translations From JSON for Godot 4.x
A Godot plugin for importing JSON files for translations.
This is the Godot 4.x version of the plugin. If you want to use it on 3.x, head over to the 3.x branch.
Usage
- Install the plugin into your project and activate it.
- Add JSON translations files into your project in .json format.
- Make sure the JSON files are imported as "JSON Translation".
- Add your JSON files to translations using Project Settings > Localization > Translations > Add (Change "All Recognized" to "All files (*)" to see the JSON file)
JSON Format
The json data in file must be an object with locale and messages keys.
- "locale" field signify which locale the texts are in.
- "message" field must be an object that contains keys and corresponding text as string value.
Example JSON
{
"locale": "en",
"messages": {
"HELLOWORLD": "Hello world!",
"ANOTHERTEXT": "This is another text."
}
}
A Godot plugin for importing JSON files for translations.
Usage:
1. Install the plugin into your project and activate it.
2. Add JSON translations files into your project in .json format.
3. Make sure the JSON files are imported as "JSON Translation".
4. Add your JSON files to translations using Project Settings > Localization > Translations > Add (Change "All Recognized" to "All files (*)" to see the JSON file)
JSON Format
The json data in file must be an object with locale and messages keys.
"locale" field signify which locale the texts are in.
"message" field must be an object that contains keys and corresponding text as string value.
Example JSON
{
"locale": "en",
"messages": {
"HELLOWORLD": "Hello world!",
"ANOTHERTEXT": "This is another text."
}
}
Reviews
Quick Information

A Godot plugin for importing JSON files for translations.Usage:1. Install the plugin into your project and activate it.2. Add JSON translations files into your project in .json format.3. Make sure the JSON files are imported as "JSON Translation".4. Add your JSON files to translations using Project Settings > Localization > Translations > Add (Change "All Recognized" to "All files (*)" to see the JSON file)JSON FormatThe json data in file must be an object with locale and messages keys."locale" field signify which locale the texts are in."message" field must be an object that contains keys and corresponding text as string value.Example JSON{ "locale": "en", "messages": { "HELLOWORLD": "Hello world!", "ANOTHERTEXT": "This is another text." }}