Translation editor plugin for Godot Engine
Go to file
Marc Gilleron ca288a3ad4 Updated icon 2020-06-15 20:51:23 +01:00
addons/zylann.translation_editor Added support for string prefix and json files 2020-06-15 20:51:04 +01:00
.gitignore
CHANGELOG.md
README.md Details about detection 2020-06-14 05:22:32 +01:00
icon.png Updated icon 2020-06-15 20:51:23 +01:00
icon.png.import Upgrade stuff 2020-06-14 20:03:00 +01:00
project.godot Upgrade stuff 2020-06-14 20:03:00 +01:00

README.md

Translation editor for Godot Engine

This is an editor plugin to edit translation files from inside Godot Engine. It supports .csv and .po files, although gettext support is limited to what Godot can handle. It can also be used as a standalone editor if translation_editor.tscn is run or exported as main scene.

It can extract strings from your project automatically and adds them to a list for you to translate. There is no particular convention to use. The tool supports the following file types:

  • *.gd: detects strings used with tr() and TranslationServer.translate().
  • *.tscn: detects string properties known to be translatable

C# and binary files are not supported yet, but may be added in the future. Some projects use a prefix convention to use strings in places harder to auto-detect, so supporting them may also be implemented.

screenshot2

How to install

This is a regular editor plugin. Copy the contents of addons/zylann.translation_editor into the same folder in your project, and activate it in your project settings.