Text Localization
Let’s start by making a stripped down version of of Slow but Easy Text Drawing. We’re going to be performing work on multiple
files here, so I’m going to be putting all of them and doing all work in
a folder called text_loc_example
.
Create text_loc_example/text_loc_example.py
with the following code:
1"""
2Example showing how to draw localized text to the screen.
3
4If Python and Arcade are installed, this example can be run from the command line with:
5python -m arcade.examples.text_loc_example_start
6"""
7import arcade
8
9WINDOW_WIDTH = 500
10WINDOW_HEIGHT = 500
11WINDOW_TITLE = "Localizing Text Example"
12
13
14class GameView(arcade.View):
15 """
16 Main application class.
17 """
18 def __init__(self):
19 super().__init__()
20 self.window.background_color = arcade.color.WHITE
21 self.text = arcade.Text(
22 "Simple line of text in 12 point",
23 50.0, 450.0, arcade.color.BLACK, 12
24 )
25
26 def on_draw(self):
27 """
28 Render the screen.
29 """
30 # This command should happen before we start drawing. It will clear
31 # the screen to the background color, and erase what we drew last frame.
32 self.clear()
33
34 # We draw a dot to make it clear how the text relates to the text
35 arcade.draw_point(self.text.x, self.text.y, arcade.color.BLUE, 5)
36 self.text.draw()
37
38
39def main():
40 window = arcade.Window(WINDOW_WIDTH, WINDOW_HEIGHT, WINDOW_TITLE)
41 game = GameView()
42
43 window.show_view(game)
44 arcade.run()
45
46
47if __name__ == "__main__":
48 main()
This code should run.

We’re going to translate that “Simple line of text in 12 point” line that shows on the screen into Spanish. I’ve adapted the instructions from this blog post to do this.
We’ll do this in the following steps:
Extract the lines we want to translate from the
text_loc_example.py
file into atext_loc_example.pot
file.Translate the lines manually.
Create a database usable by Python’s
gettext
module from this translation.Load this translation into the game.
Extract the lines we want to translate from the text_loc_example.py
file.
First, wrap all user-facing strings with _("my string")
.
So in text_loc_example.py
, we’ll just wrap the line facing the user:
arcade.draw_text(
"Simple line of text in 12 point", start_x, start_y, arcade.color.BLACK, 12
)
becomes
arcade.draw_text(
_("Simple line of text in 12 point"), start_x, start_y, arcade.color.BLACK, 12
)
At this point, your program will not run (because it’s looking for a
function _
that’s not defined). This is fine, and we’ll fix it in a
bit.
Now we need to extract those strings into a .pot
file. We need an
external script for this- the pygettext.py
script.
Download the pygettext.py
program from the GitHub CPython
repo
(Right click the page, then select the “Save Page as” option to save it.
I recommend saving it to our working text_loc_example
folder to
keeps things simple).
From this folder:
python ./pygettext.py -d text_loc_example text_loc_example.py
This creates text_loc_example/text_loc_example.pot
. This is a text
file with a format we’ll be able to use. It looks like this:
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-05-06 12:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: text_loc_example.py:46
msgid "Simple line of text in 12 point"
msgstr ""
Translate the “Simple line of text in 12 point” line by changing the
msgstr
value below it (I used Google
Translate for this).
msgid "Simple line of text in 12 point"
msgstr "Línea simple de texto en 12 puntos."
Save this file as text_loc_example/text_loc_example.po
(we changed
the .pot
extension to .po
.).
Let’s move on to the next step:
Create a database usable by Python’s gettext
module from this translation.
We need another Python script for this. Download the msgfmt.py
script from the GitHub CPython
repo
(right click the page, then select the “Save Page as” option to save
it).
We need to put our translation into the right folder structure so our
library will be able to find it. Create the my_app.mo
folder
heirarchy. Because we’re translating it into Spanish (whose country
code is es
), we have to make
a locale/es/LC_MESSAGES
directory for it.
# If you're on Mac/Linux:
mkdir -p ./text_loc_example_locale/es/LC_MESSAGES
# If you're on Windows (TODO: test):
mkdir .\text_loc_example_locale\es\LC_MESSAGES
Create the text_loc_example.mo
file:
python msgfmt.py -o ./text_loc_example_locale/es/LC_MESSAGES/text_loc_example.mo text_loc_example.po
Load this translation into the game.
Add the following code to load your new translation database! I’ve
inserted ...
around where I put it.
...
import arcade
import gettext
es = gettext.translation('text_loc_example', localedir='text_loc_example_locale', languages=['es'])
es.install()
SCREEN_WIDTH = 500
...
Now you should be able to run the game with the es
translation!

Auto-translating to your user’s language
Setting the language to es
proves that our translation works, of
course, but most of the time, we want our game to load the correct
language for the user automatically. For this, replace the lines
es = gettext.translation('text_loc_example', localedir='text_loc_example_locale', languages=['es'])
es.install()
with
gettext.install('text_loc_example', localedir='text_loc_example_locale')
As the
documentation
says, this code searches the user’s computer for the language being
used, then the locale
folder for an appropriate translation to find
the right language to show on the screen.
We can test this by setting the LANG
variable before running the
program:
# MacOS / Linux
export LANG=es
python text_loc_example.py
# Windows
set LANG=es
python test_loc_example.py
Final Code
1"""
2Example showing how to draw localized text to the screen.
3
4If Python and Arcade are installed, this example can be run from the command line with:
5python -m arcade.examples.text_loc_example_done
6"""
7import arcade
8import gettext
9
10# Try to auto-detect the user's language and translate to it
11gettext.install('text_loc_example', localedir='text_loc_example_locale')
12
13WINDOW_WIDTH = 500
14WINDOW_HEIGHT = 500
15WINDOW_TITLE = "Localizing Text Example"
16
17class GameView(arcade.View):
18 """
19 Main application class.
20 """
21 def __init__(self):
22 super().__init__()
23 self.window.background_color = arcade.color.WHITE
24 self.text = arcade.Text(
25 gettext.gettext("Simple line of text in 12 point"),
26 50.0, 450.0, arcade.color.BLACK, 12
27 )
28
29 def on_draw(self):
30 """
31 Render the screen.
32 """
33 # This command should happen before we start drawing. It will clear
34 # the screen to the background color, and erase what we drew last frame.
35 self.clear()
36
37 # We draw a dot to make it clear how the text relates to the text
38 arcade.draw_point(self.text.x, self.text.y, arcade.color.BLUE, 5)
39 self.text.draw()
40
41def main():
42 window = arcade.Window(WINDOW_WIDTH, WINDOW_HEIGHT, WINDOW_TITLE)
43 game = GameView()
44
45 window.show_view(game)
46 arcade.run()
47
48
49if __name__ == "__main__":
50 main()
Final Directory structure
text_loc_example/
├── README.md
├── text_loc_example_locale
│ └── es
│ └── LC_MESSAGES
│ └── text_loc_example.mo
├── msgfmt.py
├── pygettext.py
├── text_loc_example.po
├── text_loc_example.pot
└── text_loc_example.py