Update nationalization (#944)
* Update nationalization * Update translations * Finish german translation * Fix errors #943 * Add remaining translations * Fix alignment in menu * Update README * Update translations: * Fix flake8 * Update tz function Co-authored-by: Daniel Girtler <girtler.daniel@gmail.com>
This commit is contained in:
parent
ec73bdab4c
commit
9fb8d3164c
|
|
@ -36,7 +36,7 @@ from .lib.systemd import *
|
||||||
from .lib.user_interaction import *
|
from .lib.user_interaction import *
|
||||||
from .lib.menu import Menu
|
from .lib.menu import Menu
|
||||||
from .lib.menu.selection_menu import GlobalMenu
|
from .lib.menu.selection_menu import GlobalMenu
|
||||||
from .lib.translation import Translation
|
from .lib.translation import Translation, DeferredTranslation
|
||||||
from .lib.plugins import plugins, load_plugin # This initiates the plugin loading ceremony
|
from .lib.plugins import plugins, load_plugin # This initiates the plugin loading ceremony
|
||||||
from .lib.configuration import *
|
from .lib.configuration import *
|
||||||
parser = ArgumentParser()
|
parser = ArgumentParser()
|
||||||
|
|
@ -44,6 +44,10 @@ parser = ArgumentParser()
|
||||||
__version__ = "2.4.0-dev0"
|
__version__ = "2.4.0-dev0"
|
||||||
storage['__version__'] = __version__
|
storage['__version__'] = __version__
|
||||||
|
|
||||||
|
# add the custome _ as a builtin, it can now be used anywhere in the
|
||||||
|
# project to mark strings as translatable with _('translate me')
|
||||||
|
DeferredTranslation.install()
|
||||||
|
|
||||||
|
|
||||||
def define_arguments():
|
def define_arguments():
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@ class Filesystem:
|
||||||
for partition in layout.get('partitions', []):
|
for partition in layout.get('partitions', []):
|
||||||
# We don't want to re-add an existing partition (those containing a UUID already)
|
# We don't want to re-add an existing partition (those containing a UUID already)
|
||||||
if partition.get('wipe', False) and not partition.get('PARTUUID', None):
|
if partition.get('wipe', False) and not partition.get('PARTUUID', None):
|
||||||
print("Adding partition....")
|
print(_("Adding partition...."))
|
||||||
start = partition.get('start') or (
|
start = partition.get('start') or (
|
||||||
prev_partition and f'{prev_partition["device_instance"].end_sectors}s' or DEFAULT_PARTITION_START)
|
prev_partition and f'{prev_partition["device_instance"].end_sectors}s' or DEFAULT_PARTITION_START)
|
||||||
partition['device_instance'] = self.add_partition(partition.get('type', 'primary'),
|
partition['device_instance'] = self.add_partition(partition.get('type', 'primary'),
|
||||||
|
|
@ -94,7 +94,7 @@ class Filesystem:
|
||||||
# print('Device instance:', partition['device_instance'])
|
# print('Device instance:', partition['device_instance'])
|
||||||
|
|
||||||
elif (partition_uuid := partition.get('PARTUUID')) and (partition_instance := self.blockdevice.get_partition(uuid=partition_uuid)):
|
elif (partition_uuid := partition.get('PARTUUID')) and (partition_instance := self.blockdevice.get_partition(uuid=partition_uuid)):
|
||||||
print("Re-using partition_instance:", partition_instance)
|
print(_("Re-using partition instance: {}").format(partition_instance))
|
||||||
partition['device_instance'] = partition_instance
|
partition['device_instance'] = partition_instance
|
||||||
else:
|
else:
|
||||||
raise ValueError(f"{self}.load_layout() doesn't know how to continue without a new partition definition or a UUID ({partition.get('PARTUUID')}) on the device ({self.blockdevice.get_partition(uuid=partition.get('PARTUUID'))}).")
|
raise ValueError(f"{self}.load_layout() doesn't know how to continue without a new partition definition or a UUID ({partition.get('PARTUUID')}) on the device ({self.blockdevice.get_partition(uuid=partition.get('PARTUUID'))}).")
|
||||||
|
|
@ -113,7 +113,9 @@ class Filesystem:
|
||||||
raise ValueError(f"Missing encryption password for {partition['device_instance']}")
|
raise ValueError(f"Missing encryption password for {partition['device_instance']}")
|
||||||
|
|
||||||
from ..user_interaction import get_password
|
from ..user_interaction import get_password
|
||||||
storage['arguments']['!encryption-password'] = get_password(f"Enter a encryption password for {partition['device_instance']}")
|
|
||||||
|
prompt = str(_('Enter a encryption password for {}').format(partition['device_instance']))
|
||||||
|
storage['arguments']['!encryption-password'] = get_password(prompt)
|
||||||
|
|
||||||
partition['!password'] = storage['arguments']['!encryption-password']
|
partition['!password'] = storage['arguments']['!encryption-password']
|
||||||
|
|
||||||
|
|
@ -136,7 +138,7 @@ class Filesystem:
|
||||||
while True:
|
while True:
|
||||||
partition['filesystem']['format'] = input(f"Enter a valid fs-type for newly encrypted partition {partition['filesystem']['format']}: ").strip()
|
partition['filesystem']['format'] = input(f"Enter a valid fs-type for newly encrypted partition {partition['filesystem']['format']}: ").strip()
|
||||||
if not partition['filesystem']['format'] or valid_fs_type(partition['filesystem']['format']) is False:
|
if not partition['filesystem']['format'] or valid_fs_type(partition['filesystem']['format']) is False:
|
||||||
print("You need to enter a valid fs-type in order to continue. See `man parted` for valid fs-type's.")
|
print(_("You need to enter a valid fs-type in order to continue. See `man parted` for valid fs-type's."))
|
||||||
continue
|
continue
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ from ..hardware import has_uefi
|
||||||
from ..output import log
|
from ..output import log
|
||||||
from ..menu import Menu
|
from ..menu import Menu
|
||||||
|
|
||||||
|
|
||||||
def suggest_single_disk_layout(block_device :BlockDevice,
|
def suggest_single_disk_layout(block_device :BlockDevice,
|
||||||
default_filesystem :Optional[str] = None,
|
default_filesystem :Optional[str] = None,
|
||||||
advanced_options :bool = False) -> Dict[str, Any]:
|
advanced_options :bool = False) -> Dict[str, Any]:
|
||||||
|
|
|
||||||
|
|
@ -141,8 +141,8 @@ class Installer:
|
||||||
|
|
||||||
# We avoid printing /mnt/<log path> because that might confuse people if they note it down
|
# We avoid printing /mnt/<log path> because that might confuse people if they note it down
|
||||||
# and then reboot, and a identical log file will be found in the ISO medium anyway.
|
# and then reboot, and a identical log file will be found in the ISO medium anyway.
|
||||||
print(f"[!] A log file has been created here: {os.path.join(storage['LOG_PATH'], storage['LOG_FILE'])}")
|
print(_("[!] A log file has been created here: {} {}").format(os.path.join(storage['LOG_PATH'], storage['LOG_FILE'])))
|
||||||
print(" Please submit this issue (and file) to https://github.com/archlinux/archinstall/issues")
|
print(_(" Please submit this issue (and file) to https://github.com/archlinux/archinstall/issues"))
|
||||||
raise args[1]
|
raise args[1]
|
||||||
|
|
||||||
self.genfstab()
|
self.genfstab()
|
||||||
|
|
@ -282,7 +282,7 @@ class Installer:
|
||||||
|
|
||||||
partition.mount(f'{self.target}{mountpoint}')
|
partition.mount(f'{self.target}{mountpoint}')
|
||||||
|
|
||||||
def post_install_check(self, *args :str, **kwargs :str) -> List[bool]:
|
def post_install_check(self, *args :str, **kwargs :str) -> List[str]:
|
||||||
return [step for step, flag in self.helper_flags.items() if flag is False]
|
return [step for step, flag in self.helper_flags.items() if flag is False]
|
||||||
|
|
||||||
def pacstrap(self, *packages :str, **kwargs :str) -> bool:
|
def pacstrap(self, *packages :str, **kwargs :str) -> bool:
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ class Menu(TerminalMenu):
|
||||||
menu_title = f'\n{title}\n\n'
|
menu_title = f'\n{title}\n\n'
|
||||||
|
|
||||||
if skip:
|
if skip:
|
||||||
menu_title += "Use ESC to skip\n\n"
|
menu_title += str(_("Use ESC to skip\n\n"))
|
||||||
|
|
||||||
if default_option:
|
if default_option:
|
||||||
# if a default value was specified we move that one
|
# if a default value was specified we move that one
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
import sys
|
import sys
|
||||||
|
from typing import Dict
|
||||||
|
|
||||||
from .menu import Menu
|
from .menu import Menu
|
||||||
from ..general import SysCommand
|
from ..general import SysCommand
|
||||||
|
|
@ -7,7 +8,7 @@ from ..output import log
|
||||||
from ..profiles import is_desktop_profile
|
from ..profiles import is_desktop_profile
|
||||||
from ..disk import encrypted_partitions
|
from ..disk import encrypted_partitions
|
||||||
from ..locale_helpers import set_keyboard_language
|
from ..locale_helpers import set_keyboard_language
|
||||||
from ..user_interaction import get_password
|
from ..user_interaction import get_password, ask_for_a_timezone
|
||||||
from ..user_interaction import ask_ntp
|
from ..user_interaction import ask_ntp
|
||||||
from ..user_interaction import ask_for_swap
|
from ..user_interaction import ask_for_swap
|
||||||
from ..user_interaction import ask_for_bootloader
|
from ..user_interaction import ask_for_bootloader
|
||||||
|
|
@ -15,7 +16,6 @@ from ..user_interaction import ask_hostname
|
||||||
from ..user_interaction import ask_for_audio_selection
|
from ..user_interaction import ask_for_audio_selection
|
||||||
from ..user_interaction import ask_additional_packages_to_install
|
from ..user_interaction import ask_additional_packages_to_install
|
||||||
from ..user_interaction import ask_to_configure_network
|
from ..user_interaction import ask_to_configure_network
|
||||||
from ..user_interaction import ask_for_a_timezone
|
|
||||||
from ..user_interaction import ask_for_superuser_account
|
from ..user_interaction import ask_for_superuser_account
|
||||||
from ..user_interaction import ask_for_additional_users
|
from ..user_interaction import ask_for_additional_users
|
||||||
from ..user_interaction import select_language
|
from ..user_interaction import select_language
|
||||||
|
|
@ -30,6 +30,7 @@ from ..user_interaction import select_profile
|
||||||
from ..user_interaction import select_archinstall_language
|
from ..user_interaction import select_archinstall_language
|
||||||
from ..translation import Translation
|
from ..translation import Translation
|
||||||
|
|
||||||
|
|
||||||
class Selector:
|
class Selector:
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
|
|
@ -76,7 +77,6 @@ class Selector:
|
||||||
self._display_func = display_func
|
self._display_func = display_func
|
||||||
self._current_selection = default
|
self._current_selection = default
|
||||||
self.enabled = enabled
|
self.enabled = enabled
|
||||||
self.text = self.menu_text()
|
|
||||||
self._dependencies = dependencies
|
self._dependencies = dependencies
|
||||||
self._dependencies_not = dependencies_not
|
self._dependencies_not = dependencies_not
|
||||||
|
|
||||||
|
|
@ -88,12 +88,15 @@ class Selector:
|
||||||
def dependencies_not(self):
|
def dependencies_not(self):
|
||||||
return self._dependencies_not
|
return self._dependencies_not
|
||||||
|
|
||||||
|
@property
|
||||||
|
def current_selection(self):
|
||||||
|
return self._current_selection
|
||||||
|
|
||||||
def set_enabled(self):
|
def set_enabled(self):
|
||||||
self.enabled = True
|
self.enabled = True
|
||||||
|
|
||||||
def update_description(self, description):
|
def update_description(self, description):
|
||||||
self._description = description
|
self._description = description
|
||||||
self.text = self.menu_text()
|
|
||||||
|
|
||||||
def menu_text(self):
|
def menu_text(self):
|
||||||
current = ''
|
current = ''
|
||||||
|
|
@ -105,14 +108,13 @@ class Selector:
|
||||||
current = str(self._current_selection)
|
current = str(self._current_selection)
|
||||||
|
|
||||||
if current:
|
if current:
|
||||||
padding = 35 - len(self._description)
|
padding = 35 - len(str(self._description))
|
||||||
current = ' ' * padding + f'SET: {current}'
|
current = ' ' * padding + f'SET: {current}'
|
||||||
|
|
||||||
return f'{self._description} {current}'
|
return f'{self._description} {current}'
|
||||||
|
|
||||||
def set_current_selection(self, current):
|
def set_current_selection(self, current):
|
||||||
self._current_selection = current
|
self._current_selection = current
|
||||||
self.text = self.menu_text()
|
|
||||||
|
|
||||||
def has_selection(self):
|
def has_selection(self):
|
||||||
if self._current_selection is None:
|
if self._current_selection is None:
|
||||||
|
|
@ -168,7 +170,7 @@ class GlobalMenu:
|
||||||
self._menu_options['!encryption-password'] = \
|
self._menu_options['!encryption-password'] = \
|
||||||
Selector(
|
Selector(
|
||||||
_('Set encryption password'),
|
_('Set encryption password'),
|
||||||
lambda: get_password(prompt='Enter disk encryption password (leave blank for no encryption): '),
|
lambda: get_password(prompt=str(_('Enter disk encryption password (leave blank for no encryption): '))),
|
||||||
display_func=lambda x: self._secret(x) if x else 'None',
|
display_func=lambda x: self._secret(x) if x else 'None',
|
||||||
dependencies=['harddrives'])
|
dependencies=['harddrives'])
|
||||||
self._menu_options['swap'] = \
|
self._menu_options['swap'] = \
|
||||||
|
|
@ -181,7 +183,7 @@ class GlobalMenu:
|
||||||
_('Select bootloader'),
|
_('Select bootloader'),
|
||||||
lambda: ask_for_bootloader(storage['arguments'].get('advanced', False)),)
|
lambda: ask_for_bootloader(storage['arguments'].get('advanced', False)),)
|
||||||
self._menu_options['hostname'] = \
|
self._menu_options['hostname'] = \
|
||||||
Selector('Specify hostname', lambda: ask_hostname())
|
Selector(_('Specify hostname'), lambda: ask_hostname())
|
||||||
self._menu_options['!root-password'] = \
|
self._menu_options['!root-password'] = \
|
||||||
Selector(
|
Selector(
|
||||||
_('Set root password'),
|
_('Set root password'),
|
||||||
|
|
@ -222,10 +224,10 @@ class GlobalMenu:
|
||||||
Selector(
|
Selector(
|
||||||
_('Configure network'),
|
_('Configure network'),
|
||||||
lambda: ask_to_configure_network(),
|
lambda: ask_to_configure_network(),
|
||||||
display_func=lambda x: x if x else 'Not configured, unavailable unless setup manually',
|
display_func=lambda x: x if x else _('Not configured, unavailable unless setup manually'),
|
||||||
default={})
|
default={})
|
||||||
self._menu_options['timezone'] = \
|
self._menu_options['timezone'] = \
|
||||||
Selector('Select timezone', lambda: ask_for_a_timezone())
|
Selector(_('Select timezone'), lambda: ask_for_a_timezone())
|
||||||
self._menu_options['ntp'] = \
|
self._menu_options['ntp'] = \
|
||||||
Selector(
|
Selector(
|
||||||
_('Set automatic time sync (NTP)'),
|
_('Set automatic time sync (NTP)'),
|
||||||
|
|
@ -235,7 +237,7 @@ class GlobalMenu:
|
||||||
Selector(
|
Selector(
|
||||||
self._install_text(),
|
self._install_text(),
|
||||||
enabled=True)
|
enabled=True)
|
||||||
self._menu_options['abort'] = Selector('Abort', enabled=True)
|
self._menu_options['abort'] = Selector(_('Abort'), enabled=True)
|
||||||
|
|
||||||
def enable(self, selector_name, omit_if_set=False):
|
def enable(self, selector_name, omit_if_set=False):
|
||||||
arg = storage['arguments'].get(selector_name, None)
|
arg = storage['arguments'].get(selector_name, None)
|
||||||
|
|
@ -259,26 +261,29 @@ class GlobalMenu:
|
||||||
self._set_kb_language()
|
self._set_kb_language()
|
||||||
|
|
||||||
enabled_menus = self._menus_to_enable()
|
enabled_menus = self._menus_to_enable()
|
||||||
menu_text = [m.text for m in enabled_menus.values()]
|
menu_text = [m.menu_text() for m in enabled_menus.values()]
|
||||||
selection = Menu('Set/Modify the below options', menu_text, sort=False).run()
|
selection = Menu(_('Set/Modify the below options'), menu_text, sort=False).run()
|
||||||
|
|
||||||
if selection:
|
if selection:
|
||||||
selection = selection.strip()
|
selection = selection.strip()
|
||||||
if 'Abort' in selection:
|
if str(_('Abort')) in selection:
|
||||||
exit(0)
|
exit(0)
|
||||||
elif 'Install' in selection:
|
elif str(_('Install')) in selection:
|
||||||
if self._missing_configs() == 0:
|
if self._missing_configs() == 0:
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
self._process_selection(selection)
|
self._process_selection(selection)
|
||||||
|
|
||||||
for key in self._menu_options:
|
for key in self._menu_options:
|
||||||
sel = self._menu_options[key]
|
sel = self._menu_options[key]
|
||||||
if key not in storage['arguments']:
|
if key not in storage['arguments']:
|
||||||
storage['arguments'][key] = sel._current_selection
|
storage['arguments'][key] = sel.current_selection
|
||||||
|
|
||||||
self._post_processing()
|
self._post_processing()
|
||||||
|
|
||||||
def _process_selection(self, selection):
|
def _process_selection(self, selection):
|
||||||
# find the selected option in our option list
|
# find the selected option in our option list
|
||||||
option = [[k, v] for k, v in self._menu_options.items() if v.text.strip() == selection]
|
option = [[k, v] for k, v in self._menu_options.items() if v.menu_text().strip() == selection]
|
||||||
|
|
||||||
if len(option) != 1:
|
if len(option) != 1:
|
||||||
raise ValueError(f'Selection not found: {selection}')
|
raise ValueError(f'Selection not found: {selection}')
|
||||||
|
|
@ -306,7 +311,7 @@ class GlobalMenu:
|
||||||
def _install_text(self):
|
def _install_text(self):
|
||||||
missing = self._missing_configs()
|
missing = self._missing_configs()
|
||||||
if missing > 0:
|
if missing > 0:
|
||||||
return f'Install ({missing} config(s) missing)'
|
return _('Install ({} config(s) missing)').format(missing)
|
||||||
return 'Install'
|
return 'Install'
|
||||||
|
|
||||||
def _missing_configs(self):
|
def _missing_configs(self):
|
||||||
|
|
@ -338,7 +343,7 @@ class GlobalMenu:
|
||||||
return language
|
return language
|
||||||
|
|
||||||
def _set_root_password(self):
|
def _set_root_password(self):
|
||||||
prompt = 'Enter root password (leave blank to disable root & create superuser): '
|
prompt = str(_('Enter root password (leave blank to disable root): '))
|
||||||
password = get_password(prompt=prompt)
|
password = get_password(prompt=prompt)
|
||||||
|
|
||||||
# TODO: Do we really wanna wipe the !superusers and !users if root password is set?
|
# TODO: Do we really wanna wipe the !superusers and !users if root password is set?
|
||||||
|
|
@ -368,11 +373,12 @@ class GlobalMenu:
|
||||||
storage['arguments']['disk_layouts'] = {}
|
storage['arguments']['disk_layouts'] = {}
|
||||||
|
|
||||||
if not harddrives:
|
if not harddrives:
|
||||||
prompt = 'You decided to skip harddrive selection\n'
|
prompt = _(
|
||||||
prompt += f"and will use whatever drive-setup is mounted at {storage['MOUNT_POINT']} (experimental)\n"
|
"You decided to skip harddrive selection\nand will use whatever drive-setup is mounted at {} (experimental)\n"
|
||||||
prompt += "WARNING: Archinstall won't check the suitability of this setup\n"
|
"WARNING: Archinstall won't check the suitability of this setup\n"
|
||||||
|
"Do you wish to continue?"
|
||||||
|
).format(storage['MOUNT_POINT'])
|
||||||
|
|
||||||
prompt += 'Do you wish to continue?'
|
|
||||||
choice = Menu(prompt, ['yes', 'no'], default_option='yes').run()
|
choice = Menu(prompt, ['yes', 'no'], default_option='yes').run()
|
||||||
|
|
||||||
if choice == 'no':
|
if choice == 'no':
|
||||||
|
|
@ -397,11 +403,11 @@ class GlobalMenu:
|
||||||
return profile
|
return profile
|
||||||
|
|
||||||
def _create_superuser_account(self):
|
def _create_superuser_account(self):
|
||||||
superuser = ask_for_superuser_account('Create a required super-user with sudo privileges: ', forced=True)
|
superuser = ask_for_superuser_account(str(_('Create a required super-user with sudo privileges: ')), forced=True)
|
||||||
return superuser
|
return superuser
|
||||||
|
|
||||||
def _create_user_account(self):
|
def _create_user_account(self):
|
||||||
users, superusers = ask_for_additional_users('Enter a username to create an additional user: ')
|
users, superusers = ask_for_additional_users(str(_('Enter a username to create an additional user (leave blank to skip): ')))
|
||||||
storage['arguments']['!superusers'] = {**storage['arguments'].get('!superusers', {}), **superusers}
|
storage['arguments']['!superusers'] = {**storage['arguments'].get('!superusers', {}), **superusers}
|
||||||
|
|
||||||
return users
|
return users
|
||||||
|
|
@ -431,7 +437,7 @@ class GlobalMenu:
|
||||||
|
|
||||||
raise ValueError(f'No selection found: {selection_name}')
|
raise ValueError(f'No selection found: {selection_name}')
|
||||||
|
|
||||||
def _menus_to_enable(self):
|
def _menus_to_enable(self) -> Dict[str, Selector]:
|
||||||
enabled_menus = {}
|
enabled_menus = {}
|
||||||
|
|
||||||
for name, selection in self._menu_options.items():
|
for name, selection in self._menu_options.items():
|
||||||
|
|
|
||||||
|
|
@ -86,10 +86,10 @@ def list_profiles(
|
||||||
try:
|
try:
|
||||||
profile_list = json.loads(grab_url_data(profiles_url))
|
profile_list = json.loads(grab_url_data(profiles_url))
|
||||||
except urllib.error.HTTPError as err:
|
except urllib.error.HTTPError as err:
|
||||||
print(f'Error: Listing profiles on URL "{profiles_url}" resulted in:', err)
|
print(_('Error: Listing profiles on URL "{}" resulted in:').format(profiles_url), err)
|
||||||
return cache
|
return cache
|
||||||
except json.decoder.JSONDecodeError as err:
|
except json.decoder.JSONDecodeError as err:
|
||||||
print(f'Error: Could not decode "{profiles_url}" result as JSON:', err)
|
print(_('Error: Could not decode "{}" result as JSON:').format(profiles_url), err)
|
||||||
return cache
|
return cache
|
||||||
|
|
||||||
for profile in profile_list:
|
for profile in profile_list:
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ class Languages:
|
||||||
|
|
||||||
|
|
||||||
class DeferredTranslation:
|
class DeferredTranslation:
|
||||||
def __init__(self, message):
|
def __init__(self, message: str):
|
||||||
self.message = message
|
self.message = message
|
||||||
|
|
||||||
def __len__(self) -> int:
|
def __len__(self) -> int:
|
||||||
|
|
@ -40,6 +40,15 @@ class DeferredTranslation:
|
||||||
return self.message
|
return self.message
|
||||||
return translate(self.message)
|
return translate(self.message)
|
||||||
|
|
||||||
|
def __lt__(self, other) -> bool:
|
||||||
|
return self.message < other
|
||||||
|
|
||||||
|
def __gt__(self, other) -> bool:
|
||||||
|
return self.message > other
|
||||||
|
|
||||||
|
def format(self, *args) -> str:
|
||||||
|
return self.message.format(*args)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def install(cls):
|
def install(cls):
|
||||||
import builtins
|
import builtins
|
||||||
|
|
@ -48,8 +57,6 @@ class DeferredTranslation:
|
||||||
|
|
||||||
class Translation:
|
class Translation:
|
||||||
def __init__(self, locales_dir):
|
def __init__(self, locales_dir):
|
||||||
DeferredTranslation.install()
|
|
||||||
|
|
||||||
self._languages = {}
|
self._languages = {}
|
||||||
|
|
||||||
for name in self.get_all_names():
|
for name in self.get_all_names():
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,10 @@ def do_countdown() -> bool:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def get_password(prompt :str = "Enter a password: ") -> Optional[str]:
|
def get_password(prompt :str = '') -> Optional[str]:
|
||||||
|
if not prompt:
|
||||||
|
prompt = _("Enter a password: ")
|
||||||
|
|
||||||
while passwd := getpass.getpass(prompt):
|
while passwd := getpass.getpass(prompt):
|
||||||
passwd_verification = getpass.getpass(prompt=_('And one more time for verification: '))
|
passwd_verification = getpass.getpass(prompt=_('And one more time for verification: '))
|
||||||
if passwd != passwd_verification:
|
if passwd != passwd_verification:
|
||||||
|
|
@ -275,8 +278,8 @@ def ask_for_swap():
|
||||||
|
|
||||||
|
|
||||||
def ask_ntp() -> bool:
|
def ask_ntp() -> bool:
|
||||||
prompt = _('Would you like to use automatic time synchronization (NTP) with the default time servers?')
|
prompt = str(_('Would you like to use automatic time synchronization (NTP) with the default time servers?\n'))
|
||||||
prompt += _('Hardware time and other post-configuration steps might be required in order for NTP to work. For more information, please check the Arch wiki')
|
prompt += str(_('Hardware time and other post-configuration steps might be required in order for NTP to work.\nFor more information, please check the Arch wiki'))
|
||||||
choice = Menu(prompt, ['yes', 'no'], skip=False, default_option='yes').run()
|
choice = Menu(prompt, ['yes', 'no'], skip=False, default_option='yes').run()
|
||||||
return False if choice == 'no' else True
|
return False if choice == 'no' else True
|
||||||
|
|
||||||
|
|
@ -286,7 +289,7 @@ def ask_hostname():
|
||||||
return hostname
|
return hostname
|
||||||
|
|
||||||
|
|
||||||
def ask_for_superuser_account(prompt :str = '', forced :bool = False) -> Dict[str, Dict[str, str]]:
|
def ask_for_superuser_account(prompt: str = '', forced :bool = False) -> Dict[str, Dict[str, str]]:
|
||||||
prompt = prompt if prompt else _('Username for required superuser with sudo privileges: ')
|
prompt = prompt if prompt else _('Username for required superuser with sudo privileges: ')
|
||||||
while 1:
|
while 1:
|
||||||
new_user = input(prompt).strip(' ')
|
new_user = input(prompt).strip(' ')
|
||||||
|
|
@ -301,7 +304,7 @@ def ask_for_superuser_account(prompt :str = '', forced :bool = False) -> Dict[st
|
||||||
elif not check_for_correct_username(new_user):
|
elif not check_for_correct_username(new_user):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
prompt = _('Password for user "{}"').format(new_user)
|
prompt = str(_('Password for user "{}": ').format(new_user))
|
||||||
password = get_password(prompt=prompt)
|
password = get_password(prompt=prompt)
|
||||||
return {new_user: {"!password": password}}
|
return {new_user: {"!password": password}}
|
||||||
|
|
||||||
|
|
@ -318,11 +321,14 @@ def ask_for_additional_users(prompt :str = '') -> tuple[dict[str, dict[str, str
|
||||||
if not check_for_correct_username(new_user):
|
if not check_for_correct_username(new_user):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
prompt = _('Password for user "{}"').format(new_user)
|
password = get_password(prompt=str(_('Password for user "{}": ').format(new_user)))
|
||||||
password = get_password(prompt=prompt)
|
|
||||||
|
|
||||||
prompt = _('Should this user be a superuser (sudoer)?')
|
choice = Menu(
|
||||||
choice = Menu(prompt, ['yes', 'no'], skip=False, default_option='no').run()
|
str(_('Should this user be a superuser (sudoer)?')),
|
||||||
|
['yes', 'no'],
|
||||||
|
skip=False,
|
||||||
|
default_option='no'
|
||||||
|
).run()
|
||||||
|
|
||||||
if choice == 'yes':
|
if choice == 'yes':
|
||||||
superusers[new_user] = {"!password": password}
|
superusers[new_user] = {"!password": password}
|
||||||
|
|
@ -399,7 +405,7 @@ def ask_additional_packages_to_install(packages :List[str] = None) -> List[str]:
|
||||||
if len(packages):
|
if len(packages):
|
||||||
# Verify packages that were given
|
# Verify packages that were given
|
||||||
try:
|
try:
|
||||||
log("Verifying that additional packages exist (this might take a few seconds)")
|
print(_("Verifying that additional packages exist (this might take a few seconds)"))
|
||||||
validate_package_list(packages)
|
validate_package_list(packages)
|
||||||
break
|
break
|
||||||
except RequirementError as e:
|
except RequirementError as e:
|
||||||
|
|
@ -587,21 +593,28 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> Dict[str, A
|
||||||
# Test code: [part.__dump__() for part in block_device.partitions.values()]
|
# Test code: [part.__dump__() for part in block_device.partitions.values()]
|
||||||
# TODO: Squeeze in BTRFS subvolumes here
|
# TODO: Squeeze in BTRFS subvolumes here
|
||||||
|
|
||||||
|
new_partition = _('Create a new partition')
|
||||||
|
suggest_partition_layout = _('Suggest partition layout')
|
||||||
|
delete_partition = _('Delete a partition')
|
||||||
|
delete_all_partitions = _('Clear/Delete all partitions')
|
||||||
|
assign_mount_point = _('Assign mount-point for a partition')
|
||||||
|
mark_formatted = _('Mark/Unmark a partition to be formatted (wipes data)')
|
||||||
|
mark_encrypted = _('Mark/Unmark a partition as encrypted')
|
||||||
|
mark_bootable = _('Mark/Unmark a partition as bootable (automatic for /boot)')
|
||||||
|
set_filesystem_partition = _('Set desired filesystem for a partition')
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
modes = [
|
modes = [new_partition, suggest_partition_layout]
|
||||||
"Create a new partition",
|
|
||||||
f"Suggest partition layout for {block_device}"
|
|
||||||
]
|
|
||||||
|
|
||||||
if len(block_device_struct['partitions']):
|
if len(block_device_struct['partitions']):
|
||||||
modes += [
|
modes += [
|
||||||
"Delete a partition",
|
delete_partition,
|
||||||
"Clear/Delete all partitions",
|
delete_all_partitions,
|
||||||
"Assign mount-point for a partition",
|
assign_mount_point,
|
||||||
"Mark/Unmark a partition to be formatted (wipes data)",
|
mark_formatted,
|
||||||
"Mark/Unmark a partition as encrypted",
|
mark_encrypted,
|
||||||
"Mark/Unmark a partition as bootable (automatic for /boot)",
|
mark_bootable,
|
||||||
"Set desired filesystem for a partition",
|
set_filesystem_partition,
|
||||||
]
|
]
|
||||||
|
|
||||||
title = _('Select what to do with\n{}').format(block_device)
|
title = _('Select what to do with\n{}').format(block_device)
|
||||||
|
|
@ -615,7 +628,7 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> Dict[str, A
|
||||||
if not task:
|
if not task:
|
||||||
break
|
break
|
||||||
|
|
||||||
if task == 'Create a new partition':
|
if task == new_partition:
|
||||||
# if partition_type == 'gpt':
|
# if partition_type == 'gpt':
|
||||||
# # https://www.gnu.org/software/parted/manual/html_node/mkpart.html
|
# # https://www.gnu.org/software/parted/manual/html_node/mkpart.html
|
||||||
# # https://www.gnu.org/software/parted/manual/html_node/mklabel.html
|
# # https://www.gnu.org/software/parted/manual/html_node/mklabel.html
|
||||||
|
|
@ -632,7 +645,7 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> Dict[str, A
|
||||||
else:
|
else:
|
||||||
end_suggested = '100%'
|
end_suggested = '100%'
|
||||||
|
|
||||||
prompt = _('Enter the end sector of the partition (percentage or block number, ex: {}): "').format(end_suggested)
|
prompt = _('Enter the end sector of the partition (percentage or block number, ex: {}): ').format(end_suggested)
|
||||||
end = input(prompt).strip()
|
end = input(prompt).strip()
|
||||||
|
|
||||||
if not end.strip():
|
if not end.strip():
|
||||||
|
|
@ -656,7 +669,7 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> Dict[str, A
|
||||||
else:
|
else:
|
||||||
log(f"Invalid start ({valid_parted_position(start)}) or end ({valid_parted_position(end)}) for this partition. Ignoring this partition creation.", fg="red")
|
log(f"Invalid start ({valid_parted_position(start)}) or end ({valid_parted_position(end)}) for this partition. Ignoring this partition creation.", fg="red")
|
||||||
continue
|
continue
|
||||||
elif task[:len("Suggest partition layout")] == "Suggest partition layout":
|
elif task == suggest_partition_layout:
|
||||||
if len(block_device_struct["partitions"]):
|
if len(block_device_struct["partitions"]):
|
||||||
prompt = _('{} contains queued partitions, this will remove those, are you sure?').format(block_device)
|
prompt = _('{} contains queued partitions, this will remove those, are you sure?').format(block_device)
|
||||||
choice = Menu(prompt, ['yes', 'no'], default_option='no').run()
|
choice = Menu(prompt, ['yes', 'no'], default_option='no').run()
|
||||||
|
|
@ -670,15 +683,15 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> Dict[str, A
|
||||||
else:
|
else:
|
||||||
current_layout = current_partition_layout(block_device_struct['partitions'], with_idx=True)
|
current_layout = current_partition_layout(block_device_struct['partitions'], with_idx=True)
|
||||||
|
|
||||||
if task == "Delete a partition":
|
if task == delete_partition:
|
||||||
title = _('{}\n\nSelect by index which partitions to delete').format(current_layout)
|
title = _('{}\n\nSelect by index which partitions to delete').format(current_layout)
|
||||||
to_delete = select_partition(title, block_device_struct["partitions"], multiple=True)
|
to_delete = select_partition(title, block_device_struct["partitions"], multiple=True)
|
||||||
|
|
||||||
if to_delete:
|
if to_delete:
|
||||||
block_device_struct['partitions'] = [p for idx, p in enumerate(block_device_struct['partitions']) if idx not in to_delete]
|
block_device_struct['partitions'] = [p for idx, p in enumerate(block_device_struct['partitions']) if idx not in to_delete]
|
||||||
elif task == "Clear/Delete all partitions":
|
elif task == delete_all_partitions:
|
||||||
block_device_struct["partitions"] = []
|
block_device_struct["partitions"] = []
|
||||||
elif task == "Assign mount-point for a partition":
|
elif task == assign_mount_point:
|
||||||
title = _('{}\n\nSelect by index which partition to mount where').format(current_layout)
|
title = _('{}\n\nSelect by index which partition to mount where').format(current_layout)
|
||||||
partition = select_partition(title, block_device_struct["partitions"])
|
partition = select_partition(title, block_device_struct["partitions"])
|
||||||
|
|
||||||
|
|
@ -694,7 +707,7 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> Dict[str, A
|
||||||
else:
|
else:
|
||||||
del(block_device_struct["partitions"][partition]['mountpoint'])
|
del(block_device_struct["partitions"][partition]['mountpoint'])
|
||||||
|
|
||||||
elif task == "Mark/Unmark a partition to be formatted (wipes data)":
|
elif task == mark_formatted:
|
||||||
title = _('{}\n\nSelect which partition to mask for formatting').format(current_layout)
|
title = _('{}\n\nSelect which partition to mask for formatting').format(current_layout)
|
||||||
partition = select_partition(title, block_device_struct["partitions"])
|
partition = select_partition(title, block_device_struct["partitions"])
|
||||||
|
|
||||||
|
|
@ -713,7 +726,7 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> Dict[str, A
|
||||||
# Negate the current wipe marking
|
# Negate the current wipe marking
|
||||||
block_device_struct["partitions"][partition]['wipe'] = not block_device_struct["partitions"][partition].get('wipe', False)
|
block_device_struct["partitions"][partition]['wipe'] = not block_device_struct["partitions"][partition].get('wipe', False)
|
||||||
|
|
||||||
elif task == "Mark/Unmark a partition as encrypted":
|
elif task == mark_encrypted:
|
||||||
title = _('{}\n\nSelect which partition to mark as encrypted').format(current_layout)
|
title = _('{}\n\nSelect which partition to mark as encrypted').format(current_layout)
|
||||||
partition = select_partition(title, block_device_struct["partitions"])
|
partition = select_partition(title, block_device_struct["partitions"])
|
||||||
|
|
||||||
|
|
@ -721,14 +734,14 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> Dict[str, A
|
||||||
# Negate the current encryption marking
|
# Negate the current encryption marking
|
||||||
block_device_struct["partitions"][partition]['encrypted'] = not block_device_struct["partitions"][partition].get('encrypted', False)
|
block_device_struct["partitions"][partition]['encrypted'] = not block_device_struct["partitions"][partition].get('encrypted', False)
|
||||||
|
|
||||||
elif task == "Mark/Unmark a partition as bootable (automatic for /boot)":
|
elif task == mark_bootable:
|
||||||
title = _('{}\n\nSelect which partition to mark as bootable').format(current_layout)
|
title = _('{}\n\nSelect which partition to mark as bootable').format(current_layout)
|
||||||
partition = select_partition(title, block_device_struct["partitions"])
|
partition = select_partition(title, block_device_struct["partitions"])
|
||||||
|
|
||||||
if partition is not None:
|
if partition is not None:
|
||||||
block_device_struct["partitions"][partition]['boot'] = not block_device_struct["partitions"][partition].get('boot', False)
|
block_device_struct["partitions"][partition]['boot'] = not block_device_struct["partitions"][partition].get('boot', False)
|
||||||
|
|
||||||
elif task == "Set desired filesystem for a partition":
|
elif task == set_filesystem_partition:
|
||||||
title = _('{}\n\nSelect which partition to set a filesystem on').format(current_layout)
|
title = _('{}\n\nSelect which partition to set a filesystem on').format(current_layout)
|
||||||
partition = select_partition(title, block_device_struct["partitions"])
|
partition = select_partition(title, block_device_struct["partitions"])
|
||||||
|
|
||||||
|
|
@ -762,10 +775,11 @@ def select_archinstall_language(default='English'):
|
||||||
|
|
||||||
|
|
||||||
def select_disk_layout(block_devices :list, advanced_options=False) -> Dict[str, Any]:
|
def select_disk_layout(block_devices :list, advanced_options=False) -> Dict[str, Any]:
|
||||||
wipe_mode = _('Wipe all selected drives and use a best-effort default partition layout')
|
wipe_mode = str(_('Wipe all selected drives and use a best-effort default partition layout'))
|
||||||
custome_mode = _('Select what to do with each individual drive (followed by partition usage)')
|
custome_mode = str(_('Select what to do with each individual drive (followed by partition usage)'))
|
||||||
modes = [wipe_mode, custome_mode]
|
modes = [wipe_mode, custome_mode]
|
||||||
|
|
||||||
|
print(modes)
|
||||||
mode = Menu(_('Select what you wish to do with the selected block devices'), modes, skip=False).run()
|
mode = Menu(_('Select what you wish to do with the selected block devices'), modes, skip=False).run()
|
||||||
|
|
||||||
if mode == wipe_mode:
|
if mode == wipe_mode:
|
||||||
|
|
@ -802,7 +816,7 @@ def select_disk(dict_o_disks :Dict[str, BlockDevice]) -> BlockDevice:
|
||||||
raise DiskError('select_disk() requires a non-empty dictionary of disks to select from.')
|
raise DiskError('select_disk() requires a non-empty dictionary of disks to select from.')
|
||||||
|
|
||||||
|
|
||||||
def select_profile() -> Optional[str]:
|
def select_profile() -> Optional[Profile]:
|
||||||
"""
|
"""
|
||||||
# Asks the user to select a profile from the available profiles.
|
# Asks the user to select a profile from the available profiles.
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,8 @@ msgstr ""
|
||||||
The `msgid` is the identifier of the string in the code as well as the default text to be displayed, meaning that if no
|
The `msgid` is the identifier of the string in the code as well as the default text to be displayed, meaning that if no
|
||||||
translation is provided for a language then this is the text that is going to be shown.
|
translation is provided for a language then this is the text that is going to be shown.
|
||||||
|
|
||||||
To provide a translation for the language, simply write the translation in the `msgstr` part
|
To perform translations for a language this file can be edited manually or the neat `poedit` can be used (https://poedit.net/).
|
||||||
|
If editing the file manually, write the translation in the `msgstr` part
|
||||||
|
|
||||||
```
|
```
|
||||||
#: lib/user_interaction.py:82
|
#: lib/user_interaction.py:82
|
||||||
|
|
@ -28,6 +29,5 @@ msgid "Do you really want to abort?"
|
||||||
msgstr "Wollen sie wirklich abbrechen?"
|
msgstr "Wollen sie wirklich abbrechen?"
|
||||||
```
|
```
|
||||||
|
|
||||||
After that run the script once more `./locales_generator.sh` and it will auto-generate the `base.mo` file with the included translations.
|
After the translations have been written, run the script once more `./locales_generator.sh` and it will auto-generate the `base.mo` file with the included translations.
|
||||||
After that you're all ready to go and enjoy Archinstall in the new language :)
|
After that you're all ready to go and enjoy Archinstall in the new language :)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,354 +1,621 @@
|
||||||
#: lib/user_interaction.py:82 lib/user_interaction.py:82
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: lib/installer.py:144 lib/installer.py:144
|
||||||
|
msgid "[!] A log file has been created here: {} {}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/installer.py:145 lib/installer.py:145
|
||||||
|
msgid ""
|
||||||
|
" Please submit this issue (and file) to https://github.com/archlinux/"
|
||||||
|
"archinstall/issues"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:83 lib/user_interaction.py:83
|
||||||
msgid "Do you really want to abort?"
|
msgid "Do you really want to abort?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:100 lib/user_interaction.py:100
|
#: lib/user_interaction.py:101 lib/user_interaction.py:104
|
||||||
|
#: lib/user_interaction.py:104
|
||||||
msgid "And one more time for verification: "
|
msgid "And one more time for verification: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:271 lib/user_interaction.py:271
|
#: lib/user_interaction.py:272 lib/user_interaction.py:275
|
||||||
|
#: lib/user_interaction.py:275
|
||||||
msgid "Would you like to use swap on zram?"
|
msgid "Would you like to use swap on zram?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:277 lib/user_interaction.py:277
|
#: lib/user_interaction.py:285 lib/user_interaction.py:288
|
||||||
msgid ""
|
#: lib/user_interaction.py:288
|
||||||
"Would you like to use automatic time synchronization (NTP) with the default "
|
|
||||||
"time servers?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:278 lib/user_interaction.py:278
|
|
||||||
msgid ""
|
|
||||||
"Hardware time and other post-configuration steps might be required in order "
|
|
||||||
"for NTP to work. For more information, please check the Arch wiki"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:284 lib/user_interaction.py:284
|
|
||||||
msgid "Desired hostname for the installation: "
|
msgid "Desired hostname for the installation: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:289 lib/user_interaction.py:289
|
#: lib/user_interaction.py:290 lib/user_interaction.py:293
|
||||||
|
#: lib/user_interaction.py:293
|
||||||
msgid "Username for required superuser with sudo privileges: "
|
msgid "Username for required superuser with sudo privileges: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:303 lib/user_interaction.py:320
|
#: lib/user_interaction.py:310 lib/user_interaction.py:313
|
||||||
#: lib/user_interaction.py:303 lib/user_interaction.py:320
|
#: lib/user_interaction.py:313
|
||||||
msgid "Password for user \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:309 lib/user_interaction.py:309
|
|
||||||
msgid "Any additional users to install (leave blank for no users): "
|
msgid "Any additional users to install (leave blank for no users): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:323 lib/user_interaction.py:323
|
#: lib/user_interaction.py:324 lib/user_interaction.py:327
|
||||||
|
#: lib/user_interaction.py:327
|
||||||
msgid "Should this user be a superuser (sudoer)?"
|
msgid "Should this user be a superuser (sudoer)?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:339 lib/user_interaction.py:339
|
#: lib/user_interaction.py:340 lib/user_interaction.py:343
|
||||||
|
#: lib/user_interaction.py:346 lib/user_interaction.py:346
|
||||||
msgid "Select a timezone"
|
msgid "Select a timezone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:353 lib/user_interaction.py:353
|
#: lib/user_interaction.py:354 lib/user_interaction.py:357
|
||||||
|
#: lib/user_interaction.py:360 lib/user_interaction.py:360
|
||||||
msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?"
|
msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:363 lib/user_interaction.py:363
|
#: lib/user_interaction.py:364 lib/user_interaction.py:367
|
||||||
|
#: lib/user_interaction.py:370 lib/user_interaction.py:370
|
||||||
msgid "Choose a bootloader"
|
msgid "Choose a bootloader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:379 lib/user_interaction.py:379
|
#: lib/user_interaction.py:380 lib/user_interaction.py:383
|
||||||
|
#: lib/user_interaction.py:386 lib/user_interaction.py:386
|
||||||
msgid "Choose an audio server"
|
msgid "Choose an audio server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:390 lib/user_interaction.py:390
|
#: lib/user_interaction.py:391 lib/user_interaction.py:394
|
||||||
|
#: lib/user_interaction.py:397 lib/user_interaction.py:397
|
||||||
msgid ""
|
msgid ""
|
||||||
"Only packages such as base, base-devel, linux, linux-firmware, efibootmgr "
|
"Only packages such as base, base-devel, linux, linux-firmware, efibootmgr "
|
||||||
"and optional profile packages are installed."
|
"and optional profile packages are installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:391 lib/user_interaction.py:391
|
#: lib/user_interaction.py:392 lib/user_interaction.py:395
|
||||||
|
#: lib/user_interaction.py:398 lib/user_interaction.py:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you desire a web browser, such as firefox or chromium, you may specify it "
|
"If you desire a web browser, such as firefox or chromium, you may specify it "
|
||||||
"in the following prompt."
|
"in the following prompt."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:395 lib/user_interaction.py:395
|
#: lib/user_interaction.py:396 lib/user_interaction.py:399
|
||||||
|
#: lib/user_interaction.py:402 lib/user_interaction.py:402
|
||||||
msgid ""
|
msgid ""
|
||||||
"Write additional packages to install (space separated, leave blank to skip): "
|
"Write additional packages to install (space separated, leave blank to skip): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:418 lib/user_interaction.py:418
|
#: lib/user_interaction.py:419 lib/user_interaction.py:422
|
||||||
|
#: lib/user_interaction.py:425 lib/user_interaction.py:425
|
||||||
msgid "Copy ISO network configuration to installation"
|
msgid "Copy ISO network configuration to installation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:419 lib/user_interaction.py:419
|
#: lib/user_interaction.py:420 lib/user_interaction.py:423
|
||||||
|
#: lib/user_interaction.py:426 lib/user_interaction.py:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use NetworkManager (necessary to configure internet graphically in GNOME and "
|
"Use NetworkManager (necessary to configure internet graphically in GNOME and "
|
||||||
"KDE)"
|
"KDE)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:427 lib/user_interaction.py:427
|
#: lib/user_interaction.py:428 lib/user_interaction.py:431
|
||||||
|
#: lib/user_interaction.py:434 lib/user_interaction.py:434
|
||||||
msgid "Select one network interface to configure"
|
msgid "Select one network interface to configure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:440 lib/user_interaction.py:440
|
#: lib/user_interaction.py:441 lib/user_interaction.py:444
|
||||||
|
#: lib/user_interaction.py:447 lib/user_interaction.py:447
|
||||||
msgid ""
|
msgid ""
|
||||||
"Select which mode to configure for \"{}\" or skip to use default mode \"{}\""
|
"Select which mode to configure for \"{}\" or skip to use default mode \"{}\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:445 lib/user_interaction.py:445
|
#: lib/user_interaction.py:446 lib/user_interaction.py:449
|
||||||
|
#: lib/user_interaction.py:452 lib/user_interaction.py:452
|
||||||
msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): "
|
msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:460 lib/user_interaction.py:460
|
#: lib/user_interaction.py:461 lib/user_interaction.py:464
|
||||||
|
#: lib/user_interaction.py:467 lib/user_interaction.py:467
|
||||||
msgid "Enter your gateway (router) IP address or leave blank for none: "
|
msgid "Enter your gateway (router) IP address or leave blank for none: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:475 lib/user_interaction.py:475
|
#: lib/user_interaction.py:476 lib/user_interaction.py:479
|
||||||
|
#: lib/user_interaction.py:482 lib/user_interaction.py:482
|
||||||
msgid "Enter your DNS servers (space separated, blank for none): "
|
msgid "Enter your DNS servers (space separated, blank for none): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:509 lib/user_interaction.py:509
|
#: lib/user_interaction.py:510 lib/user_interaction.py:513
|
||||||
|
#: lib/user_interaction.py:516 lib/user_interaction.py:516
|
||||||
msgid "Select which filesystem your main partition should use"
|
msgid "Select which filesystem your main partition should use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:555 lib/user_interaction.py:555
|
#: lib/user_interaction.py:556 lib/user_interaction.py:559
|
||||||
|
#: lib/user_interaction.py:562 lib/user_interaction.py:562
|
||||||
msgid "Current partition layout"
|
msgid "Current partition layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:606 lib/user_interaction.py:606
|
#: lib/user_interaction.py:607 lib/user_interaction.py:614
|
||||||
|
#: lib/user_interaction.py:617 lib/user_interaction.py:620
|
||||||
|
#: lib/user_interaction.py:620
|
||||||
msgid ""
|
msgid ""
|
||||||
"Select what to do with\n"
|
"Select what to do with\n"
|
||||||
"{}"
|
"{}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:623 lib/user_interaction.py:708
|
#: lib/user_interaction.py:624 lib/user_interaction.py:709
|
||||||
#: lib/user_interaction.py:623 lib/user_interaction.py:708
|
#: lib/user_interaction.py:631 lib/user_interaction.py:716
|
||||||
|
#: lib/user_interaction.py:634 lib/user_interaction.py:719
|
||||||
|
#: lib/user_interaction.py:637 lib/user_interaction.py:722
|
||||||
|
#: lib/user_interaction.py:637 lib/user_interaction.py:722
|
||||||
msgid "Enter a desired filesystem type for the partition"
|
msgid "Enter a desired filesystem type for the partition"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:625 lib/user_interaction.py:625
|
#: lib/user_interaction.py:626 lib/user_interaction.py:633
|
||||||
|
#: lib/user_interaction.py:636 lib/user_interaction.py:639
|
||||||
|
#: lib/user_interaction.py:639
|
||||||
msgid "Enter the start sector (percentage or block number, default: {}): "
|
msgid "Enter the start sector (percentage or block number, default: {}): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:634 lib/user_interaction.py:634
|
#: lib/user_interaction.py:635 lib/user_interaction.py:642
|
||||||
|
#: lib/user_interaction.py:645 lib/user_interaction.py:648
|
||||||
|
#: lib/user_interaction.py:648
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enter the end sector of the partition (percentage or block number, ex: {}): "
|
"Enter the end sector of the partition (percentage or block number, ex: {}): "
|
||||||
"\""
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:660 lib/user_interaction.py:660
|
#: lib/user_interaction.py:661 lib/user_interaction.py:668
|
||||||
|
#: lib/user_interaction.py:671 lib/user_interaction.py:674
|
||||||
|
#: lib/user_interaction.py:674
|
||||||
msgid "{} contains queued partitions, this will remove those, are you sure?"
|
msgid "{} contains queued partitions, this will remove those, are you sure?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:673 lib/user_interaction.py:673
|
#: lib/user_interaction.py:674 lib/user_interaction.py:681
|
||||||
|
#: lib/user_interaction.py:684 lib/user_interaction.py:687
|
||||||
|
#: lib/user_interaction.py:687
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select by index which partitions to delete"
|
"Select by index which partitions to delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:681 lib/user_interaction.py:681
|
#: lib/user_interaction.py:682 lib/user_interaction.py:689
|
||||||
|
#: lib/user_interaction.py:692 lib/user_interaction.py:695
|
||||||
|
#: lib/user_interaction.py:695
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select by index which partition to mount where"
|
"Select by index which partition to mount where"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:685 lib/user_interaction.py:685
|
#: lib/user_interaction.py:686 lib/user_interaction.py:693
|
||||||
|
#: lib/user_interaction.py:696 lib/user_interaction.py:699
|
||||||
|
#: lib/user_interaction.py:699
|
||||||
msgid ""
|
msgid ""
|
||||||
" * Partition mount-points are relative to inside the installation, the boot "
|
" * Partition mount-points are relative to inside the installation, the boot "
|
||||||
"would be /boot as an example."
|
"would be /boot as an example."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:686 lib/user_interaction.py:686
|
#: lib/user_interaction.py:687 lib/user_interaction.py:694
|
||||||
|
#: lib/user_interaction.py:697 lib/user_interaction.py:700
|
||||||
|
#: lib/user_interaction.py:700
|
||||||
msgid "Select where to mount partition (leave blank to remove mountpoint): "
|
msgid "Select where to mount partition (leave blank to remove mountpoint): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:697 lib/user_interaction.py:697
|
#: lib/user_interaction.py:698 lib/user_interaction.py:705
|
||||||
|
#: lib/user_interaction.py:708 lib/user_interaction.py:711
|
||||||
|
#: lib/user_interaction.py:711
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to mask for formatting"
|
"Select which partition to mask for formatting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:716 lib/user_interaction.py:716
|
#: lib/user_interaction.py:717 lib/user_interaction.py:724
|
||||||
|
#: lib/user_interaction.py:727 lib/user_interaction.py:730
|
||||||
|
#: lib/user_interaction.py:730
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to mark as encrypted"
|
"Select which partition to mark as encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:724 lib/user_interaction.py:724
|
#: lib/user_interaction.py:725 lib/user_interaction.py:732
|
||||||
|
#: lib/user_interaction.py:735 lib/user_interaction.py:738
|
||||||
|
#: lib/user_interaction.py:738
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to mark as bootable"
|
"Select which partition to mark as bootable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:731 lib/user_interaction.py:731
|
#: lib/user_interaction.py:732 lib/user_interaction.py:739
|
||||||
|
#: lib/user_interaction.py:742 lib/user_interaction.py:745
|
||||||
|
#: lib/user_interaction.py:745
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to set a filesystem on"
|
"Select which partition to set a filesystem on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:738 lib/user_interaction.py:738
|
#: lib/user_interaction.py:739 lib/user_interaction.py:746
|
||||||
|
#: lib/user_interaction.py:749 lib/user_interaction.py:752
|
||||||
|
#: lib/user_interaction.py:752
|
||||||
msgid "Enter a desired filesystem type for the partition: "
|
msgid "Enter a desired filesystem type for the partition: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:759 lib/menu/selection_menu.py:116
|
#: lib/user_interaction.py:760 lib/menu/selection_menu.py:141
|
||||||
#: lib/user_interaction.py:759 lib/menu/selection_menu.py:116
|
#: lib/user_interaction.py:767 lib/menu/selection_menu.py:139
|
||||||
|
#: lib/menu/selection_menu.py:143 lib/user_interaction.py:770
|
||||||
|
#: lib/user_interaction.py:773 lib/user_interaction.py:773
|
||||||
|
#: lib/menu/selection_menu.py:143
|
||||||
msgid "Select Archinstall language"
|
msgid "Select Archinstall language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:764 lib/user_interaction.py:764
|
#: lib/user_interaction.py:765 lib/user_interaction.py:772
|
||||||
|
#: lib/user_interaction.py:775 lib/user_interaction.py:778
|
||||||
|
#: lib/user_interaction.py:778
|
||||||
msgid "Wipe all selected drives and use a best-effort default partition layout"
|
msgid "Wipe all selected drives and use a best-effort default partition layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:765 lib/user_interaction.py:765
|
#: lib/user_interaction.py:766 lib/user_interaction.py:773
|
||||||
|
#: lib/user_interaction.py:776 lib/user_interaction.py:779
|
||||||
|
#: lib/user_interaction.py:779
|
||||||
msgid ""
|
msgid ""
|
||||||
"Select what to do with each individual drive (followed by partition usage)"
|
"Select what to do with each individual drive (followed by partition usage)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:768 lib/user_interaction.py:768
|
#: lib/user_interaction.py:769 lib/user_interaction.py:770
|
||||||
|
#: lib/user_interaction.py:777 lib/user_interaction.py:780
|
||||||
|
#: lib/user_interaction.py:783 lib/user_interaction.py:783
|
||||||
msgid "Select what you wish to do with the selected block devices"
|
msgid "Select what you wish to do with the selected block devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:821 lib/user_interaction.py:821
|
#: lib/user_interaction.py:822 lib/user_interaction.py:823
|
||||||
|
#: lib/user_interaction.py:830 lib/user_interaction.py:833
|
||||||
|
#: lib/user_interaction.py:836 lib/user_interaction.py:836
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is a list of pre-programmed profiles, they might make it easier to "
|
"This is a list of pre-programmed profiles, they might make it easier to "
|
||||||
"install things like desktop environments"
|
"install things like desktop environments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:846 lib/user_interaction.py:846
|
#: lib/user_interaction.py:846 lib/user_interaction.py:847
|
||||||
|
#: lib/user_interaction.py:854 lib/user_interaction.py:857
|
||||||
|
#: lib/user_interaction.py:860 lib/user_interaction.py:860
|
||||||
msgid "Select Keyboard layout"
|
msgid "Select Keyboard layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:861 lib/user_interaction.py:861
|
#: lib/user_interaction.py:861 lib/user_interaction.py:862
|
||||||
|
#: lib/user_interaction.py:869 lib/user_interaction.py:872
|
||||||
|
#: lib/user_interaction.py:875 lib/user_interaction.py:875
|
||||||
msgid "Select one of the regions to download packages from"
|
msgid "Select one of the regions to download packages from"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:883 lib/user_interaction.py:883
|
#: lib/user_interaction.py:883 lib/user_interaction.py:884
|
||||||
|
#: lib/user_interaction.py:891 lib/user_interaction.py:894
|
||||||
|
#: lib/user_interaction.py:897 lib/user_interaction.py:897
|
||||||
msgid "Select one or more hard drives to use and configure"
|
msgid "Select one or more hard drives to use and configure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:910 lib/user_interaction.py:910
|
#: lib/user_interaction.py:910 lib/user_interaction.py:911
|
||||||
|
#: lib/user_interaction.py:918 lib/user_interaction.py:921
|
||||||
|
#: lib/user_interaction.py:924 lib/user_interaction.py:924
|
||||||
msgid ""
|
msgid ""
|
||||||
"For the best compatibility with your AMD hardware, you may want to use "
|
"For the best compatibility with your AMD hardware, you may want to use "
|
||||||
"either the all open-source or AMD / ATI options."
|
"either the all open-source or AMD / ATI options."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:912 lib/user_interaction.py:912
|
#: lib/user_interaction.py:912 lib/user_interaction.py:913
|
||||||
|
#: lib/user_interaction.py:920 lib/user_interaction.py:923
|
||||||
|
#: lib/user_interaction.py:926 lib/user_interaction.py:926
|
||||||
msgid ""
|
msgid ""
|
||||||
"For the best compatibility with your Intel hardware, you may want to use "
|
"For the best compatibility with your Intel hardware, you may want to use "
|
||||||
"either the all open-source or Intel options.\n"
|
"either the all open-source or Intel options.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:914 lib/user_interaction.py:914
|
#: lib/user_interaction.py:914 lib/user_interaction.py:915
|
||||||
|
#: lib/user_interaction.py:922 lib/user_interaction.py:925
|
||||||
|
#: lib/user_interaction.py:928 lib/user_interaction.py:928
|
||||||
msgid ""
|
msgid ""
|
||||||
"For the best compatibility with your Nvidia hardware, you may want to use "
|
"For the best compatibility with your Nvidia hardware, you may want to use "
|
||||||
"the Nvidia proprietary driver.\n"
|
"the Nvidia proprietary driver.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:917 lib/user_interaction.py:917
|
#: lib/user_interaction.py:917 lib/user_interaction.py:918
|
||||||
|
#: lib/user_interaction.py:925 lib/user_interaction.py:928
|
||||||
|
#: lib/user_interaction.py:931 lib/user_interaction.py:931
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select a graphics driver or leave blank to install all open-source drivers"
|
"Select a graphics driver or leave blank to install all open-source drivers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:921 lib/user_interaction.py:921
|
#: lib/user_interaction.py:921 lib/user_interaction.py:922
|
||||||
|
#: lib/user_interaction.py:929 lib/user_interaction.py:932
|
||||||
|
#: lib/user_interaction.py:935 lib/user_interaction.py:935
|
||||||
msgid "All open-source (default)"
|
msgid "All open-source (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:940 lib/user_interaction.py:940
|
#: lib/user_interaction.py:940 lib/user_interaction.py:941
|
||||||
|
#: lib/user_interaction.py:948 lib/user_interaction.py:951
|
||||||
|
#: lib/user_interaction.py:954 lib/user_interaction.py:954
|
||||||
msgid "Choose which kernels to use or leave blank for default \"{}\""
|
msgid "Choose which kernels to use or leave blank for default \"{}\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:954 lib/user_interaction.py:954
|
#: lib/user_interaction.py:954 lib/user_interaction.py:955
|
||||||
|
#: lib/user_interaction.py:962 lib/user_interaction.py:965
|
||||||
|
#: lib/user_interaction.py:968 lib/user_interaction.py:968
|
||||||
msgid "Choose which locale language to use"
|
msgid "Choose which locale language to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:968 lib/user_interaction.py:968
|
#: lib/user_interaction.py:968 lib/user_interaction.py:969
|
||||||
|
#: lib/user_interaction.py:976 lib/user_interaction.py:979
|
||||||
|
#: lib/user_interaction.py:982 lib/user_interaction.py:982
|
||||||
msgid "Choose which locale encoding to use"
|
msgid "Choose which locale encoding to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:1009 lib/user_interaction.py:1009
|
#: lib/user_interaction.py:1009 lib/user_interaction.py:1010
|
||||||
|
#: lib/user_interaction.py:1017 lib/user_interaction.py:1020
|
||||||
|
#: lib/user_interaction.py:1023 lib/user_interaction.py:1023
|
||||||
msgid "Select one of the values shown below: "
|
msgid "Select one of the values shown below: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:1050 lib/user_interaction.py:1050
|
#: lib/user_interaction.py:1050 lib/user_interaction.py:1051
|
||||||
|
#: lib/user_interaction.py:1058 lib/user_interaction.py:1061
|
||||||
|
#: lib/user_interaction.py:1064 lib/user_interaction.py:1064
|
||||||
msgid "Select one or more of the options below: "
|
msgid "Select one or more of the options below: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:122 lib/menu/selection_menu.py:122
|
#: lib/disk/filesystem.py:86 lib/disk/filesystem.py:86
|
||||||
|
msgid "Adding partition...."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/disk/filesystem.py:139 lib/disk/filesystem.py:141
|
||||||
|
#: lib/disk/filesystem.py:141
|
||||||
|
msgid ""
|
||||||
|
"You need to enter a valid fs-type in order to continue. See `man parted` for "
|
||||||
|
"valid fs-type's."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/profiles.py:89 lib/profiles.py:89
|
||||||
|
msgid "Error: Listing profiles on URL \"{}\" resulted in:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/profiles.py:92 lib/profiles.py:92
|
||||||
|
msgid "Error: Could not decode \"{}\" result as JSON:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:146 lib/menu/selection_menu.py:144
|
||||||
|
#: lib/menu/selection_menu.py:148 lib/menu/selection_menu.py:148
|
||||||
msgid "Select keyboard layout"
|
msgid "Select keyboard layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:125 lib/menu/selection_menu.py:125
|
#: lib/menu/selection_menu.py:149 lib/menu/selection_menu.py:147
|
||||||
|
#: lib/menu/selection_menu.py:151 lib/menu/selection_menu.py:151
|
||||||
msgid "Select mirror region"
|
msgid "Select mirror region"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:130 lib/menu/selection_menu.py:130
|
#: lib/menu/selection_menu.py:154 lib/menu/selection_menu.py:152
|
||||||
|
#: lib/menu/selection_menu.py:156 lib/menu/selection_menu.py:156
|
||||||
msgid "Select locale language"
|
msgid "Select locale language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:132 lib/menu/selection_menu.py:132
|
#: lib/menu/selection_menu.py:156 lib/menu/selection_menu.py:154
|
||||||
|
#: lib/menu/selection_menu.py:158 lib/menu/selection_menu.py:158
|
||||||
msgid "Select locale encoding"
|
msgid "Select locale encoding"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:135 lib/menu/selection_menu.py:135
|
#: lib/menu/selection_menu.py:159 lib/menu/selection_menu.py:157
|
||||||
|
#: lib/menu/selection_menu.py:161 lib/menu/selection_menu.py:161
|
||||||
msgid "Select harddrives"
|
msgid "Select harddrives"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:139 lib/menu/selection_menu.py:139
|
#: lib/menu/selection_menu.py:163 lib/menu/selection_menu.py:161
|
||||||
|
#: lib/menu/selection_menu.py:165 lib/menu/selection_menu.py:165
|
||||||
msgid "Select disk layout"
|
msgid "Select disk layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:147 lib/menu/selection_menu.py:147
|
#: lib/menu/selection_menu.py:171 lib/menu/selection_menu.py:169
|
||||||
|
#: lib/menu/selection_menu.py:173 lib/menu/selection_menu.py:173
|
||||||
msgid "Set encryption password"
|
msgid "Set encryption password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:153 lib/menu/selection_menu.py:153
|
#: lib/menu/selection_menu.py:177 lib/menu/selection_menu.py:175
|
||||||
|
#: lib/menu/selection_menu.py:179 lib/menu/selection_menu.py:179
|
||||||
msgid "Use swap"
|
msgid "Use swap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:158 lib/menu/selection_menu.py:158
|
#: lib/menu/selection_menu.py:182 lib/menu/selection_menu.py:180
|
||||||
|
#: lib/menu/selection_menu.py:184 lib/menu/selection_menu.py:184
|
||||||
msgid "Select bootloader"
|
msgid "Select bootloader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:164 lib/menu/selection_menu.py:164
|
#: lib/menu/selection_menu.py:188 lib/menu/selection_menu.py:186
|
||||||
|
#: lib/menu/selection_menu.py:190 lib/menu/selection_menu.py:190
|
||||||
msgid "Set root password"
|
msgid "Set root password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:169 lib/menu/selection_menu.py:169
|
#: lib/menu/selection_menu.py:193 lib/menu/selection_menu.py:191
|
||||||
|
#: lib/menu/selection_menu.py:195 lib/menu/selection_menu.py:195
|
||||||
msgid "Specify superuser account"
|
msgid "Specify superuser account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:175 lib/menu/selection_menu.py:175
|
#: lib/menu/selection_menu.py:199 lib/menu/selection_menu.py:197
|
||||||
|
#: lib/menu/selection_menu.py:201 lib/menu/selection_menu.py:201
|
||||||
msgid "Specify user account"
|
msgid "Specify user account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:181 lib/menu/selection_menu.py:181
|
#: lib/menu/selection_menu.py:205 lib/menu/selection_menu.py:203
|
||||||
|
#: lib/menu/selection_menu.py:207 lib/menu/selection_menu.py:207
|
||||||
msgid "Specify profile"
|
msgid "Specify profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:186 lib/menu/selection_menu.py:186
|
#: lib/menu/selection_menu.py:210 lib/menu/selection_menu.py:208
|
||||||
|
#: lib/menu/selection_menu.py:212 lib/menu/selection_menu.py:212
|
||||||
msgid "Select audio"
|
msgid "Select audio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:190 lib/menu/selection_menu.py:190
|
#: lib/menu/selection_menu.py:214 lib/menu/selection_menu.py:212
|
||||||
|
#: lib/menu/selection_menu.py:216 lib/menu/selection_menu.py:216
|
||||||
msgid "Select kernels"
|
msgid "Select kernels"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:195 lib/menu/selection_menu.py:195
|
#: lib/menu/selection_menu.py:219 lib/menu/selection_menu.py:217
|
||||||
|
#: lib/menu/selection_menu.py:221 lib/menu/selection_menu.py:221
|
||||||
msgid "Additional packages to install"
|
msgid "Additional packages to install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:200 lib/menu/selection_menu.py:200
|
#: lib/menu/selection_menu.py:224 lib/menu/selection_menu.py:222
|
||||||
|
#: lib/menu/selection_menu.py:226 lib/menu/selection_menu.py:226
|
||||||
msgid "Configure network"
|
msgid "Configure network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:208 lib/menu/selection_menu.py:208
|
#: lib/menu/selection_menu.py:232 lib/menu/selection_menu.py:230
|
||||||
|
#: lib/menu/selection_menu.py:234 lib/menu/selection_menu.py:234
|
||||||
msgid "Set automatic time sync (NTP)"
|
msgid "Set automatic time sync (NTP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:310 lib/menu/selection_menu.py:308
|
||||||
|
#: lib/menu/selection_menu.py:315 lib/menu/selection_menu.py:315
|
||||||
|
msgid "Install ({} config(s) missing)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:373 lib/menu/selection_menu.py:371
|
||||||
|
#: lib/menu/selection_menu.py:378 lib/menu/selection_menu.py:378
|
||||||
|
msgid ""
|
||||||
|
"You decided to skip harddrive selection\n"
|
||||||
|
"and will use whatever drive-setup is mounted at {} (experimental)\n"
|
||||||
|
"WARNING: Archinstall won't check the suitability of this setup\n"
|
||||||
|
"Do you wish to continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/disk/filesystem.py:97 lib/disk/filesystem.py:97
|
||||||
|
msgid "Re-using partition instance: {}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:590 lib/user_interaction.py:593
|
||||||
|
#: lib/user_interaction.py:596 lib/user_interaction.py:596
|
||||||
|
msgid "Create a new partition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:592 lib/user_interaction.py:595
|
||||||
|
#: lib/user_interaction.py:598 lib/user_interaction.py:598
|
||||||
|
msgid "Delete a partition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:593 lib/user_interaction.py:596
|
||||||
|
#: lib/user_interaction.py:599 lib/user_interaction.py:599
|
||||||
|
msgid "Clear/Delete all partitions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:594 lib/user_interaction.py:597
|
||||||
|
#: lib/user_interaction.py:600 lib/user_interaction.py:600
|
||||||
|
msgid "Assign mount-point for a partition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:595 lib/user_interaction.py:598
|
||||||
|
#: lib/user_interaction.py:601 lib/user_interaction.py:601
|
||||||
|
msgid "Mark/Unmark a partition to be formatted (wipes data)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:596 lib/user_interaction.py:599
|
||||||
|
#: lib/user_interaction.py:602 lib/user_interaction.py:602
|
||||||
|
msgid "Mark/Unmark a partition as encrypted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:597 lib/user_interaction.py:600
|
||||||
|
#: lib/user_interaction.py:603 lib/user_interaction.py:603
|
||||||
|
msgid "Mark/Unmark a partition as bootable (automatic for /boot)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:598 lib/user_interaction.py:601
|
||||||
|
#: lib/user_interaction.py:604 lib/user_interaction.py:604
|
||||||
|
msgid "Set desired filesystem for a partition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:239 lib/menu/selection_menu.py:237
|
||||||
|
#: lib/menu/selection_menu.py:241 lib/menu/selection_menu.py:270
|
||||||
|
#: lib/menu/selection_menu.py:241 lib/menu/selection_menu.py:270
|
||||||
|
msgid "Abort"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:183 lib/menu/selection_menu.py:187
|
||||||
|
#: lib/menu/selection_menu.py:187
|
||||||
|
msgid "Specify hostname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:228 lib/menu/selection_menu.py:228
|
||||||
|
msgid "Not configured, unavailable unless setup manually"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:231 lib/menu/selection_menu.py:231
|
||||||
|
msgid "Select timezone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:266 lib/menu/selection_menu.py:266
|
||||||
|
msgid "Set/Modify the below options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:272 lib/menu/selection_menu.py:272
|
||||||
|
msgid "Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/menu.py:68 lib/menu/menu.py:68
|
||||||
|
msgid ""
|
||||||
|
"Use ESC to skip\n"
|
||||||
|
"\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:591 lib/user_interaction.py:594
|
||||||
|
#: lib/user_interaction.py:597 lib/user_interaction.py:597
|
||||||
|
msgid "Suggest partition layout"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:101 lib/user_interaction.py:101
|
||||||
|
msgid "Enter a password: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/disk/filesystem.py:117 lib/disk/filesystem.py:117
|
||||||
|
msgid "Enter a encryption password for {}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:174 lib/menu/selection_menu.py:174
|
||||||
|
msgid "Enter disk encryption password (leave blank for no encryption): "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:407 lib/menu/selection_menu.py:407
|
||||||
|
msgid "Create a required super-user with sudo privileges: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:347 lib/menu/selection_menu.py:347
|
||||||
|
msgid "Enter root password (leave blank to disable root): "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:307 lib/user_interaction.py:324
|
||||||
|
#: lib/user_interaction.py:307 lib/user_interaction.py:324
|
||||||
|
msgid "Password for user \"{}\": "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:405 lib/user_interaction.py:408
|
||||||
|
#: lib/user_interaction.py:408
|
||||||
|
msgid ""
|
||||||
|
"Verifying that additional packages exist (this might take a few seconds)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:281 lib/user_interaction.py:281
|
||||||
|
msgid ""
|
||||||
|
"Would you like to use automatic time synchronization (NTP) with the default "
|
||||||
|
"time servers?\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:282 lib/user_interaction.py:282
|
||||||
|
msgid ""
|
||||||
|
"Hardware time and other post-configuration steps might be required in order "
|
||||||
|
"for NTP to work.\n"
|
||||||
|
"For more information, please check the Arch wiki"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:411 lib/menu/selection_menu.py:411
|
||||||
|
msgid "Enter a username to create an additional user (leave blank to skip): "
|
||||||
|
msgstr ""
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,351 +1,506 @@
|
||||||
#: lib/user_interaction.py:82
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"POT-Creation-Date: \n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: de\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 3.0\n"
|
||||||
|
|
||||||
|
#: lib/installer.py:144
|
||||||
|
msgid "[!] A log file has been created here: {} {}"
|
||||||
|
msgstr "[!] Eine Logdatei wurde erstellt: {} {}"
|
||||||
|
|
||||||
|
#: lib/installer.py:145
|
||||||
|
msgid " Please submit this issue (and file) to https://github.com/archlinux/archinstall/issues"
|
||||||
|
msgstr "Bitte melden sie das Problem mit der erstellten Datei auf https://github.com/archlinux/archinstall/issues"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:83
|
||||||
msgid "Do you really want to abort?"
|
msgid "Do you really want to abort?"
|
||||||
msgstr ""
|
msgstr "Wollen Sie wirklich abbrechen?"
|
||||||
|
|
||||||
#: lib/user_interaction.py:100
|
#: lib/user_interaction.py:101 lib/user_interaction.py:104
|
||||||
msgid "And one more time for verification: "
|
msgid "And one more time for verification: "
|
||||||
msgstr ""
|
msgstr "Und nocheinmal zur Besätigung: "
|
||||||
|
|
||||||
#: lib/user_interaction.py:271
|
#: lib/user_interaction.py:272 lib/user_interaction.py:275
|
||||||
msgid "Would you like to use swap on zram?"
|
msgid "Would you like to use swap on zram?"
|
||||||
msgstr ""
|
msgstr "Möchten Sie swap mit zram verwenden?"
|
||||||
|
|
||||||
#: lib/user_interaction.py:277
|
#: lib/user_interaction.py:285 lib/user_interaction.py:288
|
||||||
msgid ""
|
|
||||||
"Would you like to use automatic time synchronization (NTP) with the default "
|
|
||||||
"time servers?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:278
|
|
||||||
msgid ""
|
|
||||||
"Hardware time and other post-configuration steps might be required in order "
|
|
||||||
"for NTP to work. For more information, please check the Arch wiki"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:284
|
|
||||||
msgid "Desired hostname for the installation: "
|
msgid "Desired hostname for the installation: "
|
||||||
msgstr ""
|
msgstr "Gewnüschter Hostname für die Installation: "
|
||||||
|
|
||||||
#: lib/user_interaction.py:289
|
#: lib/user_interaction.py:290 lib/user_interaction.py:293
|
||||||
msgid "Username for required superuser with sudo privileges: "
|
msgid "Username for required superuser with sudo privileges: "
|
||||||
msgstr ""
|
msgstr "Benutzername für den erforderlichen superuser mit sudo Rechten: "
|
||||||
|
|
||||||
#: lib/user_interaction.py:303 lib/user_interaction.py:320
|
#: lib/user_interaction.py:310 lib/user_interaction.py:313
|
||||||
msgid "Password for user \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:309
|
|
||||||
msgid "Any additional users to install (leave blank for no users): "
|
msgid "Any additional users to install (leave blank for no users): "
|
||||||
msgstr ""
|
msgstr "Geben Sie weitere Benutzernamen ein die installiert werden sollen (leer lassen für keine weiteren Benutzer): "
|
||||||
|
|
||||||
#: lib/user_interaction.py:323
|
#: lib/user_interaction.py:324 lib/user_interaction.py:327
|
||||||
msgid "Should this user be a superuser (sudoer)?"
|
msgid "Should this user be a superuser (sudoer)?"
|
||||||
msgstr ""
|
msgstr "Soll dieser Benutzer ein superuser sein (sudoer)?"
|
||||||
|
|
||||||
#: lib/user_interaction.py:339
|
#: lib/user_interaction.py:340 lib/user_interaction.py:343 lib/user_interaction.py:346
|
||||||
msgid "Select a timezone"
|
msgid "Select a timezone"
|
||||||
msgstr ""
|
msgstr "Bitte wählen Sie eine Zeitzone aus"
|
||||||
|
|
||||||
#: lib/user_interaction.py:353
|
#: lib/user_interaction.py:354 lib/user_interaction.py:357 lib/user_interaction.py:360
|
||||||
msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?"
|
msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?"
|
||||||
msgstr ""
|
msgstr "Möchten Sie GRUB als bootloader anstelle von system-boot verwenden?"
|
||||||
|
|
||||||
#: lib/user_interaction.py:363
|
#: lib/user_interaction.py:364 lib/user_interaction.py:367 lib/user_interaction.py:370
|
||||||
msgid "Choose a bootloader"
|
msgid "Choose a bootloader"
|
||||||
msgstr ""
|
msgstr "Bitte wählen Sie einen bootloader aus"
|
||||||
|
|
||||||
#: lib/user_interaction.py:379
|
#: lib/user_interaction.py:380 lib/user_interaction.py:383 lib/user_interaction.py:386
|
||||||
msgid "Choose an audio server"
|
msgid "Choose an audio server"
|
||||||
msgstr ""
|
msgstr "Bitte wählen Sie einen Audio server aus"
|
||||||
|
|
||||||
#: lib/user_interaction.py:390
|
#: lib/user_interaction.py:391 lib/user_interaction.py:394 lib/user_interaction.py:397
|
||||||
msgid ""
|
msgid "Only packages such as base, base-devel, linux, linux-firmware, efibootmgr and optional profile packages are installed."
|
||||||
"Only packages such as base, base-devel, linux, linux-firmware, efibootmgr "
|
msgstr "Nur die Packete base, base-devel, linux, linux-firmware, efibootmgr und optionale Profilpackete werden installiert"
|
||||||
"and optional profile packages are installed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:391
|
#: lib/user_interaction.py:392 lib/user_interaction.py:395 lib/user_interaction.py:398
|
||||||
msgid ""
|
msgid "If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt."
|
||||||
"If you desire a web browser, such as firefox or chromium, you may specify it "
|
msgstr "Wenn Sie einen Webbrowser, z.B. Firefox oder Chromium, installieren möchten, können Sie diese nun eingeben."
|
||||||
"in the following prompt."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:395
|
#: lib/user_interaction.py:396 lib/user_interaction.py:399 lib/user_interaction.py:402
|
||||||
msgid ""
|
msgid "Write additional packages to install (space separated, leave blank to skip): "
|
||||||
"Write additional packages to install (space separated, leave blank to skip): "
|
msgstr "Schreiben Sie zusätzliche Packete die installiert werden sollen mit einem Leerzeichen getrennt (zum Überspringen leer lassen): "
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:418
|
#: lib/user_interaction.py:419 lib/user_interaction.py:422 lib/user_interaction.py:425
|
||||||
msgid "Copy ISO network configuration to installation"
|
msgid "Copy ISO network configuration to installation"
|
||||||
msgstr ""
|
msgstr "ISO netzwerk Einstellungen in die Installation kopieren"
|
||||||
|
|
||||||
#: lib/user_interaction.py:419
|
#: lib/user_interaction.py:420 lib/user_interaction.py:423 lib/user_interaction.py:426
|
||||||
msgid ""
|
msgid "Use NetworkManager (necessary to configure internet graphically in GNOME and KDE)"
|
||||||
"Use NetworkManager (necessary to configure internet graphically in GNOME and "
|
msgstr "NetworkManager benutzen (notwendig um Internet auf graphische Weise in GNOME und KDE einzustellen)"
|
||||||
"KDE)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:427
|
#: lib/user_interaction.py:428 lib/user_interaction.py:431 lib/user_interaction.py:434
|
||||||
msgid "Select one network interface to configure"
|
msgid "Select one network interface to configure"
|
||||||
msgstr ""
|
msgstr "Bitte wählen Sie ein netzwerk zur Konfiguration aus"
|
||||||
|
|
||||||
#: lib/user_interaction.py:440
|
#: lib/user_interaction.py:441 lib/user_interaction.py:444 lib/user_interaction.py:447
|
||||||
msgid ""
|
msgid "Select which mode to configure for \"{}\" or skip to use default mode \"{}\""
|
||||||
"Select which mode to configure for \"{}\" or skip to use default mode \"{}\""
|
msgstr "Bitte wählen Sie einen Modus zur Konfiguration von \"{}\" aus oder Überspringen um mit dem voreingestellten Modus \"{}\" fortzufahren"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:445
|
#: lib/user_interaction.py:446 lib/user_interaction.py:449 lib/user_interaction.py:452
|
||||||
msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): "
|
msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): "
|
||||||
msgstr ""
|
msgstr "Bitte geben Sie eine IP Adresse und ein Subnet für {} ein (z.B. 192.168.0.5/24)"
|
||||||
|
|
||||||
#: lib/user_interaction.py:460
|
#: lib/user_interaction.py:461 lib/user_interaction.py:464 lib/user_interaction.py:467
|
||||||
msgid "Enter your gateway (router) IP address or leave blank for none: "
|
msgid "Enter your gateway (router) IP address or leave blank for none: "
|
||||||
msgstr ""
|
msgstr "Bitte geben Sie eine gateway (router) IP Adresse ein (leer lassen für kein Adresse): "
|
||||||
|
|
||||||
#: lib/user_interaction.py:475
|
#: lib/user_interaction.py:476 lib/user_interaction.py:479 lib/user_interaction.py:482
|
||||||
msgid "Enter your DNS servers (space separated, blank for none): "
|
msgid "Enter your DNS servers (space separated, blank for none): "
|
||||||
msgstr ""
|
msgstr "Bitte geben Sie die DNS server ein (mit Leerzeichen getrennt oder leer lassen für keinen server): "
|
||||||
|
|
||||||
#: lib/user_interaction.py:509
|
#: lib/user_interaction.py:510 lib/user_interaction.py:513 lib/user_interaction.py:516
|
||||||
msgid "Select which filesystem your main partition should use"
|
msgid "Select which filesystem your main partition should use"
|
||||||
msgstr ""
|
msgstr "Bitte wählen Sie ein Dateisystem aus, welches für die Hauptpartition verwendet werden soll"
|
||||||
|
|
||||||
#: lib/user_interaction.py:555
|
#: lib/user_interaction.py:556 lib/user_interaction.py:559 lib/user_interaction.py:562
|
||||||
msgid "Current partition layout"
|
msgid "Current partition layout"
|
||||||
msgstr ""
|
msgstr "Momentanes Partitionslayout"
|
||||||
|
|
||||||
#: lib/user_interaction.py:606
|
#: lib/user_interaction.py:607 lib/user_interaction.py:614 lib/user_interaction.py:617 lib/user_interaction.py:620
|
||||||
msgid ""
|
msgid ""
|
||||||
"Select what to do with\n"
|
"Select what to do with\n"
|
||||||
"{}"
|
"{}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Bitte wählen Sie eine Aktion aus für\n"
|
||||||
|
"{}"
|
||||||
|
|
||||||
#: lib/user_interaction.py:623 lib/user_interaction.py:708
|
#: lib/user_interaction.py:624 lib/user_interaction.py:709 lib/user_interaction.py:631 lib/user_interaction.py:716 lib/user_interaction.py:634 lib/user_interaction.py:719 lib/user_interaction.py:637 lib/user_interaction.py:722
|
||||||
msgid "Enter a desired filesystem type for the partition"
|
msgid "Enter a desired filesystem type for the partition"
|
||||||
msgstr ""
|
msgstr "Bitte wählen Sie einen Dateisystemtyp für die Partition aus"
|
||||||
|
|
||||||
#: lib/user_interaction.py:625
|
#: lib/user_interaction.py:626 lib/user_interaction.py:633 lib/user_interaction.py:636 lib/user_interaction.py:639
|
||||||
msgid "Enter the start sector (percentage or block number, default: {}): "
|
msgid "Enter the start sector (percentage or block number, default: {}): "
|
||||||
msgstr ""
|
msgstr "Bitte geben Sie den start Sektor ein (in Prozent oder Blocknummer, default: {}): "
|
||||||
|
|
||||||
#: lib/user_interaction.py:634
|
#: lib/user_interaction.py:635 lib/user_interaction.py:642 lib/user_interaction.py:645 lib/user_interaction.py:648
|
||||||
msgid ""
|
msgid "Enter the end sector of the partition (percentage or block number, ex: {}): "
|
||||||
"Enter the end sector of the partition (percentage or block number, ex: {}): "
|
msgstr "Bitte geben Sie den end Sektor ein (in Prozent oder Blocknummer, default: {}): "
|
||||||
"\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:660
|
#: lib/user_interaction.py:661 lib/user_interaction.py:668 lib/user_interaction.py:671 lib/user_interaction.py:674
|
||||||
msgid "{} contains queued partitions, this will remove those, are you sure?"
|
msgid "{} contains queued partitions, this will remove those, are you sure?"
|
||||||
msgstr ""
|
msgstr "{} enthält Partitionen in der Warteschlange, dies werden damit entfernt, sind sie sicher?"
|
||||||
|
|
||||||
#: lib/user_interaction.py:673
|
#: lib/user_interaction.py:674 lib/user_interaction.py:681 lib/user_interaction.py:684 lib/user_interaction.py:687
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select by index which partitions to delete"
|
"Select by index which partitions to delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"{}\n"
|
||||||
|
"\n"
|
||||||
|
"Wählen sie anhand vom index welche Partitionen gelöscht werden sollen"
|
||||||
|
|
||||||
#: lib/user_interaction.py:681
|
#: lib/user_interaction.py:682 lib/user_interaction.py:689 lib/user_interaction.py:692 lib/user_interaction.py:695
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select by index which partition to mount where"
|
"Select by index which partition to mount where"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"{}\n"
|
||||||
|
"\n"
|
||||||
|
"Wählen sie anhand vom index welche Partitionen zu mounten"
|
||||||
|
|
||||||
#: lib/user_interaction.py:685
|
#: lib/user_interaction.py:686 lib/user_interaction.py:693 lib/user_interaction.py:696 lib/user_interaction.py:699
|
||||||
msgid ""
|
msgid " * Partition mount-points are relative to inside the installation, the boot would be /boot as an example."
|
||||||
" * Partition mount-points are relative to inside the installation, the boot "
|
msgstr " * Die Mountorte sind relativ zur Installation, zum Beispiel boot würde gemountet auf /boot"
|
||||||
"would be /boot as an example."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:686
|
#: lib/user_interaction.py:687 lib/user_interaction.py:694 lib/user_interaction.py:697 lib/user_interaction.py:700
|
||||||
msgid "Select where to mount partition (leave blank to remove mountpoint): "
|
msgid "Select where to mount partition (leave blank to remove mountpoint): "
|
||||||
msgstr ""
|
msgstr "Bitte geben sie an wo die Partition gemounted werden soll (leer lassen um den Mountort zu entfernen): "
|
||||||
|
|
||||||
#: lib/user_interaction.py:697
|
#: lib/user_interaction.py:698 lib/user_interaction.py:705 lib/user_interaction.py:708 lib/user_interaction.py:711
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to mask for formatting"
|
"Select which partition to mask for formatting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"{}\n"
|
||||||
|
"\n"
|
||||||
|
"Bitte wählen sie welche Partition formatiert werden soll"
|
||||||
|
|
||||||
#: lib/user_interaction.py:716
|
#: lib/user_interaction.py:717 lib/user_interaction.py:724 lib/user_interaction.py:727 lib/user_interaction.py:730
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to mark as encrypted"
|
"Select which partition to mark as encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"{}\n"
|
||||||
|
"\n"
|
||||||
|
"Bitte wählen sie welche Partition verschlüsselt werden soll"
|
||||||
|
|
||||||
#: lib/user_interaction.py:724
|
#: lib/user_interaction.py:725 lib/user_interaction.py:732 lib/user_interaction.py:735 lib/user_interaction.py:738
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to mark as bootable"
|
"Select which partition to mark as bootable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"{}\n"
|
||||||
|
"\n"
|
||||||
|
"Bitte wählen sie welche Partition bootbar ist"
|
||||||
|
|
||||||
#: lib/user_interaction.py:731
|
#: lib/user_interaction.py:732 lib/user_interaction.py:739 lib/user_interaction.py:742 lib/user_interaction.py:745
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to set a filesystem on"
|
"Select which partition to set a filesystem on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"{}\n"
|
||||||
|
"\n"
|
||||||
|
"Bitte wählen sie auf welche Partition ein Dateisystem eingerichtet werden soll"
|
||||||
|
|
||||||
#: lib/user_interaction.py:738
|
#: lib/user_interaction.py:739 lib/user_interaction.py:746 lib/user_interaction.py:749 lib/user_interaction.py:752
|
||||||
msgid "Enter a desired filesystem type for the partition: "
|
msgid "Enter a desired filesystem type for the partition: "
|
||||||
msgstr ""
|
msgstr "Bitte geben sie einen gewünschten Dateisystemtyp für die Partition ein: "
|
||||||
|
|
||||||
#: lib/user_interaction.py:759 lib/menu/selection_menu.py:116
|
#: lib/user_interaction.py:760 lib/menu/selection_menu.py:141 lib/user_interaction.py:767 lib/menu/selection_menu.py:139 lib/menu/selection_menu.py:143 lib/user_interaction.py:770 lib/user_interaction.py:773
|
||||||
msgid "Select Archinstall language"
|
msgid "Select Archinstall language"
|
||||||
msgstr "Sprache fuer Archinstall"
|
msgstr "Sprache für Archinstall"
|
||||||
|
|
||||||
#: lib/user_interaction.py:764
|
#: lib/user_interaction.py:765 lib/user_interaction.py:772 lib/user_interaction.py:775 lib/user_interaction.py:778
|
||||||
msgid "Wipe all selected drives and use a best-effort default partition layout"
|
msgid "Wipe all selected drives and use a best-effort default partition layout"
|
||||||
msgstr ""
|
msgstr "Alle Laufwerke löschen und ein vorgegebenes Partitionenlayout verwenden"
|
||||||
|
|
||||||
#: lib/user_interaction.py:765
|
#: lib/user_interaction.py:766 lib/user_interaction.py:773 lib/user_interaction.py:776 lib/user_interaction.py:779
|
||||||
msgid ""
|
msgid "Select what to do with each individual drive (followed by partition usage)"
|
||||||
"Select what to do with each individual drive (followed by partition usage)"
|
msgstr "Bitte geben sie an was mit jedem individuellem Laufwerk geschehen soll"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:768
|
#: lib/user_interaction.py:769 lib/user_interaction.py:770 lib/user_interaction.py:777 lib/user_interaction.py:780 lib/user_interaction.py:783
|
||||||
msgid "Select what you wish to do with the selected block devices"
|
msgid "Select what you wish to do with the selected block devices"
|
||||||
msgstr ""
|
msgstr "Bitte wählen sie was mit dem ausgewählten Gerät geschehen soll"
|
||||||
|
|
||||||
#: lib/user_interaction.py:821
|
#: lib/user_interaction.py:822 lib/user_interaction.py:823 lib/user_interaction.py:830 lib/user_interaction.py:833 lib/user_interaction.py:836
|
||||||
msgid ""
|
msgid "This is a list of pre-programmed profiles, they might make it easier to install things like desktop environments"
|
||||||
"This is a list of pre-programmed profiles, they might make it easier to "
|
msgstr "Dies ist eine Liste von bereits programmierten Profilen, diese ermöglichen es einfacher Desktop Umgebungen einzustellen"
|
||||||
"install things like desktop environments"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:846
|
#: lib/user_interaction.py:846 lib/user_interaction.py:847 lib/user_interaction.py:854 lib/user_interaction.py:857 lib/user_interaction.py:860
|
||||||
msgid "Select Keyboard layout"
|
msgid "Select Keyboard layout"
|
||||||
msgstr ""
|
msgstr "Bitte wählen sie ein Tastaturlayout aus"
|
||||||
|
|
||||||
#: lib/user_interaction.py:861
|
#: lib/user_interaction.py:861 lib/user_interaction.py:862 lib/user_interaction.py:869 lib/user_interaction.py:872 lib/user_interaction.py:875
|
||||||
msgid "Select one of the regions to download packages from"
|
msgid "Select one of the regions to download packages from"
|
||||||
msgstr ""
|
msgstr "Bitte wählen sie eine Region zum downloaden von Packeten aus"
|
||||||
|
|
||||||
#: lib/user_interaction.py:883
|
#: lib/user_interaction.py:883 lib/user_interaction.py:884 lib/user_interaction.py:891 lib/user_interaction.py:894 lib/user_interaction.py:897
|
||||||
msgid "Select one or more hard drives to use and configure"
|
msgid "Select one or more hard drives to use and configure"
|
||||||
msgstr ""
|
msgstr "Bitte wählen sie eine oder mehrere Laufwerke aus die konfiguriert werden sollen"
|
||||||
|
|
||||||
#: lib/user_interaction.py:910
|
#: lib/user_interaction.py:910 lib/user_interaction.py:911 lib/user_interaction.py:918 lib/user_interaction.py:921 lib/user_interaction.py:924
|
||||||
msgid ""
|
msgid "For the best compatibility with your AMD hardware, you may want to use either the all open-source or AMD / ATI options."
|
||||||
"For the best compatibility with your AMD hardware, you may want to use "
|
msgstr "Für die beste kompabilität mit ihrer AMD hardware, sollten sie womöglich die open-source oder AMD / ATI optionen verwenden"
|
||||||
"either the all open-source or AMD / ATI options."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:912
|
#: lib/user_interaction.py:912 lib/user_interaction.py:913 lib/user_interaction.py:920 lib/user_interaction.py:923 lib/user_interaction.py:926
|
||||||
msgid ""
|
msgid "For the best compatibility with your Intel hardware, you may want to use either the all open-source or Intel options.\n"
|
||||||
"For the best compatibility with your Intel hardware, you may want to use "
|
msgstr "Für die beste kompabilität mit ihrer Intel hardware, sollten sie womöglich die open-source oder Intel optionen verwenden.\n"
|
||||||
"either the all open-source or Intel options.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:914
|
#: lib/user_interaction.py:914 lib/user_interaction.py:915 lib/user_interaction.py:922 lib/user_interaction.py:925 lib/user_interaction.py:928
|
||||||
msgid ""
|
msgid "For the best compatibility with your Nvidia hardware, you may want to use the Nvidia proprietary driver.\n"
|
||||||
"For the best compatibility with your Nvidia hardware, you may want to use "
|
msgstr "Für die beste kompabilität mit ihrer Nvidia hardware, sollten sie womöglich die Nvidia proprietary driver option verwenden.\n"
|
||||||
"the Nvidia proprietary driver.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:917
|
#: lib/user_interaction.py:917 lib/user_interaction.py:918 lib/user_interaction.py:925 lib/user_interaction.py:928 lib/user_interaction.py:931
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select a graphics driver or leave blank to install all open-source drivers"
|
"Select a graphics driver or leave blank to install all open-source drivers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"\n"
|
||||||
|
"Bitte wählen sie einen Grafiktreiber aus oder leer lassen um alle open-source Treiber zu installieren"
|
||||||
|
|
||||||
#: lib/user_interaction.py:921
|
#: lib/user_interaction.py:921 lib/user_interaction.py:922 lib/user_interaction.py:929 lib/user_interaction.py:932 lib/user_interaction.py:935
|
||||||
msgid "All open-source (default)"
|
msgid "All open-source (default)"
|
||||||
msgstr ""
|
msgstr "Alle open-source (default)"
|
||||||
|
|
||||||
#: lib/user_interaction.py:940
|
#: lib/user_interaction.py:940 lib/user_interaction.py:941 lib/user_interaction.py:948 lib/user_interaction.py:951 lib/user_interaction.py:954
|
||||||
msgid "Choose which kernels to use or leave blank for default \"{}\""
|
msgid "Choose which kernels to use or leave blank for default \"{}\""
|
||||||
msgstr ""
|
msgstr "Bitte wählen sie welche Kernel benutzt werden sollen oder leer lassen für default \"{}\""
|
||||||
|
|
||||||
#: lib/user_interaction.py:954
|
#: lib/user_interaction.py:954 lib/user_interaction.py:955 lib/user_interaction.py:962 lib/user_interaction.py:965 lib/user_interaction.py:968
|
||||||
msgid "Choose which locale language to use"
|
msgid "Choose which locale language to use"
|
||||||
msgstr ""
|
msgstr "Bitte wählen sie eine lokale Sprache aus"
|
||||||
|
|
||||||
#: lib/user_interaction.py:968
|
#: lib/user_interaction.py:968 lib/user_interaction.py:969 lib/user_interaction.py:976 lib/user_interaction.py:979 lib/user_interaction.py:982
|
||||||
msgid "Choose which locale encoding to use"
|
msgid "Choose which locale encoding to use"
|
||||||
msgstr ""
|
msgstr "Bitte wählen sie eine lokale Kodierung aus"
|
||||||
|
|
||||||
#: lib/user_interaction.py:1009
|
#: lib/user_interaction.py:1009 lib/user_interaction.py:1010 lib/user_interaction.py:1017 lib/user_interaction.py:1020 lib/user_interaction.py:1023
|
||||||
msgid "Select one of the values shown below: "
|
msgid "Select one of the values shown below: "
|
||||||
msgstr ""
|
msgstr "Bitte wählen sie einen der folgenden Werte aus:"
|
||||||
|
|
||||||
#: lib/user_interaction.py:1050
|
#: lib/user_interaction.py:1050 lib/user_interaction.py:1051 lib/user_interaction.py:1058 lib/user_interaction.py:1061 lib/user_interaction.py:1064
|
||||||
msgid "Select one or more of the options below: "
|
msgid "Select one or more of the options below: "
|
||||||
msgstr ""
|
msgstr "Bitte wählen sie eine oder mehrere Optionen aus: "
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:122
|
#: lib/disk/filesystem.py:86
|
||||||
|
msgid "Adding partition...."
|
||||||
|
msgstr "Partitionen werden hinzugefügt..."
|
||||||
|
|
||||||
|
#: lib/disk/filesystem.py:139 lib/disk/filesystem.py:141
|
||||||
|
msgid "You need to enter a valid fs-type in order to continue. See `man parted` for valid fs-type's."
|
||||||
|
msgstr "Bitte geben sie einen gültigen Dateisystemtyp ein um fortzufahren. Wenden sie sich an \"man parted\" für eine Liste von gültigen Typen."
|
||||||
|
|
||||||
|
#: lib/profiles.py:89
|
||||||
|
msgid "Error: Listing profiles on URL \"{}\" resulted in:"
|
||||||
|
msgstr "Fehler: Auflistung von Profilen mit URL \"{}\":"
|
||||||
|
|
||||||
|
#: lib/profiles.py:92
|
||||||
|
msgid "Error: Could not decode \"{}\" result as JSON:"
|
||||||
|
msgstr "Fehler: \"{}\" konnte nicht in ein JSON format dekodiert werden:"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:146 lib/menu/selection_menu.py:144 lib/menu/selection_menu.py:148
|
||||||
msgid "Select keyboard layout"
|
msgid "Select keyboard layout"
|
||||||
msgstr ""
|
msgstr "Tastaturlayout auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:125
|
#: lib/menu/selection_menu.py:149 lib/menu/selection_menu.py:147 lib/menu/selection_menu.py:151
|
||||||
msgid "Select mirror region"
|
msgid "Select mirror region"
|
||||||
msgstr ""
|
msgstr "Mirror-region auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:130
|
#: lib/menu/selection_menu.py:154 lib/menu/selection_menu.py:152 lib/menu/selection_menu.py:156
|
||||||
msgid "Select locale language"
|
msgid "Select locale language"
|
||||||
msgstr ""
|
msgstr "Lokale Sprache auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:132
|
#: lib/menu/selection_menu.py:156 lib/menu/selection_menu.py:154 lib/menu/selection_menu.py:158
|
||||||
msgid "Select locale encoding"
|
msgid "Select locale encoding"
|
||||||
msgstr ""
|
msgstr "Lokale Kodierung auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:135
|
#: lib/menu/selection_menu.py:159 lib/menu/selection_menu.py:157 lib/menu/selection_menu.py:161
|
||||||
msgid "Select harddrives"
|
msgid "Select harddrives"
|
||||||
msgstr ""
|
msgstr "Laufwerke auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:139
|
#: lib/menu/selection_menu.py:163 lib/menu/selection_menu.py:161 lib/menu/selection_menu.py:165
|
||||||
msgid "Select disk layout"
|
msgid "Select disk layout"
|
||||||
msgstr ""
|
msgstr "Laufwerke-layout auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:147
|
#: lib/menu/selection_menu.py:171 lib/menu/selection_menu.py:169 lib/menu/selection_menu.py:173
|
||||||
msgid "Set encryption password"
|
msgid "Set encryption password"
|
||||||
msgstr ""
|
msgstr "Verschlüsselungspasswort angeben"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:153
|
#: lib/menu/selection_menu.py:177 lib/menu/selection_menu.py:175 lib/menu/selection_menu.py:179
|
||||||
msgid "Use swap"
|
msgid "Use swap"
|
||||||
msgstr ""
|
msgstr "Swap benützen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:158
|
#: lib/menu/selection_menu.py:182 lib/menu/selection_menu.py:180 lib/menu/selection_menu.py:184
|
||||||
msgid "Select bootloader"
|
msgid "Select bootloader"
|
||||||
msgstr ""
|
msgstr "Bootloader auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:164
|
#: lib/menu/selection_menu.py:188 lib/menu/selection_menu.py:186 lib/menu/selection_menu.py:190
|
||||||
msgid "Set root password"
|
msgid "Set root password"
|
||||||
msgstr ""
|
msgstr "Root Passwort wählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:169
|
#: lib/menu/selection_menu.py:193 lib/menu/selection_menu.py:191 lib/menu/selection_menu.py:195
|
||||||
msgid "Specify superuser account"
|
msgid "Specify superuser account"
|
||||||
msgstr ""
|
msgstr "Superuser Konto wählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:175
|
#: lib/menu/selection_menu.py:199 lib/menu/selection_menu.py:197 lib/menu/selection_menu.py:201
|
||||||
msgid "Specify user account"
|
msgid "Specify user account"
|
||||||
msgstr ""
|
msgstr "Benutzerkonto wählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:181
|
#: lib/menu/selection_menu.py:205 lib/menu/selection_menu.py:203 lib/menu/selection_menu.py:207
|
||||||
msgid "Specify profile"
|
msgid "Specify profile"
|
||||||
msgstr ""
|
msgstr "Profile auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:186
|
#: lib/menu/selection_menu.py:210 lib/menu/selection_menu.py:208 lib/menu/selection_menu.py:212
|
||||||
msgid "Select audio"
|
msgid "Select audio"
|
||||||
msgstr ""
|
msgstr "Audio auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:190
|
#: lib/menu/selection_menu.py:214 lib/menu/selection_menu.py:212 lib/menu/selection_menu.py:216
|
||||||
msgid "Select kernels"
|
msgid "Select kernels"
|
||||||
msgstr ""
|
msgstr "Kernel auswählen"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:195
|
#: lib/menu/selection_menu.py:219 lib/menu/selection_menu.py:217 lib/menu/selection_menu.py:221
|
||||||
msgid "Additional packages to install"
|
msgid "Additional packages to install"
|
||||||
msgstr ""
|
msgstr "Zus. Packete für die Installation"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:200
|
#: lib/menu/selection_menu.py:224 lib/menu/selection_menu.py:222 lib/menu/selection_menu.py:226
|
||||||
msgid "Configure network"
|
msgid "Configure network"
|
||||||
msgstr ""
|
msgstr "Netzwerkonfiguration"
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:208
|
#: lib/menu/selection_menu.py:232 lib/menu/selection_menu.py:230 lib/menu/selection_menu.py:234
|
||||||
msgid "Set automatic time sync (NTP)"
|
msgid "Set automatic time sync (NTP)"
|
||||||
|
msgstr "Autom. Zeitsynchronisierung (NTP)"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:310 lib/menu/selection_menu.py:308 lib/menu/selection_menu.py:315
|
||||||
|
msgid "Install ({} config(s) missing)"
|
||||||
|
msgstr "Installieren ({} konfiguration(en) ausständig)"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:373 lib/menu/selection_menu.py:371 lib/menu/selection_menu.py:378
|
||||||
|
msgid ""
|
||||||
|
"You decided to skip harddrive selection\n"
|
||||||
|
"and will use whatever drive-setup is mounted at {} (experimental)\n"
|
||||||
|
"WARNING: Archinstall won't check the suitability of this setup\n"
|
||||||
|
"Do you wish to continue?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Sie haben sich entschieden keine Laufwerke auszuwählen\n"
|
||||||
|
"und jene Einstellungen zu verwenden welche momentan auf {} verfügbar sind (experimentell)\n"
|
||||||
|
"WARNUNG: Archinstall wird die Kompabilität der Einstellung nicht überprüfen\n"
|
||||||
|
"Wollen sie trotzdem fortfahren?"
|
||||||
|
|
||||||
|
#: lib/disk/filesystem.py:97
|
||||||
|
msgid "Re-using partition instance: {}"
|
||||||
|
msgstr "Wiederverwenden der Partitionsinstanz: {}"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:590 lib/user_interaction.py:593 lib/user_interaction.py:596
|
||||||
|
msgid "Create a new partition"
|
||||||
|
msgstr "Neue Partition erstellen"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:592 lib/user_interaction.py:595 lib/user_interaction.py:598
|
||||||
|
msgid "Delete a partition"
|
||||||
|
msgstr "Partition löschen"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:593 lib/user_interaction.py:596 lib/user_interaction.py:599
|
||||||
|
msgid "Clear/Delete all partitions"
|
||||||
|
msgstr "Alle partitionen löschen"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:594 lib/user_interaction.py:597 lib/user_interaction.py:600
|
||||||
|
msgid "Assign mount-point for a partition"
|
||||||
|
msgstr "Mountort für Partition angeben"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:595 lib/user_interaction.py:598 lib/user_interaction.py:601
|
||||||
|
msgid "Mark/Unmark a partition to be formatted (wipes data)"
|
||||||
|
msgstr "Markieren welche Partition formattiert werden soll (alle Daten werden gelöscht)"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:596 lib/user_interaction.py:599 lib/user_interaction.py:602
|
||||||
|
msgid "Mark/Unmark a partition as encrypted"
|
||||||
|
msgstr "Markieren welche Partitionen verschlüsselt werden sollen"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:597 lib/user_interaction.py:600 lib/user_interaction.py:603
|
||||||
|
msgid "Mark/Unmark a partition as bootable (automatic for /boot)"
|
||||||
|
msgstr "Markieren welche Partition bootbar ist (automatisch für /boot)"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:598 lib/user_interaction.py:601 lib/user_interaction.py:604
|
||||||
|
msgid "Set desired filesystem for a partition"
|
||||||
|
msgstr "Bitte wählen Sie einen Dateisystemtyp für die Partition aus"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:239 lib/menu/selection_menu.py:237 lib/menu/selection_menu.py:241 lib/menu/selection_menu.py:270
|
||||||
|
msgid "Abort"
|
||||||
|
msgstr "Abbrechen"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:183 lib/menu/selection_menu.py:187
|
||||||
|
msgid "Specify hostname"
|
||||||
|
msgstr "Hostnamen wählen"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:228
|
||||||
|
msgid "Not configured, unavailable unless setup manually"
|
||||||
|
msgstr "Nicht konfiguriert, unverfügbar wenn nicht selber eingestellt"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:231
|
||||||
|
msgid "Select timezone"
|
||||||
|
msgstr "Zeitzone wählen"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:266
|
||||||
|
msgid "Set/Modify the below options"
|
||||||
|
msgstr "Setzen sie die unten stehenden Einstellungen"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:272
|
||||||
|
msgid "Install"
|
||||||
|
msgstr "Installieren"
|
||||||
|
|
||||||
|
#: lib/menu/menu.py:68
|
||||||
|
msgid ""
|
||||||
|
"Use ESC to skip\n"
|
||||||
|
"\n"
|
||||||
|
msgstr ""
|
||||||
|
"ESC um zu Überspringen\n"
|
||||||
|
"\n"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:591 lib/user_interaction.py:594 lib/user_interaction.py:597
|
||||||
|
msgid "Suggest partition layout"
|
||||||
|
msgstr "Ein Partitionslayout vorschlagen"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:101
|
||||||
|
msgid "Enter a password: "
|
||||||
|
msgstr "Passwort eingeben: "
|
||||||
|
|
||||||
|
#: lib/disk/filesystem.py:117
|
||||||
|
msgid "Enter a encryption password for {}"
|
||||||
|
msgstr "Verschlüsselungspasswort angeben für {}"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:174
|
||||||
|
msgid "Enter disk encryption password (leave blank for no encryption): "
|
||||||
|
msgstr "Geben sie ein Verschlüsselungspasswort ein (leer lassen um zu Überspringen): "
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:407
|
||||||
|
msgid "Create a required super-user with sudo privileges: "
|
||||||
|
msgstr "Geben sie einen super-user mit sudo Privilegien an: "
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:347
|
||||||
|
msgid "Enter root password (leave blank to disable root): "
|
||||||
|
msgstr "Geben sie ein Root passwort ein (leer lassen um Root zu deaktivieren): "
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:307 lib/user_interaction.py:324
|
||||||
|
msgid "Password for user \"{}\": "
|
||||||
|
msgstr "Passwort für Benutzer \"{}\": "
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:405 lib/user_interaction.py:408
|
||||||
|
msgid "Verifying that additional packages exist (this might take a few seconds)"
|
||||||
|
msgstr "Angegebene Packete werden verifiziert (dies könnte einige Sekunden dauern)"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:281
|
||||||
|
msgid "Would you like to use automatic time synchronization (NTP) with the default time servers?\n"
|
||||||
|
msgstr "Möchten sie automatische Zeitsynchronisierung mit dem default Server einschalten?\n"
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:282
|
||||||
|
msgid ""
|
||||||
|
"Hardware time and other post-configuration steps might be required in order for NTP to work.\n"
|
||||||
|
"For more information, please check the Arch wiki"
|
||||||
|
msgstr ""
|
||||||
|
"Hardware Zeit und andere Einstellungsschritte könnten notwendig sein um NTP zu benutzen.\n"
|
||||||
|
"Für weitere Informationen wenden sie sich bitte an das Arch wiki"
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:411
|
||||||
|
msgid "Enter a username to create an additional user (leave blank to skip): "
|
||||||
|
msgstr "Geben sie einen weiteren Benutzernamen an der angelegt werden soll (leer lassen um zu Überspringen): "
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,351 +1,468 @@
|
||||||
#: lib/user_interaction.py:82
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: lib/installer.py:144
|
||||||
|
msgid "[!] A log file has been created here: {} {}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/installer.py:145
|
||||||
|
msgid " Please submit this issue (and file) to https://github.com/archlinux/archinstall/issues"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:83
|
||||||
msgid "Do you really want to abort?"
|
msgid "Do you really want to abort?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:100
|
#: lib/user_interaction.py:101 lib/user_interaction.py:104
|
||||||
msgid "And one more time for verification: "
|
msgid "And one more time for verification: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:271
|
#: lib/user_interaction.py:272 lib/user_interaction.py:275
|
||||||
msgid "Would you like to use swap on zram?"
|
msgid "Would you like to use swap on zram?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:277
|
#: lib/user_interaction.py:285 lib/user_interaction.py:288
|
||||||
msgid ""
|
|
||||||
"Would you like to use automatic time synchronization (NTP) with the default "
|
|
||||||
"time servers?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:278
|
|
||||||
msgid ""
|
|
||||||
"Hardware time and other post-configuration steps might be required in order "
|
|
||||||
"for NTP to work. For more information, please check the Arch wiki"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:284
|
|
||||||
msgid "Desired hostname for the installation: "
|
msgid "Desired hostname for the installation: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:289
|
#: lib/user_interaction.py:290 lib/user_interaction.py:293
|
||||||
msgid "Username for required superuser with sudo privileges: "
|
msgid "Username for required superuser with sudo privileges: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:303 lib/user_interaction.py:320
|
#: lib/user_interaction.py:310 lib/user_interaction.py:313
|
||||||
msgid "Password for user \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:309
|
|
||||||
msgid "Any additional users to install (leave blank for no users): "
|
msgid "Any additional users to install (leave blank for no users): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:323
|
#: lib/user_interaction.py:324 lib/user_interaction.py:327
|
||||||
msgid "Should this user be a superuser (sudoer)?"
|
msgid "Should this user be a superuser (sudoer)?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:339
|
#: lib/user_interaction.py:340 lib/user_interaction.py:343 lib/user_interaction.py:346
|
||||||
msgid "Select a timezone"
|
msgid "Select a timezone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:353
|
#: lib/user_interaction.py:354 lib/user_interaction.py:357 lib/user_interaction.py:360
|
||||||
msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?"
|
msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:363
|
#: lib/user_interaction.py:364 lib/user_interaction.py:367 lib/user_interaction.py:370
|
||||||
msgid "Choose a bootloader"
|
msgid "Choose a bootloader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:379
|
#: lib/user_interaction.py:380 lib/user_interaction.py:383 lib/user_interaction.py:386
|
||||||
msgid "Choose an audio server"
|
msgid "Choose an audio server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:390
|
#: lib/user_interaction.py:391 lib/user_interaction.py:394 lib/user_interaction.py:397
|
||||||
msgid ""
|
msgid "Only packages such as base, base-devel, linux, linux-firmware, efibootmgr and optional profile packages are installed."
|
||||||
"Only packages such as base, base-devel, linux, linux-firmware, efibootmgr "
|
|
||||||
"and optional profile packages are installed."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:391
|
#: lib/user_interaction.py:392 lib/user_interaction.py:395 lib/user_interaction.py:398
|
||||||
msgid ""
|
msgid "If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt."
|
||||||
"If you desire a web browser, such as firefox or chromium, you may specify it "
|
|
||||||
"in the following prompt."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:395
|
#: lib/user_interaction.py:396 lib/user_interaction.py:399 lib/user_interaction.py:402
|
||||||
msgid ""
|
msgid "Write additional packages to install (space separated, leave blank to skip): "
|
||||||
"Write additional packages to install (space separated, leave blank to skip): "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:418
|
#: lib/user_interaction.py:419 lib/user_interaction.py:422 lib/user_interaction.py:425
|
||||||
msgid "Copy ISO network configuration to installation"
|
msgid "Copy ISO network configuration to installation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:419
|
#: lib/user_interaction.py:420 lib/user_interaction.py:423 lib/user_interaction.py:426
|
||||||
msgid ""
|
msgid "Use NetworkManager (necessary to configure internet graphically in GNOME and KDE)"
|
||||||
"Use NetworkManager (necessary to configure internet graphically in GNOME and "
|
|
||||||
"KDE)"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:427
|
#: lib/user_interaction.py:428 lib/user_interaction.py:431 lib/user_interaction.py:434
|
||||||
msgid "Select one network interface to configure"
|
msgid "Select one network interface to configure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:440
|
#: lib/user_interaction.py:441 lib/user_interaction.py:444 lib/user_interaction.py:447
|
||||||
msgid ""
|
msgid "Select which mode to configure for \"{}\" or skip to use default mode \"{}\""
|
||||||
"Select which mode to configure for \"{}\" or skip to use default mode \"{}\""
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:445
|
#: lib/user_interaction.py:446 lib/user_interaction.py:449 lib/user_interaction.py:452
|
||||||
msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): "
|
msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:460
|
#: lib/user_interaction.py:461 lib/user_interaction.py:464 lib/user_interaction.py:467
|
||||||
msgid "Enter your gateway (router) IP address or leave blank for none: "
|
msgid "Enter your gateway (router) IP address or leave blank for none: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:475
|
#: lib/user_interaction.py:476 lib/user_interaction.py:479 lib/user_interaction.py:482
|
||||||
msgid "Enter your DNS servers (space separated, blank for none): "
|
msgid "Enter your DNS servers (space separated, blank for none): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:509
|
#: lib/user_interaction.py:510 lib/user_interaction.py:513 lib/user_interaction.py:516
|
||||||
msgid "Select which filesystem your main partition should use"
|
msgid "Select which filesystem your main partition should use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:555
|
#: lib/user_interaction.py:556 lib/user_interaction.py:559 lib/user_interaction.py:562
|
||||||
msgid "Current partition layout"
|
msgid "Current partition layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:606
|
#: lib/user_interaction.py:607 lib/user_interaction.py:614 lib/user_interaction.py:617 lib/user_interaction.py:620
|
||||||
msgid ""
|
msgid ""
|
||||||
"Select what to do with\n"
|
"Select what to do with\n"
|
||||||
"{}"
|
"{}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:623 lib/user_interaction.py:708
|
#: lib/user_interaction.py:624 lib/user_interaction.py:709 lib/user_interaction.py:631 lib/user_interaction.py:716 lib/user_interaction.py:634 lib/user_interaction.py:719 lib/user_interaction.py:637 lib/user_interaction.py:722
|
||||||
msgid "Enter a desired filesystem type for the partition"
|
msgid "Enter a desired filesystem type for the partition"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:625
|
#: lib/user_interaction.py:626 lib/user_interaction.py:633 lib/user_interaction.py:636 lib/user_interaction.py:639
|
||||||
msgid "Enter the start sector (percentage or block number, default: {}): "
|
msgid "Enter the start sector (percentage or block number, default: {}): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:634
|
#: lib/user_interaction.py:635 lib/user_interaction.py:642 lib/user_interaction.py:645 lib/user_interaction.py:648
|
||||||
msgid ""
|
msgid "Enter the end sector of the partition (percentage or block number, ex: {}): "
|
||||||
"Enter the end sector of the partition (percentage or block number, ex: {}): "
|
|
||||||
"\""
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:660
|
#: lib/user_interaction.py:661 lib/user_interaction.py:668 lib/user_interaction.py:671 lib/user_interaction.py:674
|
||||||
msgid "{} contains queued partitions, this will remove those, are you sure?"
|
msgid "{} contains queued partitions, this will remove those, are you sure?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:673
|
#: lib/user_interaction.py:674 lib/user_interaction.py:681 lib/user_interaction.py:684 lib/user_interaction.py:687
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select by index which partitions to delete"
|
"Select by index which partitions to delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:681
|
#: lib/user_interaction.py:682 lib/user_interaction.py:689 lib/user_interaction.py:692 lib/user_interaction.py:695
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select by index which partition to mount where"
|
"Select by index which partition to mount where"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:685
|
#: lib/user_interaction.py:686 lib/user_interaction.py:693 lib/user_interaction.py:696 lib/user_interaction.py:699
|
||||||
msgid ""
|
msgid " * Partition mount-points are relative to inside the installation, the boot would be /boot as an example."
|
||||||
" * Partition mount-points are relative to inside the installation, the boot "
|
|
||||||
"would be /boot as an example."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:686
|
#: lib/user_interaction.py:687 lib/user_interaction.py:694 lib/user_interaction.py:697 lib/user_interaction.py:700
|
||||||
msgid "Select where to mount partition (leave blank to remove mountpoint): "
|
msgid "Select where to mount partition (leave blank to remove mountpoint): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:697
|
#: lib/user_interaction.py:698 lib/user_interaction.py:705 lib/user_interaction.py:708 lib/user_interaction.py:711
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to mask for formatting"
|
"Select which partition to mask for formatting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:716
|
#: lib/user_interaction.py:717 lib/user_interaction.py:724 lib/user_interaction.py:727 lib/user_interaction.py:730
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to mark as encrypted"
|
"Select which partition to mark as encrypted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:724
|
#: lib/user_interaction.py:725 lib/user_interaction.py:732 lib/user_interaction.py:735 lib/user_interaction.py:738
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to mark as bootable"
|
"Select which partition to mark as bootable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:731
|
#: lib/user_interaction.py:732 lib/user_interaction.py:739 lib/user_interaction.py:742 lib/user_interaction.py:745
|
||||||
msgid ""
|
msgid ""
|
||||||
"{}\n"
|
"{}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select which partition to set a filesystem on"
|
"Select which partition to set a filesystem on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:738
|
#: lib/user_interaction.py:739 lib/user_interaction.py:746 lib/user_interaction.py:749 lib/user_interaction.py:752
|
||||||
msgid "Enter a desired filesystem type for the partition: "
|
msgid "Enter a desired filesystem type for the partition: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:759 lib/menu/selection_menu.py:116
|
#: lib/user_interaction.py:760 lib/menu/selection_menu.py:141 lib/user_interaction.py:767 lib/menu/selection_menu.py:139 lib/menu/selection_menu.py:143 lib/user_interaction.py:770 lib/user_interaction.py:773
|
||||||
msgid "Select Archinstall language"
|
msgid "Select Archinstall language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:764
|
#: lib/user_interaction.py:765 lib/user_interaction.py:772 lib/user_interaction.py:775 lib/user_interaction.py:778
|
||||||
msgid "Wipe all selected drives and use a best-effort default partition layout"
|
msgid "Wipe all selected drives and use a best-effort default partition layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:765
|
#: lib/user_interaction.py:766 lib/user_interaction.py:773 lib/user_interaction.py:776 lib/user_interaction.py:779
|
||||||
msgid ""
|
msgid "Select what to do with each individual drive (followed by partition usage)"
|
||||||
"Select what to do with each individual drive (followed by partition usage)"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:768
|
#: lib/user_interaction.py:769 lib/user_interaction.py:770 lib/user_interaction.py:777 lib/user_interaction.py:780 lib/user_interaction.py:783
|
||||||
msgid "Select what you wish to do with the selected block devices"
|
msgid "Select what you wish to do with the selected block devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:821
|
#: lib/user_interaction.py:822 lib/user_interaction.py:823 lib/user_interaction.py:830 lib/user_interaction.py:833 lib/user_interaction.py:836
|
||||||
msgid ""
|
msgid "This is a list of pre-programmed profiles, they might make it easier to install things like desktop environments"
|
||||||
"This is a list of pre-programmed profiles, they might make it easier to "
|
|
||||||
"install things like desktop environments"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:846
|
#: lib/user_interaction.py:846 lib/user_interaction.py:847 lib/user_interaction.py:854 lib/user_interaction.py:857 lib/user_interaction.py:860
|
||||||
msgid "Select Keyboard layout"
|
msgid "Select Keyboard layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:861
|
#: lib/user_interaction.py:861 lib/user_interaction.py:862 lib/user_interaction.py:869 lib/user_interaction.py:872 lib/user_interaction.py:875
|
||||||
msgid "Select one of the regions to download packages from"
|
msgid "Select one of the regions to download packages from"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:883
|
#: lib/user_interaction.py:883 lib/user_interaction.py:884 lib/user_interaction.py:891 lib/user_interaction.py:894 lib/user_interaction.py:897
|
||||||
msgid "Select one or more hard drives to use and configure"
|
msgid "Select one or more hard drives to use and configure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:910
|
#: lib/user_interaction.py:910 lib/user_interaction.py:911 lib/user_interaction.py:918 lib/user_interaction.py:921 lib/user_interaction.py:924
|
||||||
msgid ""
|
msgid "For the best compatibility with your AMD hardware, you may want to use either the all open-source or AMD / ATI options."
|
||||||
"For the best compatibility with your AMD hardware, you may want to use "
|
|
||||||
"either the all open-source or AMD / ATI options."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:912
|
#: lib/user_interaction.py:912 lib/user_interaction.py:913 lib/user_interaction.py:920 lib/user_interaction.py:923 lib/user_interaction.py:926
|
||||||
msgid ""
|
msgid "For the best compatibility with your Intel hardware, you may want to use either the all open-source or Intel options.\n"
|
||||||
"For the best compatibility with your Intel hardware, you may want to use "
|
|
||||||
"either the all open-source or Intel options.\n"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:914
|
#: lib/user_interaction.py:914 lib/user_interaction.py:915 lib/user_interaction.py:922 lib/user_interaction.py:925 lib/user_interaction.py:928
|
||||||
msgid ""
|
msgid "For the best compatibility with your Nvidia hardware, you may want to use the Nvidia proprietary driver.\n"
|
||||||
"For the best compatibility with your Nvidia hardware, you may want to use "
|
|
||||||
"the Nvidia proprietary driver.\n"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:917
|
#: lib/user_interaction.py:917 lib/user_interaction.py:918 lib/user_interaction.py:925 lib/user_interaction.py:928 lib/user_interaction.py:931
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Select a graphics driver or leave blank to install all open-source drivers"
|
"Select a graphics driver or leave blank to install all open-source drivers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:921
|
#: lib/user_interaction.py:921 lib/user_interaction.py:922 lib/user_interaction.py:929 lib/user_interaction.py:932 lib/user_interaction.py:935
|
||||||
msgid "All open-source (default)"
|
msgid "All open-source (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:940
|
#: lib/user_interaction.py:940 lib/user_interaction.py:941 lib/user_interaction.py:948 lib/user_interaction.py:951 lib/user_interaction.py:954
|
||||||
msgid "Choose which kernels to use or leave blank for default \"{}\""
|
msgid "Choose which kernels to use or leave blank for default \"{}\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:954
|
#: lib/user_interaction.py:954 lib/user_interaction.py:955 lib/user_interaction.py:962 lib/user_interaction.py:965 lib/user_interaction.py:968
|
||||||
msgid "Choose which locale language to use"
|
msgid "Choose which locale language to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:968
|
#: lib/user_interaction.py:968 lib/user_interaction.py:969 lib/user_interaction.py:976 lib/user_interaction.py:979 lib/user_interaction.py:982
|
||||||
msgid "Choose which locale encoding to use"
|
msgid "Choose which locale encoding to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:1009
|
#: lib/user_interaction.py:1009 lib/user_interaction.py:1010 lib/user_interaction.py:1017 lib/user_interaction.py:1020 lib/user_interaction.py:1023
|
||||||
msgid "Select one of the values shown below: "
|
msgid "Select one of the values shown below: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/user_interaction.py:1050
|
#: lib/user_interaction.py:1050 lib/user_interaction.py:1051 lib/user_interaction.py:1058 lib/user_interaction.py:1061 lib/user_interaction.py:1064
|
||||||
msgid "Select one or more of the options below: "
|
msgid "Select one or more of the options below: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:122
|
#: lib/disk/filesystem.py:86
|
||||||
|
msgid "Adding partition...."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/disk/filesystem.py:139 lib/disk/filesystem.py:141
|
||||||
|
msgid "You need to enter a valid fs-type in order to continue. See `man parted` for valid fs-type's."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/profiles.py:89
|
||||||
|
msgid "Error: Listing profiles on URL \"{}\" resulted in:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/profiles.py:92
|
||||||
|
msgid "Error: Could not decode \"{}\" result as JSON:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:146 lib/menu/selection_menu.py:144 lib/menu/selection_menu.py:148
|
||||||
msgid "Select keyboard layout"
|
msgid "Select keyboard layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:125
|
#: lib/menu/selection_menu.py:149 lib/menu/selection_menu.py:147 lib/menu/selection_menu.py:151
|
||||||
msgid "Select mirror region"
|
msgid "Select mirror region"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:130
|
#: lib/menu/selection_menu.py:154 lib/menu/selection_menu.py:152 lib/menu/selection_menu.py:156
|
||||||
msgid "Select locale language"
|
msgid "Select locale language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:132
|
#: lib/menu/selection_menu.py:156 lib/menu/selection_menu.py:154 lib/menu/selection_menu.py:158
|
||||||
msgid "Select locale encoding"
|
msgid "Select locale encoding"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:135
|
#: lib/menu/selection_menu.py:159 lib/menu/selection_menu.py:157 lib/menu/selection_menu.py:161
|
||||||
msgid "Select harddrives"
|
msgid "Select harddrives"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:139
|
#: lib/menu/selection_menu.py:163 lib/menu/selection_menu.py:161 lib/menu/selection_menu.py:165
|
||||||
msgid "Select disk layout"
|
msgid "Select disk layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:147
|
#: lib/menu/selection_menu.py:171 lib/menu/selection_menu.py:169 lib/menu/selection_menu.py:173
|
||||||
msgid "Set encryption password"
|
msgid "Set encryption password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:153
|
#: lib/menu/selection_menu.py:177 lib/menu/selection_menu.py:175 lib/menu/selection_menu.py:179
|
||||||
msgid "Use swap"
|
msgid "Use swap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:158
|
#: lib/menu/selection_menu.py:182 lib/menu/selection_menu.py:180 lib/menu/selection_menu.py:184
|
||||||
msgid "Select bootloader"
|
msgid "Select bootloader"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:164
|
#: lib/menu/selection_menu.py:188 lib/menu/selection_menu.py:186 lib/menu/selection_menu.py:190
|
||||||
msgid "Set root password"
|
msgid "Set root password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:169
|
#: lib/menu/selection_menu.py:193 lib/menu/selection_menu.py:191 lib/menu/selection_menu.py:195
|
||||||
msgid "Specify superuser account"
|
msgid "Specify superuser account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:175
|
#: lib/menu/selection_menu.py:199 lib/menu/selection_menu.py:197 lib/menu/selection_menu.py:201
|
||||||
msgid "Specify user account"
|
msgid "Specify user account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:181
|
#: lib/menu/selection_menu.py:205 lib/menu/selection_menu.py:203 lib/menu/selection_menu.py:207
|
||||||
msgid "Specify profile"
|
msgid "Specify profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:186
|
#: lib/menu/selection_menu.py:210 lib/menu/selection_menu.py:208 lib/menu/selection_menu.py:212
|
||||||
msgid "Select audio"
|
msgid "Select audio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:190
|
#: lib/menu/selection_menu.py:214 lib/menu/selection_menu.py:212 lib/menu/selection_menu.py:216
|
||||||
msgid "Select kernels"
|
msgid "Select kernels"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:195
|
#: lib/menu/selection_menu.py:219 lib/menu/selection_menu.py:217 lib/menu/selection_menu.py:221
|
||||||
msgid "Additional packages to install"
|
msgid "Additional packages to install"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:200
|
#: lib/menu/selection_menu.py:224 lib/menu/selection_menu.py:222 lib/menu/selection_menu.py:226
|
||||||
msgid "Configure network"
|
msgid "Configure network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:208
|
#: lib/menu/selection_menu.py:232 lib/menu/selection_menu.py:230 lib/menu/selection_menu.py:234
|
||||||
msgid "Set automatic time sync (NTP)"
|
msgid "Set automatic time sync (NTP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:310 lib/menu/selection_menu.py:308 lib/menu/selection_menu.py:315
|
||||||
|
msgid "Install ({} config(s) missing)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:373 lib/menu/selection_menu.py:371 lib/menu/selection_menu.py:378
|
||||||
|
msgid ""
|
||||||
|
"You decided to skip harddrive selection\n"
|
||||||
|
"and will use whatever drive-setup is mounted at {} (experimental)\n"
|
||||||
|
"WARNING: Archinstall won't check the suitability of this setup\n"
|
||||||
|
"Do you wish to continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/disk/filesystem.py:97
|
||||||
|
msgid "Re-using partition instance: {}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:590 lib/user_interaction.py:593 lib/user_interaction.py:596
|
||||||
|
msgid "Create a new partition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:592 lib/user_interaction.py:595 lib/user_interaction.py:598
|
||||||
|
msgid "Delete a partition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:593 lib/user_interaction.py:596 lib/user_interaction.py:599
|
||||||
|
msgid "Clear/Delete all partitions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:594 lib/user_interaction.py:597 lib/user_interaction.py:600
|
||||||
|
msgid "Assign mount-point for a partition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:595 lib/user_interaction.py:598 lib/user_interaction.py:601
|
||||||
|
msgid "Mark/Unmark a partition to be formatted (wipes data)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:596 lib/user_interaction.py:599 lib/user_interaction.py:602
|
||||||
|
msgid "Mark/Unmark a partition as encrypted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:597 lib/user_interaction.py:600 lib/user_interaction.py:603
|
||||||
|
msgid "Mark/Unmark a partition as bootable (automatic for /boot)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:598 lib/user_interaction.py:601 lib/user_interaction.py:604
|
||||||
|
msgid "Set desired filesystem for a partition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:239 lib/menu/selection_menu.py:237 lib/menu/selection_menu.py:241 lib/menu/selection_menu.py:270
|
||||||
|
msgid "Abort"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:183 lib/menu/selection_menu.py:187
|
||||||
|
msgid "Specify hostname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:228
|
||||||
|
msgid "Not configured, unavailable unless setup manually"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:231
|
||||||
|
msgid "Select timezone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:266
|
||||||
|
msgid "Set/Modify the below options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:272
|
||||||
|
msgid "Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/menu.py:68
|
||||||
|
msgid ""
|
||||||
|
"Use ESC to skip\n"
|
||||||
|
"\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:591 lib/user_interaction.py:594 lib/user_interaction.py:597
|
||||||
|
msgid "Suggest partition layout"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:101
|
||||||
|
msgid "Enter a password: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/disk/filesystem.py:117
|
||||||
|
msgid "Enter a encryption password for {}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:174
|
||||||
|
msgid "Enter disk encryption password (leave blank for no encryption): "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:407
|
||||||
|
msgid "Create a required super-user with sudo privileges: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:347
|
||||||
|
msgid "Enter root password (leave blank to disable root): "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:307 lib/user_interaction.py:324
|
||||||
|
msgid "Password for user \"{}\": "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:405 lib/user_interaction.py:408
|
||||||
|
msgid "Verifying that additional packages exist (this might take a few seconds)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:281
|
||||||
|
msgid "Would you like to use automatic time synchronization (NTP) with the default time servers?\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/user_interaction.py:282
|
||||||
|
msgid ""
|
||||||
|
"Hardware time and other post-configuration steps might be required in order for NTP to work.\n"
|
||||||
|
"For more information, please check the Arch wiki"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/menu/selection_menu.py:411
|
||||||
|
msgid "Enter a username to create an additional user (leave blank to skip): "
|
||||||
|
msgstr ""
|
||||||
|
|
|
||||||
|
|
@ -1,359 +0,0 @@
|
||||||
#: lib/user_interaction.py:82
|
|
||||||
msgid "Do you really want to abort?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:100
|
|
||||||
msgid "And one more time for verification: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:271
|
|
||||||
msgid "Would you like to use swap on zram?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:277
|
|
||||||
msgid ""
|
|
||||||
"Would you like to use automatic time synchronization (NTP) with the default "
|
|
||||||
"time servers?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:278
|
|
||||||
msgid ""
|
|
||||||
"Hardware time and other post-configuration steps might be required in order "
|
|
||||||
"for NTP to work. For more information, please check the Arch wiki"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:284
|
|
||||||
msgid "Desired hostname for the installation: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:289
|
|
||||||
msgid "Username for required superuser with sudo privileges: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:303 lib/user_interaction.py:320
|
|
||||||
msgid "Password for user \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:309
|
|
||||||
msgid "Any additional users to install (leave blank for no users): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:323
|
|
||||||
msgid "Should this user be a superuser (sudoer)?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:339
|
|
||||||
msgid "Select a timezone"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:353
|
|
||||||
msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:363
|
|
||||||
msgid "Choose a bootloader"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:379
|
|
||||||
msgid "Choose an audio server"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:390
|
|
||||||
msgid ""
|
|
||||||
"Only packages such as base, base-devel, linux, linux-firmware, efibootmgr "
|
|
||||||
"and optional profile packages are installed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:391
|
|
||||||
msgid ""
|
|
||||||
"If you desire a web browser, such as firefox or chromium, you may specify it "
|
|
||||||
"in the following prompt."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:395
|
|
||||||
msgid ""
|
|
||||||
"Write additional packages to install (space separated, leave blank to skip): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:418
|
|
||||||
msgid "Copy ISO network configuration to installation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:419
|
|
||||||
msgid ""
|
|
||||||
"Use NetworkManager (necessary to configure internet graphically in GNOME and "
|
|
||||||
"KDE)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:427
|
|
||||||
msgid "Select one network interface to configure"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:440
|
|
||||||
msgid ""
|
|
||||||
"Select which mode to configure for \"{}\" or skip to use default mode \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:445
|
|
||||||
msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:460
|
|
||||||
msgid "Enter your gateway (router) IP address or leave blank for none: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:475
|
|
||||||
msgid "Enter your DNS servers (space separated, blank for none): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:509
|
|
||||||
msgid "Select which filesystem your main partition should use"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:555
|
|
||||||
msgid "Current partition layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:606
|
|
||||||
msgid ""
|
|
||||||
"Select what to do with\n"
|
|
||||||
"{}"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:623 lib/user_interaction.py:708
|
|
||||||
msgid "Enter a desired filesystem type for the partition"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:625
|
|
||||||
msgid "Enter the start sector (percentage or block number, default: {}): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:634
|
|
||||||
msgid ""
|
|
||||||
"Enter the end sector of the partition (percentage or block number, ex: {}): "
|
|
||||||
"\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:660
|
|
||||||
msgid "{} contains queued partitions, this will remove those, are you sure?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:673
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select by index which partitions to delete"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:681
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select by index which partition to mount where"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:685
|
|
||||||
msgid ""
|
|
||||||
" * Partition mount-points are relative to inside the installation, the boot "
|
|
||||||
"would be /boot as an example."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:686
|
|
||||||
msgid "Select where to mount partition (leave blank to remove mountpoint): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:697
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to mask for formatting"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:716
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to mark as encrypted"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:724
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to mark as bootable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:731
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to set a filesystem on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:738
|
|
||||||
msgid "Enter a desired filesystem type for the partition: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:759
|
|
||||||
msgid "Select archinstall language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:764
|
|
||||||
msgid "Wipe all selected drives and use a best-effort default partition layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:765
|
|
||||||
msgid ""
|
|
||||||
"Select what to do with each individual drive (followed by partition usage)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:768
|
|
||||||
msgid "Select what you wish to do with the selected block devices"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:821
|
|
||||||
msgid ""
|
|
||||||
"This is a list of pre-programmed profiles, they might make it easier to "
|
|
||||||
"install things like desktop environments"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:846
|
|
||||||
msgid "Select Keyboard layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:861
|
|
||||||
msgid "Select one of the regions to download packages from"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:883
|
|
||||||
msgid "Select one or more hard drives to use and configure"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:910
|
|
||||||
msgid ""
|
|
||||||
"For the best compatibility with your AMD hardware, you may want to use "
|
|
||||||
"either the all open-source or AMD / ATI options."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:912
|
|
||||||
msgid ""
|
|
||||||
"For the best compatibility with your Intel hardware, you may want to use "
|
|
||||||
"either the all open-source or Intel options.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:914
|
|
||||||
msgid ""
|
|
||||||
"For the best compatibility with your Nvidia hardware, you may want to use "
|
|
||||||
"the Nvidia proprietary driver.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:917
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
"Select a graphics driver or leave blank to install all open-source drivers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:921
|
|
||||||
msgid "All open-source (default)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:940
|
|
||||||
msgid "Choose which kernels to use or leave blank for default \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:954
|
|
||||||
msgid "Choose which locale language to use"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:968
|
|
||||||
msgid "Choose which locale encoding to use"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:1009
|
|
||||||
msgid "Select one of the values shown below: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:1050
|
|
||||||
msgid "Select one or more of the options below: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:116
|
|
||||||
msgid "Archinstall language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:122
|
|
||||||
msgid "Select keyboard layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:125
|
|
||||||
msgid "Select mirror region"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:130
|
|
||||||
msgid "Select locale language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:132
|
|
||||||
msgid "Select locale encoding"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:135
|
|
||||||
msgid "Select harddrives"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:139
|
|
||||||
msgid "Select disk layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:147
|
|
||||||
msgid "Set encryption password"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:153
|
|
||||||
msgid "Use swap"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:158
|
|
||||||
msgid "Select bootloader"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:164
|
|
||||||
msgid "Set root password"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:169
|
|
||||||
msgid "Specify superuser account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:175
|
|
||||||
msgid "Specify user account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:181
|
|
||||||
msgid "Specify profile"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:186
|
|
||||||
msgid "Select audio"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:190
|
|
||||||
msgid "Select kernels"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:195
|
|
||||||
msgid "Additional packages to install"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:200
|
|
||||||
msgid "Configure network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:208
|
|
||||||
msgid "Set automatic time sync (NTP)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:759 lib/menu/selection_menu.py:116
|
|
||||||
msgid "Select Archinstall language"
|
|
||||||
msgstr ""
|
|
||||||
Binary file not shown.
|
|
@ -1,354 +0,0 @@
|
||||||
#: lib/user_interaction.py:82
|
|
||||||
msgid "Do you really want to abort?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:100
|
|
||||||
msgid "And one more time for verification: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:271
|
|
||||||
msgid "Would you like to use swap on zram?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:277
|
|
||||||
msgid ""
|
|
||||||
"Would you like to use automatic time synchronization (NTP) with the default "
|
|
||||||
"time servers?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:278
|
|
||||||
msgid ""
|
|
||||||
"Hardware time and other post-configuration steps might be required in order "
|
|
||||||
"for NTP to work. For more information, please check the Arch wiki"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:284
|
|
||||||
msgid "Desired hostname for the installation: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:289
|
|
||||||
msgid "Username for required superuser with sudo privileges: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:303 lib/user_interaction.py:320
|
|
||||||
msgid "Password for user \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:309
|
|
||||||
msgid "Any additional users to install (leave blank for no users): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:323
|
|
||||||
msgid "Should this user be a superuser (sudoer)?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:339
|
|
||||||
msgid "Select a timezone"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:353
|
|
||||||
msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:363
|
|
||||||
msgid "Choose a bootloader"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:379
|
|
||||||
msgid "Choose an audio server"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:390
|
|
||||||
msgid ""
|
|
||||||
"Only packages such as base, base-devel, linux, linux-firmware, efibootmgr "
|
|
||||||
"and optional profile packages are installed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:391
|
|
||||||
msgid ""
|
|
||||||
"If you desire a web browser, such as firefox or chromium, you may specify it "
|
|
||||||
"in the following prompt."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:395
|
|
||||||
msgid ""
|
|
||||||
"Write additional packages to install (space separated, leave blank to skip): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:418
|
|
||||||
msgid "Copy ISO network configuration to installation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:419
|
|
||||||
msgid ""
|
|
||||||
"Use NetworkManager (necessary to configure internet graphically in GNOME and "
|
|
||||||
"KDE)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:427
|
|
||||||
msgid "Select one network interface to configure"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:440
|
|
||||||
msgid ""
|
|
||||||
"Select which mode to configure for \"{}\" or skip to use default mode \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:445
|
|
||||||
msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:460
|
|
||||||
msgid "Enter your gateway (router) IP address or leave blank for none: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:475
|
|
||||||
msgid "Enter your DNS servers (space separated, blank for none): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:509
|
|
||||||
msgid "Select which filesystem your main partition should use"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:555
|
|
||||||
msgid "Current partition layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:606
|
|
||||||
msgid ""
|
|
||||||
"Select what to do with\n"
|
|
||||||
"{}"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:623 lib/user_interaction.py:708
|
|
||||||
msgid "Enter a desired filesystem type for the partition"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:625
|
|
||||||
msgid "Enter the start sector (percentage or block number, default: {}): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:634
|
|
||||||
msgid ""
|
|
||||||
"Enter the end sector of the partition (percentage or block number, ex: {}): "
|
|
||||||
"\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:660
|
|
||||||
msgid "{} contains queued partitions, this will remove those, are you sure?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:673
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select by index which partitions to delete"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:681
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select by index which partition to mount where"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:685
|
|
||||||
msgid ""
|
|
||||||
" * Partition mount-points are relative to inside the installation, the boot "
|
|
||||||
"would be /boot as an example."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:686
|
|
||||||
msgid "Select where to mount partition (leave blank to remove mountpoint): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:697
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to mask for formatting"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:716
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to mark as encrypted"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:724
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to mark as bootable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:731
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to set a filesystem on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:738
|
|
||||||
msgid "Enter a desired filesystem type for the partition: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:759 lib/menu/selection_menu.py:116
|
|
||||||
msgid "Select Archinstall language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:764
|
|
||||||
msgid "Wipe all selected drives and use a best-effort default partition layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:765
|
|
||||||
msgid ""
|
|
||||||
"Select what to do with each individual drive (followed by partition usage)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:768
|
|
||||||
msgid "Select what you wish to do with the selected block devices"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:821
|
|
||||||
msgid ""
|
|
||||||
"This is a list of pre-programmed profiles, they might make it easier to "
|
|
||||||
"install things like desktop environments"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:846
|
|
||||||
msgid "Select Keyboard layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:861
|
|
||||||
msgid "Select one of the regions to download packages from"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:883
|
|
||||||
msgid "Select one or more hard drives to use and configure"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:910
|
|
||||||
msgid ""
|
|
||||||
"For the best compatibility with your AMD hardware, you may want to use "
|
|
||||||
"either the all open-source or AMD / ATI options."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:912
|
|
||||||
msgid ""
|
|
||||||
"For the best compatibility with your Intel hardware, you may want to use "
|
|
||||||
"either the all open-source or Intel options.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:914
|
|
||||||
msgid ""
|
|
||||||
"For the best compatibility with your Nvidia hardware, you may want to use "
|
|
||||||
"the Nvidia proprietary driver.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:917
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
"Select a graphics driver or leave blank to install all open-source drivers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:921
|
|
||||||
msgid "All open-source (default)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:940
|
|
||||||
msgid "Choose which kernels to use or leave blank for default \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:954
|
|
||||||
msgid "Choose which locale language to use"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:968
|
|
||||||
msgid "Choose which locale encoding to use"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:1009
|
|
||||||
msgid "Select one of the values shown below: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:1050
|
|
||||||
msgid "Select one or more of the options below: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:122
|
|
||||||
msgid "Select keyboard layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:125
|
|
||||||
msgid "Select mirror region"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:130
|
|
||||||
msgid "Select locale language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:132
|
|
||||||
msgid "Select locale encoding"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:135
|
|
||||||
msgid "Select harddrives"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:139
|
|
||||||
msgid "Select disk layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:147
|
|
||||||
msgid "Set encryption password"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:153
|
|
||||||
msgid "Use swap"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:158
|
|
||||||
msgid "Select bootloader"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:164
|
|
||||||
msgid "Set root password"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:169
|
|
||||||
msgid "Specify superuser account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:175
|
|
||||||
msgid "Specify user account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:181
|
|
||||||
msgid "Specify profile"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:186
|
|
||||||
msgid "Select audio"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:190
|
|
||||||
msgid "Select kernels"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:195
|
|
||||||
msgid "Additional packages to install"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:200
|
|
||||||
msgid "Configure network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:208
|
|
||||||
msgid "Set automatic time sync (NTP)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#~ msgid "this is a test string"
|
|
||||||
#~ msgstr "Questo e un esempio"
|
|
||||||
|
|
@ -1,362 +0,0 @@
|
||||||
#: lib/user_interaction.py:82
|
|
||||||
msgid "Do you really want to abort?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:100
|
|
||||||
msgid "And one more time for verification: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:271
|
|
||||||
msgid "Would you like to use swap on zram?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:277
|
|
||||||
msgid ""
|
|
||||||
"Would you like to use automatic time synchronization (NTP) with the default "
|
|
||||||
"time servers?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:278
|
|
||||||
msgid ""
|
|
||||||
"Hardware time and other post-configuration steps might be required in order "
|
|
||||||
"for NTP to work. For more information, please check the Arch wiki"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:284
|
|
||||||
msgid "Desired hostname for the installation: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:289
|
|
||||||
msgid "Username for required superuser with sudo privileges: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:303 lib/user_interaction.py:320
|
|
||||||
msgid "Password for user \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:309
|
|
||||||
msgid "Any additional users to install (leave blank for no users): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:323
|
|
||||||
msgid "Should this user be a superuser (sudoer)?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:339
|
|
||||||
msgid "Select a timezone"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:353
|
|
||||||
msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:363
|
|
||||||
msgid "Choose a bootloader"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:379
|
|
||||||
msgid "Choose an audio server"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:390
|
|
||||||
msgid ""
|
|
||||||
"Only packages such as base, base-devel, linux, linux-firmware, efibootmgr "
|
|
||||||
"and optional profile packages are installed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:391
|
|
||||||
msgid ""
|
|
||||||
"If you desire a web browser, such as firefox or chromium, you may specify it "
|
|
||||||
"in the following prompt."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:395
|
|
||||||
msgid ""
|
|
||||||
"Write additional packages to install (space separated, leave blank to skip): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:418
|
|
||||||
msgid "Copy ISO network configuration to installation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:419
|
|
||||||
msgid ""
|
|
||||||
"Use NetworkManager (necessary to configure internet graphically in GNOME and "
|
|
||||||
"KDE)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:427
|
|
||||||
msgid "Select one network interface to configure"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:440
|
|
||||||
msgid ""
|
|
||||||
"Select which mode to configure for \"{}\" or skip to use default mode \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:445
|
|
||||||
msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:460
|
|
||||||
msgid "Enter your gateway (router) IP address or leave blank for none: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:475
|
|
||||||
msgid "Enter your DNS servers (space separated, blank for none): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:509
|
|
||||||
msgid "Select which filesystem your main partition should use"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:555
|
|
||||||
msgid "Current partition layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:606
|
|
||||||
msgid ""
|
|
||||||
"Select what to do with\n"
|
|
||||||
"{}"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:623 lib/user_interaction.py:708
|
|
||||||
msgid "Enter a desired filesystem type for the partition"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:625
|
|
||||||
msgid "Enter the start sector (percentage or block number, default: {}): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:634
|
|
||||||
msgid ""
|
|
||||||
"Enter the end sector of the partition (percentage or block number, ex: {}): "
|
|
||||||
"\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:660
|
|
||||||
msgid "{} contains queued partitions, this will remove those, are you sure?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:673
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select by index which partitions to delete"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:681
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select by index which partition to mount where"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:685
|
|
||||||
msgid ""
|
|
||||||
" * Partition mount-points are relative to inside the installation, the boot "
|
|
||||||
"would be /boot as an example."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:686
|
|
||||||
msgid "Select where to mount partition (leave blank to remove mountpoint): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:697
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to mask for formatting"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:716
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to mark as encrypted"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:724
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to mark as bootable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:731
|
|
||||||
msgid ""
|
|
||||||
"{}\n"
|
|
||||||
"\n"
|
|
||||||
"Select which partition to set a filesystem on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:738
|
|
||||||
msgid "Enter a desired filesystem type for the partition: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:759
|
|
||||||
msgid "Select archinstall language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:764
|
|
||||||
msgid "Wipe all selected drives and use a best-effort default partition layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:765
|
|
||||||
msgid ""
|
|
||||||
"Select what to do with each individual drive (followed by partition usage)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:768
|
|
||||||
msgid "Select what you wish to do with the selected block devices"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:821
|
|
||||||
msgid ""
|
|
||||||
"This is a list of pre-programmed profiles, they might make it easier to "
|
|
||||||
"install things like desktop environments"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:846
|
|
||||||
msgid "Select Keyboard layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:861
|
|
||||||
msgid "Select one of the regions to download packages from"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:883
|
|
||||||
msgid "Select one or more hard drives to use and configure"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:910
|
|
||||||
msgid ""
|
|
||||||
"For the best compatibility with your AMD hardware, you may want to use "
|
|
||||||
"either the all open-source or AMD / ATI options."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:912
|
|
||||||
msgid ""
|
|
||||||
"For the best compatibility with your Intel hardware, you may want to use "
|
|
||||||
"either the all open-source or Intel options.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:914
|
|
||||||
msgid ""
|
|
||||||
"For the best compatibility with your Nvidia hardware, you may want to use "
|
|
||||||
"the Nvidia proprietary driver.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:917
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
"Select a graphics driver or leave blank to install all open-source drivers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:921
|
|
||||||
msgid "All open-source (default)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:940
|
|
||||||
msgid "Choose which kernels to use or leave blank for default \"{}\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:954
|
|
||||||
msgid "Choose which locale language to use"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:968
|
|
||||||
msgid "Choose which locale encoding to use"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:1009
|
|
||||||
msgid "Select one of the values shown below: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:1050
|
|
||||||
msgid "Select one or more of the options below: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:116
|
|
||||||
msgid "Archinstall language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:122
|
|
||||||
msgid "Select keyboard layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:125
|
|
||||||
msgid "Select mirror region"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:130
|
|
||||||
msgid "Select locale language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:132
|
|
||||||
msgid "Select locale encoding"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:135
|
|
||||||
msgid "Select harddrives"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:139
|
|
||||||
msgid "Select disk layout"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:147
|
|
||||||
msgid "Set encryption password"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:153
|
|
||||||
msgid "Use swap"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:158
|
|
||||||
msgid "Select bootloader"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:164
|
|
||||||
msgid "Set root password"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:169
|
|
||||||
msgid "Specify superuser account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:175
|
|
||||||
msgid "Specify user account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:181
|
|
||||||
msgid "Specify profile"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:186
|
|
||||||
msgid "Select audio"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:190
|
|
||||||
msgid "Select kernels"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:195
|
|
||||||
msgid "Additional packages to install"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:200
|
|
||||||
msgid "Configure network"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/menu/selection_menu.py:208
|
|
||||||
msgid "Set automatic time sync (NTP)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/user_interaction.py:759 lib/menu/selection_menu.py:116
|
|
||||||
msgid "Select Archinstall language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#~ msgid "this is a test string"
|
|
||||||
#~ msgstr "Questo e un esempio"
|
|
||||||
|
|
@ -8,7 +8,7 @@ if archinstall.arguments.get('help'):
|
||||||
print("See `man archinstall` for help.")
|
print("See `man archinstall` for help.")
|
||||||
exit(0)
|
exit(0)
|
||||||
if os.getuid() != 0:
|
if os.getuid() != 0:
|
||||||
print("Archinstall requires root privileges to run. See --help for more.")
|
print(_("Archinstall requires root privileges to run. See --help for more."))
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
# Log various information about hardware before starting the installation. This might assist in troubleshooting
|
# Log various information about hardware before starting the installation. This might assist in troubleshooting
|
||||||
|
|
@ -97,7 +97,7 @@ def perform_filesystem_operations():
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if archinstall.arguments.get('harddrives', None):
|
if archinstall.arguments.get('harddrives', None):
|
||||||
print(f" ! Formatting {archinstall.arguments['harddrives']} in ", end='')
|
print(_(f" ! Formatting {archinstall.arguments['harddrives']} in "), end='')
|
||||||
archinstall.do_countdown()
|
archinstall.do_countdown()
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
@ -113,6 +113,7 @@ def perform_filesystem_operations():
|
||||||
with archinstall.Filesystem(drive, mode) as fs:
|
with archinstall.Filesystem(drive, mode) as fs:
|
||||||
fs.load_layout(archinstall.arguments['disk_layouts'][drive.path])
|
fs.load_layout(archinstall.arguments['disk_layouts'][drive.path])
|
||||||
|
|
||||||
|
|
||||||
def perform_installation(mountpoint):
|
def perform_installation(mountpoint):
|
||||||
"""
|
"""
|
||||||
Performs the installation steps on a block device.
|
Performs the installation steps on a block device.
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ def ask_harddrives():
|
||||||
|
|
||||||
# Get disk encryption password (or skip if blank)
|
# Get disk encryption password (or skip if blank)
|
||||||
if archinstall.arguments.get('!encryption-password', None) is None:
|
if archinstall.arguments.get('!encryption-password', None) is None:
|
||||||
if passwd := archinstall.get_password(prompt='Enter disk encryption password (leave blank for no encryption): '):
|
if passwd := archinstall.get_password(prompt=str(_('Enter disk encryption password (leave blank for no encryption): '))):
|
||||||
archinstall.arguments['!encryption-password'] = passwd
|
archinstall.arguments['!encryption-password'] = passwd
|
||||||
|
|
||||||
if archinstall.arguments.get('!encryption-password', None):
|
if archinstall.arguments.get('!encryption-password', None):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue