Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAlexmelman88 <99257010+Alexmelman88@users.noreply.github.com>2022-09-10 11:26:10 +0300
committerGitHub <noreply@github.com>2022-09-10 10:26:10 +0200
commitc373607f8c9548bf9de55988629b747f32d67b3d (patch)
tree1b36fb243688f96e24340075888b98fad255b232 /archinstall/lib
parent2d9804f8809f54c198c50519c66f19ee0e2ea1da (diff)
Update pot file, ru locale (#1465)
* Update general_conf.py * Add files via upload * Add files via upload
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/user_interaction/general_conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/user_interaction/general_conf.py b/archinstall/lib/user_interaction/general_conf.py
index a121f368..34c80c21 100644
--- a/archinstall/lib/user_interaction/general_conf.py
+++ b/archinstall/lib/user_interaction/general_conf.py
@@ -217,7 +217,7 @@ def add_number_of_parrallel_downloads(input_number :Optional[int] = None) -> Opt
while True:
try:
- input_number = int(TextInput("[Default value: 0] > ").run().strip() or 0)
+ input_number = int(TextInput(_("[Default value: 0] > ")).run().strip() or 0)
if input_number <= 0:
input_number = 0
elif input_number > max_downloads: