Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/menu
diff options
context:
space:
mode:
authorAlexmelman88 <99257010+Alexmelman88@users.noreply.github.com>2022-05-17 00:13:28 +0300
committerGitHub <noreply@github.com>2022-05-16 23:13:28 +0200
commit6bf594984230abb4b9c9a8584cfd2cf0f1525e95 (patch)
tree611d27bb08d8beb521f65e4e76b385d62bc247d0 /archinstall/lib/menu
parentbdf11913d4bbfa84a6008b3a0b707edb78a1c210 (diff)
Fixed base.pot (#1191)
* Update list_manager.py * Update base.pot * Update base.po * Update base.pot * Update base.pot * Update base.po * Add files via upload
Diffstat (limited to 'archinstall/lib/menu')
-rw-r--r--archinstall/lib/menu/list_manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/menu/list_manager.py b/archinstall/lib/menu/list_manager.py
index 4c7e9907..9faa1c77 100644
--- a/archinstall/lib/menu/list_manager.py
+++ b/archinstall/lib/menu/list_manager.py
@@ -256,7 +256,7 @@ class ListManager:
# TODO guarantee unicity
if isinstance(self._data,list):
if self.action == str(_('Add')):
- self.target = TextInput(_('Add :'),None).run()
+ self.target = TextInput(_('Add: '),None).run()
self._data.append(self.target)
if self.action == str(_('Copy')):
while True:
@@ -280,7 +280,7 @@ class ListManager:
origval = None
if self.action == str(_('Add')):
key = TextInput(_('Key: '),None).run()
- value = TextInput(_('Value :'),None).run()
+ value = TextInput(_('Value: '),None).run()
self._data[key] = value
if self.action == str(_('Copy')):
while True: