Editor and docs localization

Godot aims to make game development available to everyone, including people who may not know or be comfortable with English. Therefore, we do our best to make the most important resources available in many languages, thanks to the translation effort of the community. These resources include:

  1. Godot editor’s interface (ca. 15,000 words).
  2. online documentation (editor manual and tutorials, ca. 300,000 words).
  3. class reference, available both online and in the editor (ca. 200,000 words). PO files), and the open source Weblate web-based localization platform, which allows easy collaboration of many contributors to complete the translation for the various components, and keep them up to date. Click the bold links above to access each resource on Weblate. This page gives an overview of the general translation workflow on Weblate, and some resource-specific instructions on e.g. how to handle some keywords or the localization of images. Tip Translating all the official Godot content is a massive undertaking, so we advise prioritizing the resources as they are listed above: first the editor interface, then the online documentation, and eventually the class reference if there are enough translators to keep up with updates.

    Using Weblate for translations

    While our translations eventually reside in the Git repositories of the Godot engine and its documentation, all translation updates are handled through Weblate, and thus direct pull requests to the Git repositories are not accepted. Translations are synced manually between Weblate and the Godot repositories by maintainers. register on Weblate to contribute to Godot’s translations. editor translation as an example) to find the list of all languages: See also translation workflow for more details.

    Adding a new language

    If your language is already listed, click on its name to access the overview, and skip the rest of this section. If your language is not listed, scroll to the bottom of the list of languages and click the “Start new translation” button, and select the language you want to translate to: Important fr for French) instead of a regional variant (e.g. fr_FR for French (France), fr_CA for French (Canada), or fr_DZ for French (Algeria)). Godot has a huge amount of content to translate, so duplicating the work for regional variants should only be done if the language variations are significant enough. Additionally, if a translation is done with for a regional variant, it will only be available automatically for users located in this region (or having their system language configured for this region). es first, then duplicate it to es_AR, es_ES, es_MX, etc. if necessary) or Portuguese (pt_BR vs pt_PT).

    Translation interface

    Once a language has been selected, you will see an overview of the translation status, including how many strings are left to translate or review. Each item can be clicked and used to browse through the corresponding list. You can also click the “Translate” button to get started on the list of strings needing action. After selecting a list of clicking “Translate”, you will see the main translation interface where all the work happens: On that page, you have:
    • A toolbar which lets you cycle through strings of the current list, change to another predefined list or do a custom search, etc. There is also a “Zen” editing mode with a simplified interface.
  • The actual string you are working on in the “Translation” panel. By default, there should be the English source string and an edit box for your language. If you are familiar with other languages, you can add them in your user settings to give you more context for translation. Once you are done editing the current string, press “Save” to confirm changes and move to the next entry. Alternatively, use the “Skip” button to skip it. The “Needs editing” checkbox means that the original string was updated, and the translation therefore needs review to take those changes into account (in PO jargon, these are so-called “fuzzy” strings). Such strings won’t be used in the translation until fixed.
  • The bottom panel has various tools which can help with the translation effort, such as context from nearby strings (usually from the same editor tool or documentation page, so they might use similar terms), comments from other translators, machine translations, and a list of all other existing translations for that string.
  • On the top right, the glossary shows terms for which an entry has been added previously, and which are included in the current string. For example, if you decided with fellow translators to use a specific translation for the “node” term in Godot, you can add it to the glossary to ensure that other translators use the same convention.
  • The bottom right panel includes information on the source string. The most relevant item is the “source string location”, which links you to the original string on GitHub. You may need to search for the string in the page to locate it and its surrounding context.

    Locating original content

    msgid) and their translation (msgstr), and by default, Weblate will present the strings in that order. It can therefore be useful to understand how the content is organized in the PO files to help you locate the original content and use it as a reference when translating. Important It is primordial to use the original context as reference when translating, as many words have several possible translations depending on the context. Using the wrong translation can actually be detrimental to the user and make things harder to understand than if they stayed in English. Using the context also makes the translation effort much easier and more enjoyable, as you can see directly if the translation you wrote will make sense in context.
  • alphabetical order, so all the strings defined in a given file will be grouped together. For example, if the “source string location” indicates editor/code_editor.cpp, the current string (and the nearby ones) is defined in the editor/code_editor.cpp code file, and is thereby related to the code editors in Godot (GDScript, shaders).
  • table of contents, so for example the first strings are from the front page of the documentation. The recommended workflow is therefore to find a unique string corresponding to a page that you want to translate, and then translate all the strings with the same source string location while comparing with the online version of that page in English. An example of source string location could be getting_started/step_by_step/nodes_and_scenes.rst for the page Nodes and Scenes.
  • alphabetical order, which is also the same as the order of the table of contents for the online version. You can therefore locate the source string corresponding to the brief description of a given class to find the first string to translate and all other descriptions from that class should be in the subsequent strings on Weblate. For example, the descriptions for the Node2D class would have the source string location doc/classes/Node2D.xml. location: token, e.g. location:nodes_and_scenes.rst): Note location:nodes_and_scenes.rst query would land first on the “Introduction” source string which is used in dozens of pages, including some that come before nodes_and_scenes.rst in the template. Clicking the “Next” button then brings us to the “Scene and nodes” title string displayed above. So it may happen that a given paragraph or section title is not at the location you’d expect it when reading the online version of a page.

    Respecting the markup syntax

    Each translation resource originates from a different source code format, and having some notions on the markup language used for each resource is important to avoid creating syntax errors in your translations.

    Editor interface (C++)

    The editor translations originate from C++ strings, and may use:
  • C format specifiers such as %s (a string) or %d (a number). These specifiers are replaced by content at runtime, and should be preserved and placed in your translation where necessary for it to be meaningful after substitution. You may need to refer to the source string location to understand what kind of content will be substituted if it’s not clear from the sentence. Example (%s will be substituted with a file name or path):
  1. # PO file:"There is no '%s' file."# Weblate:There is no '%s' file.
  • C escape characters such as \n (line break) or \t (tabulation). In the Weblate editor, the \n characters are replaced by (return) and \t by . Tabs are not used much, but you should make sure to use line breaks in the same way as the original English string (Weblate will issue a warning if you don’t). Line breaks might sometimes be used for vertical spacing, or manual wrapping of long lines which would otherwise be too long especially in the editor translation). Example:
  1. # PO file:"Scene '%s' is currently being edited.\n""Changes will only take effect when reloaded."# Weblate:Scene '%s' is currently being edited.↵Changes will only take effect when reloaded.

Note s%.

Online documentation (RST)

The documentation translations originate from reStructuredText (RST) files, which also use their own markup syntax to style text, create internal and external links, etc. Here are some examples:

  1. # "development" is styled bold.# "Have a look here" is a link pointing to https://docs.godotengine.org/en/latest.# You should translate "Have a look here", but not the URL, unless there is# a matching URL for the same content in your language.# Note: The `, <, >, and _ characters all have a meaning in the hyperlink# syntax and should be preserved.Looking for the documentation of the current **development** branch?`Have a look here <https://docs.godotengine.org/en/latest>`_.# "|supported|" is an inline reference to an image and should stay unchanged.# "master" uses the markup for inline code, and will be styled as such.# Note: Inline code in RST uses 2 backticks on each side, unlike Markdown.# Single backticks are used for hyperlinks.|supported| Backwards-compatible new features (backported from the ``master``branch) as well as bug, security, and platform support fixes.# The :ref: Sphinx "role" is used for internal references to other pages of# the documentation.# It can be used with only the reference name of a page (which should not be# changed), in which case the title of that page will be displayed:See :ref:`doc_ways_to_contribute`.# Or it can be used with an optional custom title, which should thus be translated:See :ref:`how to contribute <doc_ways_to_contribute>`.# You may encounter other Sphinx roles, such as :kbd: used for shortcut keys.# You can translate the content between backticks to match the usual key names,# if it's different from the English one.Save the scene. Click Scene -> Save, or press :kbd:`Ctrl + S` on Windows/Linuxor :kbd:`Cmd + S` on macOS.

See also reStructured Text primer for a quick overview of the markup language you may find in source strings. You may encounter especially the inline markup (bold, italics, inline code) and the internal and external hyperlink markup.

Class reference (BBCode)

The class reference is documented in the main Godot repository using XML files, and with BBCode-like markup for styling and internal references. [b]Bold[/b] and [i]Italics[/i]), while others are Godot-specific and used for advanced features such as inline code (e.g. [code]true[/code]), linking to another class (e.g. [Node2D]) or to a property in a given class (e.g. [member Node2D.position]), or for multiline code blocks. Example:

  1. Returns a color according to the standardized [code]name[/code] with [code]alpha[/code] ranging from 0 to 1.[codeblock]red = ColorN("red", 1)[/codeblock]Supported color names are the same as the constants defined in [Color].

[code]name[/code], [code]alpha[/code], and [Color] should not be translated, as they refer respectively to argument names and a class of the Godot API. Similarly, the contents of the [codeblock] should not be translated, as ColorN is a function of the Godot API and "red" is one of the named colors it supports. At most, you can translate the name of the variable which holds the result (red = ...). Note also that in the XML, each line is a paragraph, so you should not add line breaks if they are not part of the original translation. See also list of BBCode-like tags which are used throughout the class reference.

Offline translation and testing

Poedit or Lokalize. To download the PO file locally, browse to the translation overview for your language, and select the first item in the “Files” menu: Once you are done with a series of edits, use the “Upload translation” item in that same menu and select your file. Choose “Add as translation” for the file upload mode. Note If a significant amount of time has passed between your download of the PO file and the upload of the edited version, there is a risk to overwrite the translations authored by other contributors in the meantime. This is why we advise to use the online interface so that you always work on the latest version. compile Godot from source. <lang>.po (e.g. eo.po for Esperanto) and place it in the editor/translations/ folder (GitHub). doc/translations/ folder (GitHub).

Localizing documentation images

The online documentation includes many images, which can be screenshots of the Godot editor, custom-made graphs, of any other kind of visual content. Some of it includes text and might thus be relevant to localize in your language. godot-docs-l10n Git repository where the documentation translations are synced from Weblate. Note The workflow is not the most straightforward and requires some knowledge of Git. We plan to work on a simplified Web tool which could be used to manage image localization in a convenient way, abstracting away these steps. First look at Godot’s editor. Click the “Edit on GitHub” link in the top right corner: getting_started/step_by_step/img/project_manager_first_open.png). img/ folder which contains them to check for that. project_manager_first_open.png would become project_manager_first_open.fr.png for the French localization. godot-docs-l10n, recreate the same folder structure as for the original image in the images subfolder (GitHub), and place your translated image there. In our example, the end result should be images/getting_started/step_by_step/img/project_manager_first_open.fr.png. make a Pull Request.