index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Alexmelman88 <99257010+Alexmelman88@users.noreply.github.com> | 2022-05-09 10:58:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 09:58:06 +0200 |
commit | 20ffebac50478554a7582de5e5c1d8b4504ea8be (patch) | |
tree | 730beaba5f54421d646b71427b7ba9c7e629f64f /profiles/server.py | |
parent | 80cee500e0ef0cf4de84b8b60b35c25f667e7a34 (diff) |
-rw-r--r-- | profiles/server.py | 6 |
diff --git a/profiles/server.py b/profiles/server.py index bbeece12..91ac7cf2 100644 --- a/profiles/server.py +++ b/profiles/server.py @@ -6,7 +6,7 @@ import archinstall is_top_level_profile = True -__description__ = 'Provides a selection of various server packages to install and enable, e.g. httpd, nginx, mariadb' +__description__ = str(_('Provides a selection of various server packages to install and enable, e.g. httpd, nginx, mariadb')) available_servers = [ "cockpit", @@ -26,8 +26,8 @@ def _prep_function(*args, **kwargs): Magic function called by the importing installer before continuing any further. """ - servers = archinstall.Menu( - 'Choose which servers to install, if none then a minimal installation wil be done', + servers = archinstall.Menu(str(_( + 'Choose which servers to install, if none then a minimal installation wil be done')), available_servers, preset_values=archinstall.storage.get('_selected_servers', []), multi=True |