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 Editor addon that converts translation data stored in CSV files into gettext PO and POT files. This makes it easier to work with translators and standard localization workflows while keeping your project’s translation sources editable in a simple CSV format.
CSV to gettext converter for Godot
A Godot Editor addon that converts translation data stored in CSV files into gettext .po
and .pot
files.
Translations based on CSV files are easy to work with and kick start the localization of your project, but at the same time are limited in how they can be processed in Godot, e.g. translation context and plural forms are available only with gettext.
This addon makes it easier to convert existing CSV translation files into the gettext format, allowing it to be edited with professional localization software like Poedit to take advantage of all localization features, including translation context and plural forms, that are required for many languages.
Quoting Godot Docs - Localization using gettext, other advantages of using gettext over CSV are:
- gettext is a standard format, which can be edited using any text editor or GUI editors such as Poedit.
- gettext is supported by translation platforms such as Transifex and Weblate, which makes it easier for people to collaborate to localization.
- Compared to CSV, gettext works better with version control systems like Git, as each locale has its own messages file.
- Multiline strings are more convenient to edit in gettext files compared to CSV files.
If your project still runs on CSV translation, now is the best time to easily convert it to gettext!
✨ Features
- 📑 Convert CSV translations directly into
.po
and.pot
files - 🛠 Works as a Godot Editor Plugin – no external tools required
- 🔄 Supports multi-language CSVs with one source language and multiple target languages
- 📝 Automatically generates
.pot
template files from source text - 📂 Output organized in the same directory as source file for easy integration with translation workflows
📦 Installation
- Copy the
addons/csv_to_gettext_converter/
folder into your Godot project’saddons/
directory - In Godot, go to Project > Project Settings > Plugins
- Enable CSV to gettext converter
⚙️ Usage
Prepare your translation CSV. Example format:
key en de pl hello_world Hello World! Hallo Welt! Witaj świecie! exit_game Exit Game Spiel Beenden Wyjdź z gry - The first column is the translation key
- The following columns represent languages (
en
,de
,pl
, …)
In the FileSystem dock, right-click on your CSV file
Select Convert CSV to gettext
- If any
.po
or.pot
files already exist in that directory, you’ll be asked whether they should be overwritten
- After confirmation, the plugin generates:
- A
.pot
template file from the source language .po
files for each target language
- A
📂 Example Output
Source file:
/translation/translation.csv
Generated files:
/translation/translation.pot
/translation/en.po
/translation/de.po
/translation/pl.po
The translation.pot
file will contain only keys without any translations:
msgid "hello_world"
msgstr ""
msgid "exit_game"
msgstr ""
Each .po
file will contain a key with translation, e.g. en.po
will contain:
msgid "hello_world"
msgstr "Hello World!"
msgid "exit_game"
msgstr "Exit Game"
You can find more details on how to work with gettext format here: Godot Docs - Localization using gettext.
📖 Loading Translations in Godot
To use the generated .po
files in your game:
- In Godot, go to Project > Project Settings > Localization > Translations
- Click Add... button
- Find all
.po
files and add them to the list
Or add it through code:
# Load a PO file into the TranslationServer
var translation: Translation = load("res://translation/de.po")
TranslationServer.add_translation(translation)
# Switch active locale
TranslationServer.set_locale("de")
# Use translations
print(tr("hello_world")) # → Hallo Welt!
🤝 Contributing
Pull requests, bug reports, and suggestions are welcome! If you’d like to add features, feel free to fork and submit a PR.
📜 License
MIT License – feel free to use in commercial or open-source projects.
A Godot Editor addon that converts translation data stored in CSV files into gettext PO and POT files.
This makes it easier to work with translators and standard localization workflows while keeping your project’s translation sources editable in a simple CSV format.
Reviews
Quick Information

A Godot Editor addon that converts translation data stored in CSV files into gettext PO and POT files. This makes it easier to work with translators and standard localization workflows while keeping your project’s translation sources editable in a simple CSV format.