Files
gopher64/data/translations
Logan McNaughton dfa673e6e9 add note about input delay (#1066)
* add note about input delay

* more
2026-06-13 08:00:29 +00:00
..
2026-05-11 10:26:40 +00:00

Adding translations to Gopher64

  1. Copy and modify the gopher64.pot file in this directory with your translations.
  2. Rename it to gopher64.po and put it here: data/translations/<lang>/LC_MESSAGES/gopher64.po

See here for more details on creating a .po file. I recommend using a program like poedit to create the .po file from the template.


For example, in the .pot file you will see:

#: src/ui/gui/about_page.slint:17
msgctxt "NewVersionButton"
msgid "New version available! Click here to download"
msgstr ""

A translation will look something like this:

#: src/ui/gui/about_page.slint:17
msgctxt "NewVersionButton"
msgid "New version available! Click here to download"
msgstr "Nova versão disponível! Clique aqui para baixar"

The only line you modify is the msgstr. The msgctxt and msgid need to remain unchanged.