archinstall/archinstall/locales
Abdullah Koyuncu e7442bf5c6
Translation: Update the Turkish base.po/base.mo (#3964)
2025-12-03 12:26:09 +11:00
..
ar/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
ca/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
cs/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
de/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
el/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
en/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
es/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
et/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
fi/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
fr/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
ga/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
he/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
hi/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
hu/LC_MESSAGES Translation: Update hungarian base.po/base.mo (#3961) 2025-12-01 18:57:59 +11:00
id/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
it/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
ja/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
ka/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
ko/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
lt/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
nl/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
pl/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
pt/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
pt_BR/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
ro/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
ru/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
sv/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
ta/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
tr/LC_MESSAGES Translation: Update the Turkish base.po/base.mo (#3964) 2025-12-03 12:26:09 +11:00
uk/LC_MESSAGES Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
ur/LC_MESSAGES Updated translation and fixed errors in last translation. (#3515) 2025-05-28 16:19:40 +10:00
uz/LC_MESSAGES Add Uzbek (uz) language support (#3854) 2025-10-07 21:11:42 +11:00
zh-CN/LC_MESSAGES Another Italian translation update (#3436) 2025-05-05 07:03:09 +10:00
zh-TW/LC_MESSAGES Update base.po (#3723) 2025-08-10 06:08:09 +00:00
README.md Update zh-CN translation, fix locales/README.md (#3409) 2025-04-27 13:02:02 +10:00
base.pot Bumping version to: 3.0.14 (#3960) 2025-11-29 22:19:59 +01:00
languages.json Add Uzbek (uz) language support (#3854) 2025-10-07 21:11:42 +11:00
locales_generator.sh Fundamentally improve German translations (#3780) 2025-09-09 17:02:24 +10:00

README.md

Nationalization

Archinstall supports multiple languages, which depend on translations coming from the community :)

Important Note

Before starting a new language translation be aware that a font for that language may not be available on the ISO.

Fonts that are using a different character set than Latin will not be displayed correctly. If those languages want to be selected, then a proper font has to be set manually in the console.

All available console fonts can be found in /usr/share/kbd/consolefonts and they can be set with setfont LatGrkCyr-8x16.

Adding new languages

New languages can be added simply by creating a new folder with the proper language abbreviation (see list languages.json if unsure). Run the following command to create a new template for a language

mkdir -p <abbr>/LC_MESSAGES/ && touch <abbr>/LC_MESSAGES/base.po

After that run the script ./locales_generator.sh <lang_abbr> it will automatically populate the new base.po file with the strings that need to be translated into the new language. For example the base.po might contain something like the following now

#: lib/user_interaction.py:82
msgid "Do you really want to abort?"
msgstr ""

The msgid is the identifier of the string in the code as well as the default text to be displayed, meaning that if no translation is provided for a language then this is the text that is going to be shown.

Perform translations

Firstly run the script ./locales_generator.sh <lang_abbr> to update base.po to the latest.

To perform translations for a language, the file base.po can be edited manually, or the neat poedit can be used (https://poedit.net/). If editing the file manually, write the translation in the msgstr part

#: lib/user_interaction.py:82
msgid "Do you really want to abort?"
msgstr "Wollen sie wirklich abbrechen?"

After the translations have been written, run the script once more ./locales_generator.sh <lang_abbr> and it will auto-generate the base.mo file with the included translations.

After that you're all ready to go and enjoy Archinstall in the new language :)