Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Seiler <seileralex@gmail.com>2023-09-18 14:04:36 +0200
committerGitHub <noreply@github.com>2023-09-18 22:04:36 +1000
commit12b7017240a040fd4fbebf7c5794a1ca5560f0ea (patch)
tree49fa306f4b1dd666bbcb5d9f5abe0c7846c4967b
parentca09e1e63d611a0141a68789503cfa472e85e9f9 (diff)
Fix many typos (#1692)
Signed-off-by: Alexander Seiler <seileralex@gmail.com>
-rw-r--r--archinstall/__init__.py2
-rw-r--r--archinstall/default_profiles/profile.py6
-rw-r--r--archinstall/lib/disk/device_model.py2
-rw-r--r--archinstall/lib/disk/fido.py2
-rw-r--r--archinstall/lib/general.py2
-rw-r--r--archinstall/lib/global_menu.py4
-rw-r--r--archinstall/lib/installer.py10
-rw-r--r--archinstall/lib/interactions/__init__.py2
-rw-r--r--archinstall/lib/interactions/general_conf.py2
-rw-r--r--archinstall/lib/menu/list_manager.py2
-rw-r--r--archinstall/lib/menu/menu.py2
-rw-r--r--archinstall/lib/output.py2
-rw-r--r--archinstall/lib/translationhandler.py2
-rw-r--r--archinstall/scripts/guided.py4
-rw-r--r--archinstall/scripts/swiss.py6
-rw-r--r--examples/interactive_installation.py4
16 files changed, 27 insertions, 27 deletions
diff --git a/archinstall/__init__.py b/archinstall/__init__.py
index 39588904..7645ae39 100644
--- a/archinstall/__init__.py
+++ b/archinstall/__init__.py
@@ -43,7 +43,7 @@ __version__ = "2.6.0"
storage['__version__'] = __version__
-# add the custome _ as a builtin, it can now be used anywhere in the
+# add the custom _ as a builtin, it can now be used anywhere in the
# project to mark strings as translatable with _('translate me')
DeferredTranslation.install()
diff --git a/archinstall/default_profiles/profile.py b/archinstall/default_profiles/profile.py
index 982bd5a3..49a9c19d 100644
--- a/archinstall/default_profiles/profile.py
+++ b/archinstall/default_profiles/profile.py
@@ -81,7 +81,7 @@ class Profile:
def packages(self) -> List[str]:
"""
Returns a list of packages that should be installed when
- this profile is among the choosen ones
+ this profile is among the chosen ones
"""
return self._packages
@@ -128,7 +128,7 @@ class Profile:
"""
Set the custom settings for the profile.
This is also called when the settings are parsed from the config
- and can be overriden to perform further actions based on the profile
+ and can be overridden to perform further actions based on the profile
"""
self.custom_settings = settings
@@ -179,7 +179,7 @@ class Profile:
def preview_text(self) -> Optional[str]:
"""
Used for preview text in profiles_bck. If a description is set for a
- profile it will automatically display that one in the preivew.
+ profile it will automatically display that one in the preview.
If no preview or a different text should be displayed just
"""
if self.description:
diff --git a/archinstall/lib/disk/device_model.py b/archinstall/lib/disk/device_model.py
index 6eeb0d91..69038b01 100644
--- a/archinstall/lib/disk/device_model.py
+++ b/archinstall/lib/disk/device_model.py
@@ -202,7 +202,7 @@ class Size:
# not sure why we would ever wanna convert to percentages
if target_unit == Unit.Percent and total_size is None:
- raise ValueError('Missing paramter total size to be able to convert to percentage')
+ raise ValueError('Missing parameter total size to be able to convert to percentage')
if self.unit == target_unit:
return self
diff --git a/archinstall/lib/disk/fido.py b/archinstall/lib/disk/fido.py
index 96a74991..9eeba56a 100644
--- a/archinstall/lib/disk/fido.py
+++ b/archinstall/lib/disk/fido.py
@@ -34,7 +34,7 @@ class Fido2:
/dev/hidraw1 Yubico YubiKey OTP+FIDO+CCID
"""
- # to prevent continous reloading which will slow
+ # to prevent continuous reloading which will slow
# down moving the cursor in the menu
if not cls._loaded or reload:
try:
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py
index 611378ee..e22e7eed 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -30,7 +30,7 @@ if TYPE_CHECKING:
def generate_password(length :int = 64) -> str:
- haystack = string.printable # digits, ascii_letters, punctiation (!"#$[] etc) and whitespace
+ haystack = string.printable # digits, ascii_letters, punctuation (!"#$[] etc) and whitespace
return ''.join(secrets.choice(haystack) for i in range(length))
diff --git a/archinstall/lib/global_menu.py b/archinstall/lib/global_menu.py
index fb62b7b5..b38dac0b 100644
--- a/archinstall/lib/global_menu.py
+++ b/archinstall/lib/global_menu.py
@@ -15,7 +15,7 @@ from .output import FormattedOutput
from .profile.profile_menu import ProfileConfiguration
from .storage import storage
from .configuration import save_config
-from .interactions import add_number_of_parrallel_downloads
+from .interactions import add_number_of_parallel_downloads
from .interactions import ask_additional_packages_to_install
from .interactions import ask_for_additional_users
from .interactions import ask_for_audio_selection
@@ -119,7 +119,7 @@ class GlobalMenu(AbstractMenu):
self._menu_options['parallel downloads'] = \
Selector(
_('Parallel Downloads'),
- lambda preset: add_number_of_parrallel_downloads(preset),
+ lambda preset: add_number_of_parallel_downloads(preset),
display_func=lambda x: x if x else '0',
default=0
)
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 09e91ab8..34c9441f 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -194,7 +194,7 @@ class Installer:
for part_mod in sorted_part_mods:
if luks_handler := luks_handlers.get(part_mod):
# mount encrypted partition
- self._mount_luks_partiton(part_mod, luks_handler)
+ self._mount_luks_partition(part_mod, luks_handler)
else:
# partition is not encrypted
self._mount_partition(part_mod)
@@ -219,7 +219,7 @@ class Installer:
if part_mod.fs_type == disk.FilesystemType.Btrfs and part_mod.dev_path:
self._mount_btrfs_subvol(part_mod.dev_path, part_mod.btrfs_subvols)
- def _mount_luks_partiton(self, part_mod: disk.PartitionModification, luks_handler: Luks2):
+ def _mount_luks_partition(self, part_mod: disk.PartitionModification, luks_handler: Luks2):
# it would be none if it's btrfs as the subvolumes will have the mountpoints defined
if part_mod.mountpoint and luks_handler.mapper_dev:
target = self.target / part_mod.relative_mountpoint
@@ -315,7 +315,7 @@ class Installer:
raise RequirementError(f'Could not generate fstab, strapping in packages most likely failed (disk out of space?)\n Error: {err}')
if not gen_fstab:
- raise RequirementError(f'Genrating fstab returned empty value')
+ raise RequirementError(f'Generating fstab returned empty value')
with open(fstab_path, 'a') as fp:
fp.write(gen_fstab)
@@ -434,7 +434,7 @@ class Installer:
return False
- def activate_time_syncronization(self) -> None:
+ def activate_time_synchronization(self) -> None:
info('Activating systemd-timesyncd for time synchronization using Arch Linux and ntp.org NTP servers')
self.enable_service('systemd-timesyncd')
@@ -1008,7 +1008,7 @@ When = PostTransaction
Exec = /bin/sh -c \\"/usr/bin/limine bios-install /dev/disk/by-uuid/{root_uuid} && /usr/bin/cp /usr/share/limine/limine-bios.sys /boot/\\"
""")
- # Limine does not ship with a default configuation file. We are going to
+ # Limine does not ship with a default configuration file. We are going to
# create a basic one that is similar to the one GRUB generates.
try:
config = f"""
diff --git a/archinstall/lib/interactions/__init__.py b/archinstall/lib/interactions/__init__.py
index 53be8e7a..50c0012d 100644
--- a/archinstall/lib/interactions/__init__.py
+++ b/archinstall/lib/interactions/__init__.py
@@ -11,7 +11,7 @@ from .disk_conf import (
from .general_conf import (
ask_ntp, ask_hostname, ask_for_a_timezone, ask_for_audio_selection,
select_archinstall_language, ask_additional_packages_to_install,
- add_number_of_parrallel_downloads, select_additional_repositories
+ add_number_of_parallel_downloads, select_additional_repositories
)
from .system_conf import (
diff --git a/archinstall/lib/interactions/general_conf.py b/archinstall/lib/interactions/general_conf.py
index 14fcc3f8..8dd6e94f 100644
--- a/archinstall/lib/interactions/general_conf.py
+++ b/archinstall/lib/interactions/general_conf.py
@@ -164,7 +164,7 @@ def ask_additional_packages_to_install(preset: List[str] = []) -> List[str]:
return packages
-def add_number_of_parrallel_downloads(input_number :Optional[int] = None) -> Optional[int]:
+def add_number_of_parallel_downloads(input_number :Optional[int] = None) -> Optional[int]:
max_recommended = 5
print(_(f"This option enables the number of parallel downloads that can occur during package downloads"))
print(_("Enter the number of parallel downloads to be enabled.\n\nNote:\n"))
diff --git a/archinstall/lib/menu/list_manager.py b/archinstall/lib/menu/list_manager.py
index be31fdf0..54fb6a1b 100644
--- a/archinstall/lib/menu/list_manager.py
+++ b/archinstall/lib/menu/list_manager.py
@@ -80,7 +80,7 @@ class ListManager:
self._data = self.handle_action(choice.value, None, self._data)
elif choice.value in self._terminate_actions:
break
- else: # an entry of the existing selection was choosen
+ else: # an entry of the existing selection was chosen
selected_entry = data_formatted[choice.value] # type: ignore
self._run_actions_on_entry(selected_entry)
diff --git a/archinstall/lib/menu/menu.py b/archinstall/lib/menu/menu.py
index 358ba5e4..3bd31b88 100644
--- a/archinstall/lib/menu/menu.py
+++ b/archinstall/lib/menu/menu.py
@@ -123,7 +123,7 @@ class Menu(TerminalMenu):
:param allow_reset: This will explicitly handle a ctrl+c instead and return that specific state
:type allow_reset: bool
- param allow_reset_warning_msg: If raise_error_on_interrupt is True the warnign is set, a user confirmation is displayed
+ param allow_reset_warning_msg: If raise_error_on_interrupt is True the warning is set, a user confirmation is displayed
type allow_reset_warning_msg: str
:param extra_bottom_space: Add an extra empty line at the end of the menu
diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py
index 63d9c1fb..62a1ba27 100644
--- a/archinstall/lib/output.py
+++ b/archinstall/lib/output.py
@@ -22,7 +22,7 @@ class FormattedOutput:
) -> Dict[str, Any]:
"""
the original values returned a dataclass as dict thru the call to some specific methods
- this version allows thru the parameter class_formatter to call a dynamicly selected formatting method.
+ this version allows thru the parameter class_formatter to call a dynamically selected formatting method.
Can transmit a filter list to the class_formatter,
"""
if class_formatter:
diff --git a/archinstall/lib/translationhandler.py b/archinstall/lib/translationhandler.py
index a2e44065..33230562 100644
--- a/archinstall/lib/translationhandler.py
+++ b/archinstall/lib/translationhandler.py
@@ -138,7 +138,7 @@ class TranslationHandler:
def get_language_by_abbr(self, abbr: str) -> Language:
"""
- Get a language object by its abbrevation, e.g. en
+ Get a language object by its abbreviation, e.g. en
"""
try:
return next(filter(lambda x: x.abbr == abbr, self._translated_languages))
diff --git a/archinstall/scripts/guided.py b/archinstall/scripts/guided.py
index 51549fa8..d7cf16cd 100644
--- a/archinstall/scripts/guided.py
+++ b/archinstall/scripts/guided.py
@@ -185,7 +185,7 @@ def perform_installation(mountpoint: Path):
installation.set_timezone(timezone)
if archinstall.arguments.get('ntp', False):
- installation.activate_time_syncronization()
+ installation.activate_time_synchronization()
if archinstall.accessibility_tools_in_use():
installation.enable_espeakup()
@@ -193,7 +193,7 @@ def perform_installation(mountpoint: Path):
if (root_pw := archinstall.arguments.get('!root-password', None)) and len(root_pw):
installation.user_set_pw('root', root_pw)
- # This step must be after profile installs to allow profiles_bck to install language pre-requisits.
+ # This step must be after profile installs to allow profiles_bck to install language pre-requisites.
# After which, this step will set the language both for console and x11 if x11 was installed for instance.
installation.set_keyboard_language(locale_config.kb_layout)
diff --git a/archinstall/scripts/swiss.py b/archinstall/scripts/swiss.py
index 80fa0a48..c04ccca4 100644
--- a/archinstall/scripts/swiss.py
+++ b/archinstall/scripts/swiss.py
@@ -54,7 +54,7 @@ class SetupMenu(GlobalMenu):
super().setup_selection_menu_options()
self._menu_options['mode'] = menu.Selector(
- 'Excution mode',
+ 'Execution mode',
lambda x : select_mode(),
display_func=lambda x: x.value if x else '',
default=ExecutionMode.Full)
@@ -249,7 +249,7 @@ def perform_installation(mountpoint: Path, exec_mode: ExecutionMode):
installation.set_timezone(timezone)
if archinstall.arguments.get('ntp', False):
- installation.activate_time_syncronization()
+ installation.activate_time_synchronization()
if archinstall.accessibility_tools_in_use():
installation.enable_espeakup()
@@ -257,7 +257,7 @@ def perform_installation(mountpoint: Path, exec_mode: ExecutionMode):
if (root_pw := archinstall.arguments.get('!root-password', None)) and len(root_pw):
installation.user_set_pw('root', root_pw)
- # This step must be after profile installs to allow profiles_bck to install language pre-requisits.
+ # This step must be after profile installs to allow profiles_bck to install language pre-requisites.
# After which, this step will set the language both for console and x11 if x11 was installed for instance.
installation.set_keyboard_language(locale_config.kb_layout)
diff --git a/examples/interactive_installation.py b/examples/interactive_installation.py
index 9eac029c..f8cc75fc 100644
--- a/examples/interactive_installation.py
+++ b/examples/interactive_installation.py
@@ -163,7 +163,7 @@ def perform_installation(mountpoint: Path):
installation.set_timezone(timezone)
if archinstall.arguments.get('ntp', False):
- installation.activate_time_syncronization()
+ installation.activate_time_synchronization()
if archinstall.accessibility_tools_in_use():
installation.enable_espeakup()
@@ -171,7 +171,7 @@ def perform_installation(mountpoint: Path):
if (root_pw := archinstall.arguments.get('!root-password', None)) and len(root_pw):
installation.user_set_pw('root', root_pw)
- # This step must be after profile installs to allow profiles_bck to install language pre-requisits.
+ # This step must be after profile installs to allow profiles_bck to install language pre-requisites.
# After which, this step will set the language both for console and x11 if x11 was installed for instance.
installation.set_keyboard_language(locale_config.kb_layout)