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
This is a small plugin that allows loading translation texts from JSON files.Usage:1. Install the plugin into your project2. Add JSON translations files into your project in .json format.3. Add the file to translations using Project Settings > Localization > Add (Select "All files (*)" to see the JSON file)Example JSON Format:{ "locale": "en", "messages": { "HELLOWORLD": "Hello world!", "ANOTHERTEXT": "This is another text." }}
Translations From JSON
This is a Godot plugin for importing JSON files for translations.
Usage
- Install the plugin into your project
- Add JSON translations files into your project in .json format.
- Add the file to translations using Project Settings > Localization > Add (Select "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."
}
}
This is a small plugin that allows loading translation texts from JSON files.
Usage:
1. Install the plugin into your project
2. Add JSON translations files into your project in .json format.
3. Add the file to translations using Project Settings > Localization > Add (Select "All files (*)" to see the JSON file)
Example JSON Format:
{
"locale": "en",
"messages": {
"HELLOWORLD": "Hello world!",
"ANOTHERTEXT": "This is another text."
}
}
Reviews
Quick Information
This is a small plugin that allows loading translation texts from JSON files.Usage:1. Install the plugin into your project2. Add JSON translations files into your project in .json format.3. Add the file to translations using Project Settings > Localization > Add (Select "All files (*)" to see the JSON file)Example JSON Format:{ "locale": "en", "messages": { "HELLOWORLD": "Hello world!", "ANOTHERTEXT": "This is another text." }}