Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/server.py
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/server.py')
-rw-r--r--profiles/server.py6
1 files changed, 3 insertions, 3 deletions
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