From 90cccb94242e5940a71e37f7fa91b471f4ded772 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Wed, 14 Sep 2016 00:34:57 +0000 Subject: [PATCH 1/5] Automatic merge of Transifex translations --- lang/calamares_pl.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index 2d2e422e6..df12c7662 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -421,7 +421,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. Reuse %1 as home partition for %2. - + Użyj ponownie %1 jako partycji domowej dla %2. @@ -584,7 +584,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. En&crypt - + Zaszy%fruj @@ -1036,17 +1036,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. Frame - + Ramka group - + grupa description - + opis @@ -1197,13 +1197,13 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. The system language will be set to %1. - + Język systemu zostanie ustawiony na %1. The numbers and dates locale will be set to %1. - + Format liczb i daty zostanie ustawiony na %1. @@ -1230,7 +1230,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. %1 (%2) Language (Country) - + %1 (%2) @@ -1308,7 +1308,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. Package selection - + Wybór pakietów @@ -1435,7 +1435,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. New partition - + Nowa partycja From 0ad215bcca6e84f0c8470b5ccd8210a9557ba7b0 Mon Sep 17 00:00:00 2001 From: Kevin Kofler Date: Fri, 16 Sep 2016 07:55:04 +0200 Subject: [PATCH 2/5] users: Drop dependency on chfn. (#260) Pass the full name directly to useradd instead, using the "-c" (comment) parameter, which is "currently used as the field for the user's full name" according to the documentation. The chfn utility is no longer installed by default on current Fedora releases due to its dependency on libuser. (They split out chfn and chsh from util-linux into an optional subpackage.) It could be added as a dependency of Calamares, but since it is needed inside the chroot, it has to be on the base live image, not the overlay. Thus, to allow testing Calamares with a simple "dnf install calamares" again, the dependency needs to go away. And it is unnecessary anyway. --- src/modules/users/CreateUserJob.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/modules/users/CreateUserJob.cpp b/src/modules/users/CreateUserJob.cpp index 556ff9d89..92043045c 100644 --- a/src/modules/users/CreateUserJob.cpp +++ b/src/modules/users/CreateUserJob.cpp @@ -155,6 +155,8 @@ CreateUserJob::exec() "-U", "-G", defaultGroups, + "-c", + m_fullName, m_userName } ); if ( ec ) return Calamares::JobResult::error( tr( "Cannot create user %1." ) @@ -162,13 +164,6 @@ CreateUserJob::exec() tr( "useradd terminated with error code %1." ) .arg( ec ) ); - ec = CalamaresUtils::System::instance()->targetEnvCall( { "chfn", "-f", m_fullName, m_userName } ); - if ( ec ) - return Calamares::JobResult::error( tr( "Cannot set full name for user %1." ) - .arg( m_userName ), - tr( "chfn terminated with error code %1." ) - .arg( ec ) ); - ec = CalamaresUtils::System::instance()-> targetEnvCall( { "chown", "-R", From a48dadf7571b6bcc2a95d0d3eef8f6b61f9050a5 Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Fri, 16 Sep 2016 10:52:42 +0200 Subject: [PATCH 3/5] Warning in debug output when the RequirementsChecker is misconfigured. CAL-390 #close --- src/modules/welcome/WelcomeViewStep.cpp | 4 ++++ .../welcome/checker/RequirementsChecker.cpp | 21 +++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/src/modules/welcome/WelcomeViewStep.cpp b/src/modules/welcome/WelcomeViewStep.cpp index ca24254e8..3c9d29993 100644 --- a/src/modules/welcome/WelcomeViewStep.cpp +++ b/src/modules/welcome/WelcomeViewStep.cpp @@ -20,6 +20,7 @@ #include "WelcomePage.h" #include "checker/RequirementsChecker.h" +#include "utils/Logger.h" #include @@ -128,5 +129,8 @@ WelcomeViewStep::setConfigurationMap( const QVariantMap& configurationMap ) if ( configurationMap.contains( "requirements" ) && configurationMap.value( "requirements" ).type() == QVariant::Map ) m_requirementsChecker->setConfigurationMap( configurationMap.value( "requirements" ).toMap() ); + else + cDebug() << "WARNING: no valid requirements map found in welcome " + "module configuration."; } diff --git a/src/modules/welcome/checker/RequirementsChecker.cpp b/src/modules/welcome/checker/RequirementsChecker.cpp index 0a7233e3d..a8207a876 100644 --- a/src/modules/welcome/checker/RequirementsChecker.cpp +++ b/src/modules/welcome/checker/RequirementsChecker.cpp @@ -185,6 +185,7 @@ RequirementsChecker::widget() const void RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap ) { + bool incompleteConfiguration = false; if ( configurationMap.contains( "requiredStorage" ) && ( configurationMap.value( "requiredStorage" ).type() == QVariant::Double || configurationMap.value( "requiredStorage" ).type() == QVariant::Int ) ) @@ -199,6 +200,7 @@ RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap ) else { m_requiredStorageGB = 3.; + incompleteConfiguration = true; } if ( configurationMap.contains( "requiredRam" ) && @@ -208,11 +210,15 @@ RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap ) bool ok = false; m_requiredRamGB = configurationMap.value( "requiredRam" ).toDouble( &ok ); if ( !ok ) + { m_requiredRamGB = 1.; + incompleteConfiguration = true; + } } else { m_requiredRamGB = 1.; + incompleteConfiguration = true; } if ( configurationMap.contains( "check" ) && @@ -221,6 +227,8 @@ RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap ) m_entriesToCheck.clear(); m_entriesToCheck.append( configurationMap.value( "check" ).toStringList() ); } + else + incompleteConfiguration = true; if ( configurationMap.contains( "required" ) && configurationMap.value( "required" ).type() == QVariant::List ) @@ -228,6 +236,19 @@ RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap ) m_entriesToRequire.clear(); m_entriesToRequire.append( configurationMap.value( "required" ).toStringList() ); } + else + incompleteConfiguration = true; + + if ( incompleteConfiguration ) + { + cDebug() << "WARNING: The RequirementsChecker configuration map provided by " + "the welcome module configuration file is incomplete or " + "incorrect.\n" + "Startup will continue for debugging purposes, but one or " + "more checks might not function correctly.\n" + "RequirementsChecker configuration map:\n" + << configurationMap; + } } From 3408eb5c56153bd48444df6c606c09e8b2ea8b9a Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Fri, 16 Sep 2016 16:30:17 +0200 Subject: [PATCH 4/5] Fix VFAT filename handling in bootloader module. CAL-385 #close --- src/modules/bootloader/main.py | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/src/modules/bootloader/main.py b/src/modules/bootloader/main.py index e0125ee64..d292de6fd 100644 --- a/src/modules/bootloader/main.py +++ b/src/modules/bootloader/main.py @@ -220,15 +220,14 @@ def install_grub(efi_directory, fw_type): "--force"]) # VFAT is weird, see issue CAL-385 - efi_directory_firmware = case_insensitive_subdir(efi_directory, - ["EFI", "Efi", "efi"]) - if not efi_directory_firmware: - efi_directory_firmware = os.path.join(efi_directory, "EFI") + efi_directory_firmware = os.path.join(efi_directory, "EFI") + if os.path.exists(efi_directory_firmware): + efi_directory_firmware = vfat_correct_case(efi_directory, "EFI") - efi_boot_directory = case_insensitive_subdir(efi_directory_firmware, - ["Boot", "boot", "BOOT"]) - if not efi_boot_directory: - efi_boot_directory = os.path.join(efi_directory_firmware, "boot") + efi_boot_directory = os.path.join(efi_directory_firmware, "boot") + if os.path.exists(efi_boot_directory): + efi_boot_directory = vfat_correct_case(efi_directory_firmware, "boot") + else: check_target_env_call(["mkdir", "-p", efi_boot_directory]) # Workaround for some UEFI firmwares @@ -251,11 +250,11 @@ def install_grub(efi_directory, fw_type): libcalamares.job.configuration["grubCfg"]]) -def case_insensitive_subdir(parent, candidate_dirnames): - for dirname in candidate_dirnames: - if os.path.isdir(os.path.join(parent, dirname)): - return os.path.join(parent, dirname) - return "" +def vfat_correct_case(parent, name): + for candidate in os.listdir(parent): + if name.lower() == candidate.lower(): + return candidate + return os.path.join(parent, name) def prepare_bootloader(fw_type): From 89b981c585cdf89338b12ac97d01fb9c5faf9b8b Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Sat, 17 Sep 2016 00:35:03 +0000 Subject: [PATCH 5/5] Automatic merge of Transifex translations --- lang/calamares_ar.ts | 20 +++++--------------- lang/calamares_ast.ts | 20 +++++--------------- lang/calamares_bg.ts | 20 +++++--------------- lang/calamares_ca.ts | 20 +++++--------------- lang/calamares_cs_CZ.ts | 20 +++++--------------- lang/calamares_da.ts | 20 +++++--------------- lang/calamares_de.ts | 20 +++++--------------- lang/calamares_el.ts | 20 +++++--------------- lang/calamares_en.ts | 20 +++++--------------- lang/calamares_en_GB.ts | 20 +++++--------------- lang/calamares_es.ts | 20 +++++--------------- lang/calamares_es_ES.ts | 20 +++++--------------- lang/calamares_es_MX.ts | 20 +++++--------------- lang/calamares_es_PR.ts | 20 +++++--------------- lang/calamares_et.ts | 20 +++++--------------- lang/calamares_eu.ts | 20 +++++--------------- lang/calamares_fa.ts | 20 +++++--------------- lang/calamares_fi_FI.ts | 20 +++++--------------- lang/calamares_fr.ts | 20 +++++--------------- lang/calamares_fr_CH.ts | 20 +++++--------------- lang/calamares_gl.ts | 20 +++++--------------- lang/calamares_gu.ts | 20 +++++--------------- lang/calamares_hi.ts | 20 +++++--------------- lang/calamares_hr.ts | 20 +++++--------------- lang/calamares_hu.ts | 20 +++++--------------- lang/calamares_id.ts | 20 +++++--------------- lang/calamares_is.ts | 20 +++++--------------- lang/calamares_it_IT.ts | 20 +++++--------------- lang/calamares_ja.ts | 20 +++++--------------- lang/calamares_kk.ts | 20 +++++--------------- lang/calamares_lo.ts | 20 +++++--------------- lang/calamares_lt.ts | 20 +++++--------------- lang/calamares_mr.ts | 20 +++++--------------- lang/calamares_nb.ts | 20 +++++--------------- lang/calamares_nl.ts | 20 +++++--------------- lang/calamares_pl.ts | 20 +++++--------------- lang/calamares_pl_PL.ts | 20 +++++--------------- lang/calamares_pt_BR.ts | 20 +++++--------------- lang/calamares_pt_PT.ts | 20 +++++--------------- lang/calamares_ro.ts | 20 +++++--------------- lang/calamares_ru.ts | 20 +++++--------------- lang/calamares_sk.ts | 20 +++++--------------- lang/calamares_sl.ts | 20 +++++--------------- lang/calamares_sr.ts | 20 +++++--------------- lang/calamares_sr@latin.ts | 20 +++++--------------- lang/calamares_sv.ts | 20 +++++--------------- lang/calamares_th.ts | 20 +++++--------------- lang/calamares_tr_TR.ts | 20 +++++--------------- lang/calamares_uk.ts | 20 +++++--------------- lang/calamares_ur.ts | 20 +++++--------------- lang/calamares_uz.ts | 20 +++++--------------- lang/calamares_zh_CN.ts | 20 +++++--------------- lang/calamares_zh_TW.ts | 20 +++++--------------- 53 files changed, 265 insertions(+), 795 deletions(-) diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index bf9c1c3ad..0a2873ba6 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -739,32 +739,22 @@ The installer will quit and all changes will be lost. تعذّر فتح ملفّ groups للقراءة. - + Cannot create user %1. تعذّر إنشاء المستخدم %1. - + useradd terminated with error code %1. أُنهي useradd برمز الخطأ %1. - - Cannot set full name for user %1. - تعذّر تعيين الاسم الكامل للمستخدم %1. - - - - chfn terminated with error code %1. - أُنهي chfn برمز الخطأ %1. - - - + Cannot set home directory ownership for user %1. تعذّر تعيين مالك دليل المستخدم ليكون %1. - + chown terminated with error code %1. أُنهي chown برمز الخطأ %1. @@ -2141,7 +2131,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome مرحبا بك diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index 25fa38220..777354eba 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -739,32 +739,22 @@ L'instalador colará y perderánse toles camudancies. Nun pue abrise'l ficheru de grupos pa escritura. - + Cannot create user %1. Nun pue crease l'usuariu %1. - + useradd terminated with error code %1. useradd finó col códigu de fallu %1. - - Cannot set full name for user %1. - Nun pue afitase'l nome completu pal usuariu %1. - - - - chfn terminated with error code %1. - chfn finó col códigu de fallu %1. - - - + Cannot set home directory ownership for user %1. Nun pue afitase la propiedá del direutoriu Home al usuariu %1. - + chown terminated with error code %1. chown finó col códigu de fallu %1. @@ -2141,7 +2131,7 @@ L'instalador colará y perderánse toles camudancies. WelcomeViewStep - + Welcome Bienllegáu diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index 69dcafcdc..3f48d47e4 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -740,32 +740,22 @@ The installer will quit and all changes will be lost. Не може да се отвори файла на групите за четене. - + Cannot create user %1. Не може да се създаде потребител %1. - + useradd terminated with error code %1. useradd прекратен с грешка, код %1. - - Cannot set full name for user %1. - Не може да се постави пълното име на потребител %1. - - - - chfn terminated with error code %1. - chfn прекратен с грешка, код %1. - - - + Cannot set home directory ownership for user %1. Не може да се постави притежанието на домашната директория за потребител %1. - + chown terminated with error code %1. chown прекратен с грешка, код %1. @@ -2142,7 +2132,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome Добре дошли diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index 2256e1d8e..562506e71 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -739,32 +739,22 @@ L'instal·lador es tancarà i tots els canvis es perdran. No es pot obrir el fitxer groups per a ser llegit. - + Cannot create user %1. No es pot crear l'usuari %1. - + useradd terminated with error code %1. useradd ha finalitzat amb el codi d'error %1. - - Cannot set full name for user %1. - No es pot assignar el nom complet de l'usuari %1. - - - - chfn terminated with error code %1. - chfn ha finalitzat amb el codi d'error %1. - - - + Cannot set home directory ownership for user %1. No es pot assignar el permís de propietat del directori personal de l'usuari %1. - + chown terminated with error code %1. chown ha finalitzat amb el codi d'error %1. @@ -2141,7 +2131,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. WelcomeViewStep - + Welcome Benvinguts diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index 764328936..4d904b1f9 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -739,32 +739,22 @@ Instalační program bude ukončen a všechny změny ztraceny. Nelze otevřít soubor groups pro čtení. - + Cannot create user %1. Nelze vytvořit uživatele %1. - + useradd terminated with error code %1. Příkaz useradd ukončen s chybovým kódem %1. - - Cannot set full name for user %1. - Nelze nastavit celé jméno pro uživatele %1. - - - - chfn terminated with error code %1. - Příkaz chfn ukončen s chybovým kódem %1. - - - + Cannot set home directory ownership for user %1. Nelze nastavit vlastnictví domovského adresáře pro uživatele %1. - + chown terminated with error code %1. Příkaz chown ukončen s chybovým kódem %1. @@ -2141,7 +2131,7 @@ Instalační program bude ukončen a všechny změny ztraceny. WelcomeViewStep - + Welcome Vítejte diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 85fb5f7e4..b5fb40129 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -739,32 +739,22 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Kan ikke åbne gruppernes fil til læsning. - + Cannot create user %1. Kan ikke oprette bruger %1. - + useradd terminated with error code %1. useradd stoppet med fejl kode %1. - - Cannot set full name for user %1. - Kan ikke indstille fuld navn for bruger %1. - - - - chfn terminated with error code %1. - chfn stoppet med fejl kode %1. - - - + Cannot set home directory ownership for user %1. Kan ikke indstille hjemmemappe ejerskab for bruger %1. - + chown terminated with error code %1. chown stoppet med fejl kode %1. @@ -2141,7 +2131,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. WelcomeViewStep - + Welcome Velkommen diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index b5fd7061f..d5a4db6dd 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -740,32 +740,22 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Kann groups-Datei nicht zum Lesen öffnen. - + Cannot create user %1. Kann Benutzer %1 nicht erstellen. - + useradd terminated with error code %1. useradd wurde mit Fehlercode %1 beendet. - - Cannot set full name for user %1. - Kann vollen Namen von Benutzer %1 nicht setzen. - - - - chfn terminated with error code %1. - chfn wurde mit Fehlercode %1 beendet. - - - + Cannot set home directory ownership for user %1. Kann Besitzrechte des Home-Verzeichnisses von Benutzer %1 nicht setzen. - + chown terminated with error code %1. chown wurde mit Fehlercode %1 beendet. @@ -2142,7 +2132,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. WelcomeViewStep - + Welcome Willkommen diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index 48279b091..2fb3a0592 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -739,32 +739,22 @@ The installer will quit and all changes will be lost. Δεν είναι δυνατό το άνοιγμα του αρχείου ομάδων για ανάγνωση. - + Cannot create user %1. Δεν είναι δυνατή η δημιουργία του χρήστη %1. - + useradd terminated with error code %1. Το useradd τερματίστηκε με κωδικό σφάλματος %1. - - Cannot set full name for user %1. - Δεν είναι δυνατός ο ορισμός του πλήρους όνοματος του χρήστη %1. - - - - chfn terminated with error code %1. - Το chfn τερματίστηκε με κωδικό σφάλματος %1. - - - + Cannot set home directory ownership for user %1. Δεν είναι δυνατός ο ορισμός της ιδιοκτησία του προσωπικού καταλόγου για τον χρήστη %1. - + chown terminated with error code %1. Το chown τερματίστηκε με κωδικό σφάλματος %1. @@ -2141,7 +2131,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome Καλώς ήλθατε diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index 8e68d0548..a40b7b18a 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -739,32 +739,22 @@ The installer will quit and all changes will be lost. Cannot open groups file for reading. - + Cannot create user %1. Cannot create user %1. - + useradd terminated with error code %1. useradd terminated with error code %1. - - Cannot set full name for user %1. - Cannot set full name for user %1. - - - - chfn terminated with error code %1. - chfn terminated with error code %1. - - - + Cannot set home directory ownership for user %1. Cannot set home directory ownership for user %1. - + chown terminated with error code %1. chown terminated with error code %1. @@ -2141,7 +2131,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome Welcome diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index c6b6e9078..d0fa6142f 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -739,32 +739,22 @@ The installer will quit and all changes will be lost. Cannot open groups file for reading. - + Cannot create user %1. Cannot create user %1. - + useradd terminated with error code %1. useradd terminated with error code %1. - - Cannot set full name for user %1. - Cannot set full name for user %1. - - - - chfn terminated with error code %1. - chfn terminated with error code %1. - - - + Cannot set home directory ownership for user %1. Cannot set home directory ownership for user %1. - + chown terminated with error code %1. chown terminated with error code %1. @@ -2141,7 +2131,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 3d873a3ae..ce02096a5 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -740,32 +740,22 @@ Saldrá del instalador y se perderán todos los cambios. No es posible abrir el archivo de grupos del sistema. - + Cannot create user %1. No se puede crear el usuario %1. - + useradd terminated with error code %1. useradd terminó con código de error %1. - - Cannot set full name for user %1. - No se puede asignar el nombre completo al usuario %1. - - - - chfn terminated with error code %1. - chfn terminó con código de error %1. - - - + Cannot set home directory ownership for user %1. No se puede dar la propiedad del directorio home al usuario %1 - + chown terminated with error code %1. chown terminó con código de error %1. @@ -2142,7 +2132,7 @@ Saldrá del instalador y se perderán todos los cambios. WelcomeViewStep - + Welcome Bienvenido diff --git a/lang/calamares_es_ES.ts b/lang/calamares_es_ES.ts index 5ef17fe79..4ebf33d8e 100644 --- a/lang/calamares_es_ES.ts +++ b/lang/calamares_es_ES.ts @@ -739,32 +739,22 @@ El instalador se cerrará y se perderán todos los cambios. No se puede abrir para leer el fichero groups. - + Cannot create user %1. No se puede crear el usuario %1. - + useradd terminated with error code %1. useradd ha terminado con el código de error %1. - - Cannot set full name for user %1. - No se puede establecer el nombre y los apellidos del usuario %1. - - - - chfn terminated with error code %1. - chfn ha terminado con el código de error %1. - - - + Cannot set home directory ownership for user %1. No se puede establecer el propietario del directorio personal del usuario %1. - + chown terminated with error code %1. chown ha terminado con el código de error %1. @@ -2141,7 +2131,7 @@ El instalador se cerrará y se perderán todos los cambios. WelcomeViewStep - + Welcome diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index 44708b350..c31730f23 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -742,32 +742,22 @@ El instalador terminará y se perderán todos los cambios. No se puede abrir el archivo groups para lectura. - + Cannot create user %1. No se puede crear el usuario %1. - + useradd terminated with error code %1. useradd ha finalizado con elcódigo de error %1. - - Cannot set full name for user %1. - No se puede aplicar el nombre completo al usuario %1. - - - - chfn terminated with error code %1. - chfn terminó con un un código de error %1. - - - + Cannot set home directory ownership for user %1. No se pueden aplicar permisos de propiedad a la carpeta home para el usuario %1. - + chown terminated with error code %1. chown ha finalizado con elcódigo de error %1. @@ -2144,7 +2134,7 @@ El instalador terminará y se perderán todos los cambios. WelcomeViewStep - + Welcome Bienvenido diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index dc4918edb..12d6b07c2 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -738,32 +738,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2140,7 +2130,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index 4991c2e66..23a17f6ed 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index 6bd76ba29..8c265f5a8 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -736,32 +736,22 @@ The installer will quit and all changes will be lost. Ezin da groups fitxategia ireki berau irakurtzeko. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2138,7 +2128,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome Ongi etorri diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index 96411b43c..d01204973 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index 5b8f22985..d9de0a1d0 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -739,32 +739,22 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Ei voida avata ryhmätiedostoa luettavaksi. - + Cannot create user %1. Käyttäjää %1 ei voi luoda. - + useradd terminated with error code %1. useradd päättyi virhekoodilla %1. - - Cannot set full name for user %1. - Ei voida asettaa koko nimeä käyttäjälle %1. - - - - chfn terminated with error code %1. - chfn päättyi virhekoodilla %1. - - - + Cannot set home directory ownership for user %1. Ei voida asettaa kotihakemiston omistusoikeutta käyttäjälle %1. - + chown terminated with error code %1. chown päättyi virhekoodilla %1. @@ -2141,7 +2131,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. WelcomeViewStep - + Welcome diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index 19eb19b52..277028d2b 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -739,32 +739,22 @@ L'installateur se fermera et les changements seront perdus. Impossible d'ouvrir le fichier groups en lecture. - + Cannot create user %1. Impossible de créer l'utilisateur %1. - + useradd terminated with error code %1. useradd s'est terminé avec le code erreur %1. - - Cannot set full name for user %1. - Impossible de renseigner le nom complet pour l'utilisateur %1. - - - - chfn terminated with error code %1. - chfn s'est terminé avec le code erreur %1. - - - + Cannot set home directory ownership for user %1. Impossible de définir le propriétaire du répertoire home pour l'utilisateur %1. - + chown terminated with error code %1. chown s'est terminé avec le code erreur %1. @@ -2141,7 +2131,7 @@ L'installateur se fermera et les changements seront perdus. WelcomeViewStep - + Welcome Bienvenue diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index 2696de4eb..7c6df547f 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index a7be1e49a..243186d06 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -740,32 +740,22 @@ O instalador pecharase e perderanse todos os cambios. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2142,7 +2132,7 @@ O instalador pecharase e perderanse todos os cambios. WelcomeViewStep - + Welcome Benvido diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index 34b93dd3b..2636318a4 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index 1fe483177..7d21a3b7f 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index 113496d3d..be9d08e06 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -739,32 +739,22 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Ne mogu otvoriti groups datoteku za čitanje. - + Cannot create user %1. Ne mogu stvoriti korisnika %1. - + useradd terminated with error code %1. useradd je prestao s radom sa greškom koda %1. - - Cannot set full name for user %1. - Ne mogu postaviti puno ime za korisnika %1. - - - - chfn terminated with error code %1. - chfn je prestao s radom sa greškom koda %1. - - - + Cannot set home directory ownership for user %1. Ne mogu postaviti vlasništvo radnog direktorija za korisnika %1. - + chown terminated with error code %1. chown je prestao s radom sa greškom koda %1. @@ -2141,7 +2131,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. WelcomeViewStep - + Welcome Dobrodošli diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index fefbf5b2c..86bc8c007 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -740,32 +740,22 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Nem lehet a groups fájlt megnyitni olvasásra. - + Cannot create user %1. Nem lehet a %1 felhasználót létrehozni. - + useradd terminated with error code %1. useradd megszakítva %1 hibakóddal. - - Cannot set full name for user %1. - Nem lehet a teljes nevet beállítani a %1 felhasználónak. - - - - chfn terminated with error code %1. - chfn megszakítva %1 hibakóddal. - - - + Cannot set home directory ownership for user %1. Nem lehet a home könyvtár tulajdonos jogosultságát beállítani %1 felhasználónak. - + chown terminated with error code %1. chown megszakítva %1 hibakóddal. @@ -2143,7 +2133,7 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l WelcomeViewStep - + Welcome Üdvözlet diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index 79bfdaea4..b1a419b04 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -741,32 +741,22 @@ Penginstalan dapat dilanjutkan, namun beberapa fitur akan ditiadakan.Tidak dapat membuka berkas groups untuk dibaca. - + Cannot create user %1. Tidak dapat membuat pengguna %1. - + useradd terminated with error code %1. useradd dihentikan dengan kode kesalahan %1. - - Cannot set full name for user %1. - Tidak dapat menyetel nama lengkap untuk pengguna %1. - - - - chfn terminated with error code %1. - chfn dihentikan dengan kode kesalahan %1. - - - + Cannot set home directory ownership for user %1. Tidak dapat menyetel kepemilikan direktori home untuk pengguna %1. - + chown terminated with error code %1. chown dihentikan dengan kode kesalahan %1. @@ -2143,7 +2133,7 @@ Penginstalan dapat dilanjutkan, namun beberapa fitur akan ditiadakan. WelcomeViewStep - + Welcome Selamat Datang diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index c02944ebf..f33c6f781 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -739,32 +739,22 @@ Uppsetning mun hætta og allar breytingar tapast. Get ekki opnað hópa skrá til að lesa. - + Cannot create user %1. Get ekki búið til notanda %1. - + useradd terminated with error code %1. useradd endaði með villu kóðann %1. - - Cannot set full name for user %1. - Get ekki sett fullt nafn fyrir notanda %1. - - - - chfn terminated with error code %1. - chfn endaði með villu kóðann %1. - - - + Cannot set home directory ownership for user %1. Get ekki stillt heimasvæðis eignarhald fyrir notandann %1. - + chown terminated with error code %1. chown endaði með villu kóðann %1. @@ -2141,7 +2131,7 @@ Uppsetning mun hætta og allar breytingar tapast. WelcomeViewStep - + Welcome Velkomin(n) diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index 112014cfb..08572a92b 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -739,32 +739,22 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Impossibile aprire il file groups in lettura. - + Cannot create user %1. Impossibile creare l'utente %1. - + useradd terminated with error code %1. useradd si è chiuso con codice di errore %1. - - Cannot set full name for user %1. - Impossibile impostare il nome completo per l'utente %1. - - - - chfn terminated with error code %1. - chfn si è chiuso con codice di errore %1. - - - + Cannot set home directory ownership for user %1. Impossibile impostare i diritti sulla cartella home per l'utente %1. - + chown terminated with error code %1. chown si è chiuso con codice di errore %1. @@ -2141,7 +2131,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno WelcomeViewStep - + Welcome Benvenuti diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index ec6c1b689..b6b84d51c 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -739,32 +739,22 @@ The installer will quit and all changes will be lost. groups ファイルを読み込めません。 - + Cannot create user %1. ユーザー %1 を作成できません。 - + useradd terminated with error code %1. エラーコード %1 により useradd を中止しました。 - - Cannot set full name for user %1. - ユーサー %1 のフルネームを設定できません。 - - - - chfn terminated with error code %1. - エラーコード %1 により chfn は中止しました。 - - - + Cannot set home directory ownership for user %1. ユーザー %1 のホームディレクトリの所有者を設定できません。 - + chown terminated with error code %1. エラーコード %1 により chown は中止しました。 @@ -2142,7 +2132,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome ようこそ diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index c7d544850..31fac0c1c 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome Қош келдіңіз diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index 88dfed0c8..6e1342bad 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index 26060980e..a28bd2f4b 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -739,32 +739,22 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Nepavyko skaitymui atverti grupių failo. - + Cannot create user %1. Nepavyko sukurti naudotojo %1. - + useradd terminated with error code %1. komanda useradd nutraukė darbą dėl klaidos kodo %1. - - Cannot set full name for user %1. - Neįmanoma nustatyti pilno vardo naudotojui %1. - - - - chfn terminated with error code %1. - komanda chfn nutraukė darbą dėl klaidos kodo %1. - - - + Cannot set home directory ownership for user %1. Nepavyko nustatyti home katalogo nuosavybės naudotojui %1. - + chown terminated with error code %1. komanda chown nutraukė darbą dėl klaidos kodo %1. @@ -2141,7 +2131,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. WelcomeViewStep - + Welcome Pasisveikinimas diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index 6926b04c6..5f5bb59e9 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index 59f634b08..eebb24541 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -739,32 +739,22 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Cannot create user %1. Klarte ikke å opprette bruker %1 - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2141,7 +2131,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. WelcomeViewStep - + Welcome diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index 692e2efd5..b8b10bedf 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -739,32 +739,22 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Kan het bestand groups niet lezen. - + Cannot create user %1. Kan gebruiker %1 niet aanmaken. - + useradd terminated with error code %1. useradd is gestopt met foutcode %1. - - Cannot set full name for user %1. - Kan de volledige naam voor gebruiker %1 niet instellen. - - - - chfn terminated with error code %1. - chfn is gestopt met foutcode %1. - - - + Cannot set home directory ownership for user %1. Kan eigendomsrecht gebruikersmap niet instellen voor gebruiker %1. - + chown terminated with error code %1. chown is gestopt met foutcode %1. @@ -2141,7 +2131,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. WelcomeViewStep - + Welcome Welkom diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index df12c7662..619c5ea14 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -739,32 +739,22 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Nie można otworzyć pliku groups do odczytu. - + Cannot create user %1. Nie można utworzyć użytkownika %1. - + useradd terminated with error code %1. Polecenie useradd zostało przerwane z kodem błędu %1. - - Cannot set full name for user %1. - Nie można ustawić pełnej nazwy dla użytkownika %1. - - - - chfn terminated with error code %1. - Polecenie chfn zostało przerwane z kodem błędu %1. - - - + Cannot set home directory ownership for user %1. Nie można ustawić właściciela katalogu domowego dla użytkownika %1. - + chown terminated with error code %1. Polecenie chown zostało przerwane z kodem błędu %1. @@ -2141,7 +2131,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. WelcomeViewStep - + Welcome Witamy diff --git a/lang/calamares_pl_PL.ts b/lang/calamares_pl_PL.ts index 5d071ea27..1a4fb56ab 100644 --- a/lang/calamares_pl_PL.ts +++ b/lang/calamares_pl_PL.ts @@ -739,32 +739,22 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.Nie można otworzyć pliku groups do oczytu. - + Cannot create user %1. Nie można utworzyć użytkownika %1. - + useradd terminated with error code %1. useradd przerwany z kodem błędu %1. - - Cannot set full name for user %1. - Nie można ustawić pełnej nazwy dla użytkownika %1. - - - - chfn terminated with error code %1. - chfn przerwany z kodem błędu %1. - - - + Cannot set home directory ownership for user %1. Nie można ustawić właściciela folderu domowego dla użytkownika %1. - + chown terminated with error code %1. chown przerwany z kodem błędu %1. @@ -2141,7 +2131,7 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. WelcomeViewStep - + Welcome diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index d3999b8eb..486ecaedf 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -741,32 +741,22 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.Não foi possível abrir arquivos do grupo para leitura. - + Cannot create user %1. Impossível criar o usuário %1. - + useradd terminated with error code %1. useradd terminou com código de erro %1. - - Cannot set full name for user %1. - Impossível definir o nome completo para o usuário %1. - - - - chfn terminated with error code %1. - chfn terminou com código de erro %1. - - - + Cannot set home directory ownership for user %1. Impossível definir proprietário da pasta pessoal para o usuário %1. - + chown terminated with error code %1. chown terminou com código de erro %1. @@ -2143,7 +2133,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. WelcomeViewStep - + Welcome Bem-vindo diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index 07f3b4ca8..48cc91d1b 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -739,32 +739,22 @@ O instalador será encerrado e todas as alterações serão perdidas.Impossível abrir ficheiro dos grupos para leitura. - + Cannot create user %1. Não é possível criar utilizador %1. - + useradd terminated with error code %1. useradd terminou com código de erro %1. - - Cannot set full name for user %1. - Impossível definir o nome completo para o utilizador %1. - - - - chfn terminated with error code %1. - chfn terminou com código de erro %1. - - - + Cannot set home directory ownership for user %1. Impossível definir permissão da pasta pessoal para o utilizador %1. - + chown terminated with error code %1. chown terminou com código de erro %1. @@ -2141,7 +2131,7 @@ O instalador será encerrado e todas as alterações serão perdidas. WelcomeViewStep - + Welcome Bem-vindo diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index cb6a6ca6c..55e247a8b 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -739,32 +739,22 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Nu se poate deschide fișierul groups pentru citire. - + Cannot create user %1. Nu se poate crea utilizatorul %1. - + useradd terminated with error code %1. useradd s-a terminat cu codul de eroare %1. - - Cannot set full name for user %1. - Nu se poate seta numele complet pentru utilizatorul %1. - - - - chfn terminated with error code %1. - chfn s-a terminat cu codul de eroare %1. - - - + Cannot set home directory ownership for user %1. Nu se poate seta apartenența dosarului home pentru utilizatorul %1. - + chown terminated with error code %1. chown s-a terminat cu codul de eroare %1. @@ -2141,7 +2131,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. WelcomeViewStep - + Welcome Bine ați venit diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index 719d1abea..0d64aaa9d 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -738,32 +738,22 @@ The installer will quit and all changes will be lost. Не удалось открыть файл groups для чтения. - + Cannot create user %1. Не удалось создать учетную запись пользователя %1. - + useradd terminated with error code %1. Команда useradd завершилась с кодом ошибки %1. - - Cannot set full name for user %1. - Не удалось задать полное имя для пользователя %1. - - - - chfn terminated with error code %1. - Команда chfn завершилась с кодом ошибки %1. - - - + Cannot set home directory ownership for user %1. Не удалось задать владельца домашней папки пользователя %1. - + chown terminated with error code %1. Команда chown завершилась с кодом ошибки %1. @@ -2140,7 +2130,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome Добро пожаловать diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index dfdac342e..084bd74a9 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -739,32 +739,22 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Nedá sa otvoriť súbor skupín na čítanie. - + Cannot create user %1. Nedá sa vytvoriť používateľ %1. - + useradd terminated with error code %1. Príkaz useradd ukončený s chybovým kódom %1. - - Cannot set full name for user %1. - Nedá sa nastaviť celé meno pre používateľa %1. - - - - chfn terminated with error code %1. - Príkaz chfn ukončený s chybovým kódom %1. - - - + Cannot set home directory ownership for user %1. Nedá sa nastaviť vlastníctvo domovského adresára pre používateľa %1. - + chown terminated with error code %1. Príkaz chown ukončený s chybovým kódom %1. @@ -2141,7 +2131,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. WelcomeViewStep - + Welcome Vitajte diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index 3042b2f59..9bc7e76b2 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -739,32 +739,22 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Datoteke skupin ni bilo mogoče odpreti za branje. - + Cannot create user %1. Ni mogoče ustvariti uporabnika %1. - + useradd terminated with error code %1. useradd se je prekinil s kodo napake %1. - - Cannot set full name for user %1. - Ni mogoče nastaviti polnega imena za uporabnika %1. - - - - chfn terminated with error code %1. - chfn se je prekinil s kodo napake %1. - - - + Cannot set home directory ownership for user %1. Ni mogoče nastaviti lastništva domače mape za uporabnika %1. - + chown terminated with error code %1. chown se je prekinil s kodo napake %1. @@ -2141,7 +2131,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. WelcomeViewStep - + Welcome diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index e98c23c41..6ae948ddd 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -738,32 +738,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. Није могуће направити корисника %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2140,7 +2130,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index fa184ac3f..cb0bc2de5 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -739,32 +739,22 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. Nemoguće otvoriti groups fajl - + Cannot create user %1. Nemoguće napraviti korisnika %1. - + useradd terminated with error code %1. Komanda useradd prekinuta sa kodom greške %1 - - Cannot set full name for user %1. - Ne mogu postaviti puno ime za korisnika %1. - - - - chfn terminated with error code %1. - Lomanda chfn prekinuta sa kodom greške %1. - - - + Cannot set home directory ownership for user %1. Nemoguće postaviti vlasništvo nad početnim direktorijumom za korisnika %1. - + chown terminated with error code %1. Komanda chown prekinuta sa kodom greške %1. @@ -2141,7 +2131,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. WelcomeViewStep - + Welcome diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index 8bc66da31..dfa81537b 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -739,32 +739,22 @@ Alla ändringar kommer att gå förlorade. Kunde inte öppna gruppfilen för läsning. - + Cannot create user %1. Kunde inte skapa användaren %1. - + useradd terminated with error code %1. useradd stoppades med felkod %1. - - Cannot set full name for user %1. - Kan inte sätta helt namn för användare %1. - - - - chfn terminated with error code %1. - chfn stoppades med felkod %1. - - - + Cannot set home directory ownership for user %1. Kunde inte ge användaren %1 äganderätt till sin hemkatalog. - + chown terminated with error code %1. chown stoppades med felkod %1. @@ -2141,7 +2131,7 @@ Alla ändringar kommer att gå förlorade. WelcomeViewStep - + Welcome Välkommen diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index 64640587e..71fc61136 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -739,32 +739,22 @@ The installer will quit and all changes will be lost. ไม่สามารถเปิดไฟล์ groups เพื่ออ่านได้ - + Cannot create user %1. ไม่สามารถสร้างผู้ใช้ %1 - + useradd terminated with error code %1. useradd จบด้วยโค้ดข้อผิดพลาด %1 - - Cannot set full name for user %1. - ไม่สามารถตั้งค่าชื่อเต็มสำหรับผู้ใช้ %1 - - - - chfn terminated with error code %1. - chfn จบด้วยโค้ดข้อผิดพลาด %1 - - - + Cannot set home directory ownership for user %1. ไม่สามารถตั้งค่าความเป็นเจ้าของไดเรคทอรี home สำหรับผู้ใช้ %1 - + chown terminated with error code %1. chown จบด้วยโค้ดข้อผิดพลาด %1 @@ -2141,7 +2131,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index f5e9c4fb6..cc9218f53 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -742,32 +742,22 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.groups dosyası okunamadı. - + Cannot create user %1. %1 Kullanıcısı oluşturulamadı... - + useradd terminated with error code %1. useradd komutu şu hata ile çöktü %1. - - Cannot set full name for user %1. - %1 Kullanıcısı için tam isim ayarlanmadı. - - - - chfn terminated with error code %1. - chfn komutu şu hata ile çöktü %1. - - - + Cannot set home directory ownership for user %1. %1 Kullanıcısı için ev dizini sahipliği ayarlanamadı. - + chown terminated with error code %1. chown %1 hata koduyla sonlandırıldı. @@ -2145,7 +2135,7 @@ Sistem güç kaynağına bağlı değil. WelcomeViewStep - + Welcome Hoşgeldiniz diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index cdb138e96..a65e1dc70 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index 387c4d505..f7f2b74d4 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index 77cfded94..3421b481b 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -732,32 +732,22 @@ The installer will quit and all changes will be lost. - + Cannot create user %1. - + useradd terminated with error code %1. - - Cannot set full name for user %1. - - - - - chfn terminated with error code %1. - - - - + Cannot set home directory ownership for user %1. - + chown terminated with error code %1. @@ -2134,7 +2124,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index f1f9f773a..1c72b22f4 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -740,32 +740,22 @@ The installer will quit and all changes will be lost. 无法打开要读取的 groups 文件。 - + Cannot create user %1. 无法创建用户 %1。 - + useradd terminated with error code %1. useradd 以错误代码 %1 中止。 - - Cannot set full name for user %1. - 无法设置用户 %1 的全名。 - - - - chfn terminated with error code %1. - chfn 以错误代码 %1 中止。 - - - + Cannot set home directory ownership for user %1. 无法设置用户 %1 的主文件夹所有者。 - + chown terminated with error code %1. chown 以错误代码 %1 中止。 @@ -2143,7 +2133,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome 欢迎 diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index bf3e2d668..52ac01300 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -739,32 +739,22 @@ The installer will quit and all changes will be lost. 無法開啟要讀取的 groups 檔案。 - + Cannot create user %1. 無法建立使用者 %1 。 - + useradd terminated with error code %1. useradd 以錯誤代碼 %1 終止。 - - Cannot set full name for user %1. - 無法設定使用者 %1 的全名。 - - - - chfn terminated with error code %1. - chfn 以錯誤代碼 %1 終止。 - - - + Cannot set home directory ownership for user %1. 無法將使用者 %1 設定為家目錄的擁有者。 - + chown terminated with error code %1. chown 以錯誤代碼 %1 終止。 @@ -2141,7 +2131,7 @@ The installer will quit and all changes will be lost. WelcomeViewStep - + Welcome 歡迎