I know that it’s very early days, but I want to contribute translations to the new Ubuntu installer, but the contribution guide is way too technical for me
Is there anyone here that would be able to create a non-technical step by step guide (or a video) for this? I imagine this would be helpful for others too
Go inside the folder ubuntu-desktop-installer/packages/ubuntu_desktop_installer/lib/l10n/ and copy the file app_en.arb and rename it to app_XX.arb where XX is your language code e.g. “es” for spanish.
Edit the contents of your newly created arb file. Modify this strings:
“@@locale”: “en”,
“languageName”: “English”,
Replace them with your lang code and name.
Continue translating next strings as usual:
“welcome”: “Translation for welcome goes here”,
When you are done commit your changes into main branch:
Why the question mark? Either it gives you an error (and in this case, please provide also the entire error message) or not.
I guess, you invoked
git commit m "Test for commit message"
which is wrong. Either use
git commit -m "Test for commit message"
# or maybe better to understand and learn the commands and options
git commit --message "Test for commit message"
But because the commit message is also an important part of the commit, I recommend you to invoke it directly with
git commit
which will open your editor and you can add a multiline commit message.
Please check, that
git config core.editor
is set to your preferred editor.
If you prefer “Gedit”, you can set it
# only for the current git repository
git config core.editor "gedit"
# or set it globally for all repositories
git config --global core.editor "gedit"