-
-
Notifications
You must be signed in to change notification settings - Fork 64
Translations
ars edited this page Jan 23, 2026
·
1 revision
Help us make HeadUnit Revived accessible to everyone by contributing translations for your language!
Translating the app is straightforward. You don't need to be a developer; you just need to follow these steps:
All application strings are stored in the English base file:
app/src/main/res/values/strings.xml
If your language is not yet supported, you need to create a new folder in app/src/main/res/ named values-<lang>, where <lang> is the ISO 639-1 code for your language.
-
French:
values-fr -
Spanish:
values-es -
Italian:
values-it -
German:
values-de(already exists)
- Copy the
strings.xmlfrom the Englishvaluesfolder into your new language folder. - Open the file and translate the text between the
<string>...</string>tags. -
Important: Do not translate the
name="..."attribute (e.g., keepname="app_name"as is). - Keep any placeholders like
%s,%d, or HTML tags like<b>exactly where they are in the sentence.
- Fork the repository on GitHub.
- Commit your new folder and file to your fork.
- Submit a Pull Request (PR) to the main project.
If you are not familiar with GitHub or Pull Requests, you can also open an Issue and paste your translated strings.xml there, and we will integrate it for you.
Thank you for your help!