From 7ad1c4ccb8508d1192ee68d28033424396cbe80a Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 5 Jul 2017 04:48:50 -0400 Subject: [PATCH 01/23] i18n: add Hebrew to the list of languages (new translation) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 707f6ab25..0087d19c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -116,7 +116,7 @@ set( CALAMARES_ORGANIZATION_NAME "Calamares" ) set( CALAMARES_ORGANIZATION_DOMAIN "github.com/calamares" ) set( CALAMARES_APPLICATION_NAME "Calamares" ) set( CALAMARES_DESCRIPTION_SUMMARY "The distribution-independent installer framework" ) -set( CALAMARES_TRANSLATION_LANGUAGES ar ast bg ca cs_CZ da de el en en_GB es_MX es eu fr hr hu id is it_IT ja lt nl pl pt_BR pt_PT ro ru sk sv th tr_TR zh_CN zh_TW ) +set( CALAMARES_TRANSLATION_LANGUAGES ar ast bg ca cs_CZ da de el en en_GB es_MX es eu fr he hr hu id is it_IT ja lt nl pl pt_BR pt_PT ro ru sk sv th tr_TR zh_CN zh_TW ) ### Bump version here set( CALAMARES_VERSION_MAJOR 3 ) From 10eaf06f6012d054d52bfd69e79fd53c3c46bc00 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 4 Jul 2017 11:56:21 -0400 Subject: [PATCH 02/23] Python: Be more descriptive when modules can't be loaded. --- src/libcalamaresui/modulesystem/Module.cpp | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/libcalamaresui/modulesystem/Module.cpp b/src/libcalamaresui/modulesystem/Module.cpp index 6f19d36a4..09386d58c 100644 --- a/src/libcalamaresui/modulesystem/Module.cpp +++ b/src/libcalamaresui/modulesystem/Module.cpp @@ -82,12 +82,14 @@ Module::fromDescriptor( const QVariantMap& moduleDescriptor, { m = new ViewModule(); } -#ifdef WITH_PYTHONQT else if ( intfString == "pythonqt" ) { +#ifdef WITH_PYTHONQT m = new PythonQtViewModule(); - } +#else + cLog() << "PythonQt modules are not supported in this version of Calamares."; #endif + } } else if ( typeString == "job" ) { @@ -99,17 +101,20 @@ Module::fromDescriptor( const QVariantMap& moduleDescriptor, { m = new ProcessJobModule(); } -#ifdef WITH_PYTHON else if ( intfString == "python" ) { +#ifdef WITH_PYTHON m = new PythonJobModule(); - } +#else + cLog() << "Python modules are not supported in this version of Calamares."; #endif + } } if ( !m ) { - cLog() << Q_FUNC_INFO << "bad module type or interface string" - << instanceId << typeString << intfString; + cLog() << "Bad module type (" << typeString + << ") or interface string (" << intfString + << ") for module " << instanceId; return nullptr; } From e43f41a40245acbce83df9ce18a00db214a79453 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 5 Jul 2017 06:26:21 -0400 Subject: [PATCH 03/23] Python: separate description of dummy module from docs of run() --- src/modules/dummypython/main.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/modules/dummypython/main.py b/src/modules/dummypython/main.py index 4a68cf963..29837ba96 100644 --- a/src/modules/dummypython/main.py +++ b/src/modules/dummypython/main.py @@ -19,22 +19,22 @@ # You should have received a copy of the GNU General Public License # along with Calamares. If not, see . +""" +=== Example Python jobmodule. + +A Python jobmodule is a Python program which imports libcalamares and +has a function run() as entry point. run() must return None if everything +went well, or a tuple (str,str) with an error message and description +if something went wrong. +""" + import libcalamares import os from time import gmtime, strftime, sleep def run(): - """ - Example Python jobmodule. - - A Python jobmodule is a Python program which imports libcalamares and - has a function run() as entry point. run() must return None if everything - went well, or a tuple (str,str) with an error message and description - if something went wrong. - - :return: - """ + """Dummy python job.""" os.system("/bin/sh -c \"touch ~/calamares-dummypython\"") accumulator = strftime("%Y-%m-%d %H:%M:%S", gmtime()) + "\n" accumulator += "Calamares version: " + libcalamares.VERSION_SHORT + "\n" From f12ae5db3be4f850e4d3df8b6cdf5584dc691049 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 5 Jul 2017 06:28:32 -0400 Subject: [PATCH 04/23] Python: get docstring from run() method --- src/libcalamares/PythonJob.cpp | 5 +++++ src/libcalamares/PythonJob.h | 1 + 2 files changed, 6 insertions(+) diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index 32e019eb0..a7922145a 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -228,6 +228,7 @@ PythonJob::PythonJob( const QString& scriptFile, : Job( parent ) , m_scriptFile( scriptFile ) , m_workingPath( workingPath ) + , m_description() , m_configurationMap( moduleConfiguration ) { } @@ -293,6 +294,10 @@ PythonJob::exec() scriptNamespace ); bp::object entryPoint = scriptNamespace[ "run" ]; + bp::extract< std::string > entryPoint_doc_attr(entryPoint.attr( "__doc__" ) ); + + if ( entryPoint_doc_attr.check() ) + m_description = QString::fromStdString( entryPoint_doc_attr() ); bp::object runResult = entryPoint(); diff --git a/src/libcalamares/PythonJob.h b/src/libcalamares/PythonJob.h index 9bc9ddb0b..d13705ed8 100644 --- a/src/libcalamares/PythonJob.h +++ b/src/libcalamares/PythonJob.h @@ -53,6 +53,7 @@ private: CalamaresPython::Helper* helper(); QString m_scriptFile; QString m_workingPath; + QString m_description; QVariantMap m_configurationMap; }; From a72cc0eeb492a778d350f1f33991db81c9f6e026 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 5 Jul 2017 06:44:09 -0400 Subject: [PATCH 05/23] Python: use the module run().__doc__ as a pretty description. --- src/libcalamares/PythonJob.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index a7922145a..6de89d184 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -248,8 +248,11 @@ PythonJob::prettyName() const QString PythonJob::prettyStatusMessage() const { - return tr( "Running %1 operation." ) - .arg( QDir( m_workingPath ).dirName() ); + if ( m_description.isEmpty() ) + return tr( "Running %1 operation." ) + .arg( QDir( m_workingPath ).dirName() ); + else + return m_description; } From 955a289e20aa031f2fc39e54a8bde5b9d4da2f06 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Thu, 6 Jul 2017 00:41:24 +0000 Subject: [PATCH 06/23] [core] Automatic merge of Transifex translations --- lang/calamares_ar.ts | 2 +- lang/calamares_es.ts | 6 +++--- lang/calamares_he.ts | 26 +++++++++++++------------- lang/calamares_hr.ts | 10 +++++----- lang/calamares_pl.ts | 6 +++--- 5 files changed, 25 insertions(+), 25 deletions(-) diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index 33d3e2de1..5bb1487ae 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -2261,7 +2261,7 @@ The installer will quit and all changes will be lost. %1 support - 1%الدعم + 1% الدعم diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 740ee4be1..432ce5eae 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -268,7 +268,7 @@ Saldrá del instalador y se perderán todos los cambios. &Close - + &Cerrar @@ -1028,7 +1028,7 @@ Saldrá del instalador y se perderán todos los cambios. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>La instalación falló</h1><br/>%1 no se ha instalado en su equipo.<br/>El mensaje de error fue: %2. @@ -2257,7 +2257,7 @@ Saldrá del instalador y se perderán todos los cambios. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>para %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agradecimientos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg y el <a href="https://www.transifex.com/calamares/calamares/">equipo de traductores de Calamares</a>.<br/><br/>El desarrollo de <a href="http://calamares.io/">Calamares</a> está patrocinado por: <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberando Software. diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index 23aee2dad..22a67950e 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -1901,17 +1901,17 @@ The installer will quit and all changes will be lost. Set hostname %1 - הגדר שם המחשב %1 + הגדר שם עמדה %1 Set hostname <strong>%1</strong>. - הגדר שם המחשב <strong>%1</strong>. + הגדר שם עמדה <strong>%1</strong>. Setting hostname %1. - מגדיר את שם המחשב %1. + מגדיר את שם העמדה %1. @@ -1923,7 +1923,7 @@ The installer will quit and all changes will be lost. Cannot write hostname to target system - נכשלה כתיבת שם המחשב למערכת המטרה. + נכשלה כתיבת שם העמדה למערכת המטרה. @@ -1936,7 +1936,7 @@ The installer will quit and all changes will be lost. Failed to write keyboard configuration for the virtual console. - נכשלה כתיבת הגדרת מקלדת למסוף. + נכשלה כתיבת הגדרת מקלדת למסוף הוירטואלי. @@ -2036,7 +2036,7 @@ The installer will quit and all changes will be lost. The installer failed to set flags on partition %1. - תהליך ההתקנה נכשל בעת סימון דגלים במחיצה %1. + תהליך ההתקנה נכשל בעת הצבת סימונים במחיצה %1. @@ -2082,12 +2082,12 @@ The installer will quit and all changes will be lost. Bad destination system path. - יעד נתיב מערכת לא תקין. + יעד נתיב המערכת לא תקין. rootMountPoint is %1 - עיגון מחיצת מערכת ההפעלה היא %1 + עיגון מחיצת מערכת ההפעלה, rootMountPoint, היא %1 @@ -2153,7 +2153,7 @@ The installer will quit and all changes will be lost. This is an overview of what will happen once you start the install procedure. - להלן סקירה של מה שיתרחש לאחר שיתחיל תהליך ההתקנה. + להלן סקירת המאורעות שיתרחשו עם תחילת תהליך ההתקנה. @@ -2174,22 +2174,22 @@ The installer will quit and all changes will be lost. Your username contains invalid characters. Only lowercase letters and numbers are allowed. - שם המחשב מכיל ערכים לא תקינים. אך ורק אותיות לא רישיות ומספרים מורשים. + שם העמדה מכיל ערכים לא תקינים. ניתן להשתמש אך ורק באותיות קטנות ומספרים. Your hostname is too short. - שם המחשב קצר מדי. + שם העמדה קצר מדי. Your hostname is too long. - שם המחשב ארוך מדי. + שם העמדה ארוך מדי. Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - שם המחשב מכיל ערכים לא תקינים. אך ורק אותיות, מספרים ומקפים מורשים. + שם העמדה מכיל ערכים לא תקינים. אך ורק אותיות, מספרים ומקפים מורשים. diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index 20b519a40..2ec45e633 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -257,17 +257,17 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. &Yes - + &Da &No - + &Ne &Close - + &Zatvori @@ -1027,7 +1027,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Instalacija nije uspijela</h1><br/>%1 nije instaliran na vaše računalo.<br/>Greška: %2. @@ -2256,7 +2256,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>za %3</strong><br/><br/>Autorska prava 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorska prava 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Zahvale: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i <a href="https://www.transifex.com/calamares/calamares/">Calamares timu za prevođenje</a>.<br/><br/><a href="http://calamares.io/">Calamares</a>sponzorira <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index e837258dd..b27f24a33 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -267,7 +267,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. &Close - + Zam&knij @@ -1027,7 +1027,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Instalacja nie powiodła się</h1><br/>Nie udało się zainstalować %1 na Twoim komputerze.<br/>Komunikat o błędzie: %2. @@ -2256,7 +2256,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>dla %3</strong><br/><br/>Prawa autorskie 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Prawa autorskie 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Podziękowania dla: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i <a href="https://www.transifex.com/calamares/calamares/">zespołu tłumaczy Calamares</a>.<br/><br/><a href="http://calamares.io/">Projekt Calamares</a> jest sponsorowany przez <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. From a5cf599ea97638cfbfa12731dfa436feb0eeb012 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Fri, 7 Jul 2017 00:40:54 +0000 Subject: [PATCH 07/23] [core] Automatic merge of Transifex translations --- lang/calamares_fr.ts | 6 +++--- lang/calamares_he.ts | 24 ++++++++++++------------ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index 2331bad5a..d05b1c96f 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -267,7 +267,7 @@ L'installateur se fermera et les changements seront perdus. &Close - + &Fermer @@ -1027,7 +1027,7 @@ L'installateur se fermera et les changements seront perdus. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Installation échouée</h1><br/>%1 n'a pas été installée sur cet ordinateur.<br/>Le message d'erreur était : %2. @@ -2256,7 +2256,7 @@ L'installateur se fermera et les changements seront perdus. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>pour %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Merci à : Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg et <a href="https://www.transifex.com/calamares/calamares/">l'équipe de traducteurs de Calamares</a>.<br/><br/>Le développement de <a href="http://calamares.io/">Calamares</a>est sponsorisé par <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index 22a67950e..7e7b165ca 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -9,12 +9,12 @@ This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own. - מערכת זו הופעלה בתצורת אתחול <strong>EFI</strong>.<br><br> בכדי להגדיר הפעלה מתצורת אתחול EFI, על אשף ההתקנה להתקין מנהל אתחול, לדוגמה <strong>GRUB</strong> או <strong>systemd-boot</strong> על <strong>מחיצת מערכת EFI</strong>. פעולה זו היא אוטומטית, אלא אם כן תבחר להגדיר מחיצות באופן ידני, במקרה זה עליך לבחור זאת או להגדיר בעצמך. + מערכת זו הופעלה בתצורת אתחול <strong>EFI</strong>.<br><br> בכדי להגדיר הפעלה מתצורת אתחול EFI, על אשף ההתקנה להתקין מנהל אתחול מערכת, לדוגמה <strong>GRUB</strong> או <strong>systemd-boot</strong> על <strong>מחיצת מערכת EFI</strong>. פעולה זו היא אוטומטית, אלא אם כן תבחר להגדיר מחיצות באופן ידני, במקרה זה עליך לבחור זאת או להגדיר בעצמך. This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own. - מערכת זו הופעלה בתצורת אתחול <strong>BIOS</strong>.<br><br> בכדי להגדיר הפעלה מתצורת אתחול BIOS, על אשף ההתקנה להתקין מנהל אתחול, לדוגמה <strong>GRUB</strong>, בתחלית מחיצה או על ה <strong>Master Boot Record</strong> בצמוד להתחלה של טבלת המחיצות (מועדף). פעולה זו היא אוטומטית, אלא אם כן תבחר להגדיר מחיצות באופן ידני, במקרה זה עליך להגדיר זאת בעצמך. + מערכת זו הופעלה בתצורת אתחול <strong>BIOS</strong>.<br><br> בכדי להגדיר הפעלה מתצורת אתחול BIOS, על אשף ההתקנה להתקין מנהל אתחול מערכת, לדוגמה <strong>GRUB</strong>, בתחלית מחיצה או על ה <strong>Master Boot Record</strong> בצמוד להתחלה של טבלת המחיצות (מועדף). פעולה זו היא אוטומטית, אלא אם כן תבחר להגדיר מחיצות באופן ידני, במקרה זה עליך להגדיר זאת בעצמך. @@ -37,7 +37,7 @@ Do not install a boot loader - אל תתקין מנהל אתחול, boot loader + אל תתקין מנהל אתחול מערכת, boot loader @@ -159,28 +159,28 @@ Output: External command failed to finish - פקודה חיצונית כשלה בעת סוף הרצת הפקודה + הרצת פקודה חיצונית לא הצליחה להסתיים Command %1 failed to finish in %2s. Output: %3 - פקודה %1 נכשלה לקראת סיומה ב %2 שניות. + פקודה %1 לא הצליחה להסתיים ב %2 שניות. פלט: %3 External command finished with errors - פעולת פקודה חיצונית הסתיימה עם שגיאות + פקודה חיצונית הסתיימה עם שגיאות Command %1 finished with exit code %2. Output: %3 - פעולת פקודה %1 הסתיימה עם קוד יציאה %2. + פקודה %1 הסתיימה עם קוד יציאה %2. פלט: %3 @@ -252,7 +252,7 @@ Output: Do you really want to cancel the current install process? The installer will quit and all changes will be lost. האם אתה בטוח שברצונך לבטל את תהליך ההתקנה? -אשף ההתקנה ייסגר וכלל השינויים יאבדו. +אשף ההתקנה ייסגר וכל השינויים יאבדו. @@ -325,7 +325,7 @@ The installer will quit and all changes will be lost. unparseable Python traceback - עקבה לאחור של Python לא ניתנת לנתוח + עקבה לאחור של Python לא ניתנת לניתוח @@ -407,7 +407,7 @@ The installer will quit and all changes will be lost. Boot loader location: - מיקום מנהל האיתחול: + מיקום מנהל אתחול המערכת: @@ -999,7 +999,7 @@ The installer will quit and all changes will be lost. Install boot loader on <strong>%1</strong>. - התקן מנהל אתחול על <strong>%1</strong>. + התקן מנהל אתחול מערכת על <strong>%1</strong>. @@ -1558,7 +1558,7 @@ The installer will quit and all changes will be lost. Install boot &loader on: - התקן &מנהל אתחול על: + התקן &מנהל אתחול מערכת על: From a56cf82d6cf9f237f1bd8025e5a97f9781d5b4db Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Sat, 8 Jul 2017 00:41:20 +0000 Subject: [PATCH 08/23] [core] Automatic merge of Transifex translations --- lang/calamares_ca.ts | 6 +++--- lang/calamares_zh_CN.ts | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index 5ec20e63d..7e203ae54 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -267,7 +267,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. &Close - + Tan&ca @@ -1027,7 +1027,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>La instal·lació ha fallat</h1><br/>No s'ha instal·lat %1 a l'ordinador.<br/>El missatge d'error ha estat el següent: %2. @@ -2256,7 +2256,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agraïments: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Equip de traducció del Calamares</a>.<br/><br/><a href="http://calamares.io/">Calamares:</a> desenvolupament patrocinat per <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index 34d930cbb..528525bd2 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -258,17 +258,17 @@ The installer will quit and all changes will be lost. &Yes - + &是 &No - + &否 &Close - + &关闭 @@ -1029,7 +1029,7 @@ The installer will quit and all changes will be lost. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>安装失败</h1><br/>%1 未在你的电脑上安装。<br/>错误信息:%2。 From 861473f3f670cb2d4ea32dc7527110cbf09cb63f Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Sun, 9 Jul 2017 00:41:01 +0000 Subject: [PATCH 09/23] [core] Automatic merge of Transifex translations --- lang/calamares_ca.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index 7e203ae54..0ad5e2503 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -2256,7 +2256,7 @@ L'instal·lador es tancarà i tots els canvis es perdran. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agraïments: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Equip de traducció del Calamares</a>.<br/><br/><a href="http://calamares.io/">Calamares:</a> desenvolupament patrocinat per <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agraïments: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Equip de traducció del Calamares</a>.<br/><br/><a href="http://calamares.io/">El desenvolupament </a> del Calamares està patrocinat per <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. From 925d3a61a7cfbd7fe13035f3dac2fea548128292 Mon Sep 17 00:00:00 2001 From: Lisa Vitolo Date: Sun, 9 Jul 2017 10:10:04 -0400 Subject: [PATCH 10/23] Add "MB" suffix to the "edit partition" size box. Makes it easier to know which unit Calamares is using when resizing a partition. The "Create partition" dialog has it already. --- src/modules/partition/gui/EditExistingPartitionDialog.ui | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/modules/partition/gui/EditExistingPartitionDialog.ui b/src/modules/partition/gui/EditExistingPartitionDialog.ui index edee3c7a7..e36d94fce 100644 --- a/src/modules/partition/gui/EditExistingPartitionDialog.ui +++ b/src/modules/partition/gui/EditExistingPartitionDialog.ui @@ -124,7 +124,11 @@ - + + + MB + + From 9be15e68b66363a11a7f1d3581e5f9d9c6257b0c Mon Sep 17 00:00:00 2001 From: Lisa Vitolo Date: Sun, 9 Jul 2017 18:20:00 +0100 Subject: [PATCH 11/23] Change both size box suffices to MiB. --- src/modules/partition/gui/CreatePartitionDialog.ui | 2 +- src/modules/partition/gui/EditExistingPartitionDialog.ui | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/partition/gui/CreatePartitionDialog.ui b/src/modules/partition/gui/CreatePartitionDialog.ui index 53445e0ec..ba457b29c 100644 --- a/src/modules/partition/gui/CreatePartitionDialog.ui +++ b/src/modules/partition/gui/CreatePartitionDialog.ui @@ -45,7 +45,7 @@ - MB + MiB diff --git a/src/modules/partition/gui/EditExistingPartitionDialog.ui b/src/modules/partition/gui/EditExistingPartitionDialog.ui index e36d94fce..c242e3bbc 100644 --- a/src/modules/partition/gui/EditExistingPartitionDialog.ui +++ b/src/modules/partition/gui/EditExistingPartitionDialog.ui @@ -126,7 +126,7 @@ - MB + MiB From 984a83deb9ec33794f654e463b0b33fe02a397bc Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 09:26:17 -0400 Subject: [PATCH 12/23] LightDM: if lightdm.conf doesn't exist (for autologin), create it FIXES #568 --- src/modules/displaymanager/main.py | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/src/modules/displaymanager/main.py b/src/modules/displaymanager/main.py index 2f98dbf07..d8a635eff 100644 --- a/src/modules/displaymanager/main.py +++ b/src/modules/displaymanager/main.py @@ -281,12 +281,23 @@ def set_autologin(username, lightdm_conf.write(line) else: - return ( - "Cannot write LightDM configuration file", - "LightDM config file {!s} does not exist".format( - lightdm_conf_path + try: + # Create a new lightdm.conf file; this is documented to be + # read last, after aeverything in lightdm.conf.d/ + with open(lightdm_conf_path, 'w') as lightdm_conf: + if do_autologin: + lightdm_conf.write( + "autologin-user={!s}\n".format(username)) + else: + lightdm_conf.write( + "#autologin-user=\n") + except FileNotFOundError: + return ( + "Cannot write LightDM configuration file", + "LightDM config file {!s} does not exist".format( + lightdm_conf_path + ) ) - ) if "slim" == displaymanager: # Systems with Slim as Desktop Manager From 9561bac1c8e323699fd2085066193b139afc6a5f Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 10:14:28 -0400 Subject: [PATCH 13/23] SUSE DM: add special case configuring autologin in sysconfig (openSUSE) FIXES #582 --- src/modules/displaymanager/displaymanager.conf | 4 ++++ src/modules/displaymanager/main.py | 17 +++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/src/modules/displaymanager/displaymanager.conf b/src/modules/displaymanager/displaymanager.conf index 59ad061dc..1c30ed637 100644 --- a/src/modules/displaymanager/displaymanager.conf +++ b/src/modules/displaymanager/displaymanager.conf @@ -20,3 +20,7 @@ displaymanagers: #display manager are set up correctly. This is normally done by the distribution #packages, and best left to them. Therefore, it is disabled by default. basicSetup: false + +#If true, setup autologin for openSUSE. This only makes sense on openSUSE +#derivatives or other systems where /etc/sysconfig/displaymanager exists. +sysconfigSetup: false diff --git a/src/modules/displaymanager/main.py b/src/modules/displaymanager/main.py index d8a635eff..03edbbd5c 100644 --- a/src/modules/displaymanager/main.py +++ b/src/modules/displaymanager/main.py @@ -355,6 +355,18 @@ def set_autologin(username, with open(sddm_conf_path, 'w') as sddm_config_file: sddm_config.write(sddm_config_file, space_around_delimiters=False) + if "sysconfig" == displaymanager: + dmauto = "DISPLAYMANAGER_AUTOLOGIN" + + os.system( + "sed -i -e 's|^{!s}=.*|{!s}=\"{!s}\"|' " + "{!s}/etc/sysconfig/displaymanager".format( + dmauto, dmauto, + username if do_autologin else "", + root_mount_point + ) + ) + return None @@ -662,6 +674,11 @@ def run(): ) if dm_message is not None: dm_setup_message.append("{!s}: {!s}".format(*dm_message)) + + if ("sysconfigSetup" in libcalamares.job.configuration + and libcalamares.job.configuration["sysconfigSetup"]): + set_autologin(username, "sysconfig", None, root_mount_point) + if dm_setup_message: return ("Display manager configuration was incomplete", "\n".join(dm_setup_message)) From 11e5a6cbe062244dd9c0cc0969a3a121d2d5350f Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 5 Jul 2017 06:55:35 -0400 Subject: [PATCH 14/23] Python: trim description to the first line of run.__doc__ --- src/libcalamares/PythonJob.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index 6de89d184..e02f9e210 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -300,7 +300,13 @@ PythonJob::exec() bp::extract< std::string > entryPoint_doc_attr(entryPoint.attr( "__doc__" ) ); if ( entryPoint_doc_attr.check() ) - m_description = QString::fromStdString( entryPoint_doc_attr() ); + { + m_description = QString::fromStdString( entryPoint_doc_attr() ).trimmed(); + auto i_newline = m_description.indexOf('\n'); + if ( i_newline > 0 ) + m_description.truncate( i_newline ); + cDebug() << "Job" << prettyName() << "->" << m_description; + } bp::object runResult = entryPoint(); From fcde28ca9d1eda05623002861fa3d4cdec4f9c9d Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 11:29:22 -0400 Subject: [PATCH 15/23] Python: tidy description of hwclock module --- src/modules/hwclock/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/hwclock/main.py b/src/modules/hwclock/main.py index bfb3d1df7..8b31080dd 100644 --- a/src/modules/hwclock/main.py +++ b/src/modules/hwclock/main.py @@ -28,7 +28,7 @@ import libcalamares def run(): """ - Set hardware clock + Set hardware clock. """ root_mount_point = libcalamares.globalstorage.value("rootMountPoint") From 34b96148aeda3d5df9b3e4545d864d4e81cd36d6 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 11:49:19 -0400 Subject: [PATCH 16/23] Python: at beginning of job, if pretty status has changed, emit progress to update it in the UI. --- src/libcalamares/PythonJob.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index e02f9e210..1955b64fc 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -306,6 +306,7 @@ PythonJob::exec() if ( i_newline > 0 ) m_description.truncate( i_newline ); cDebug() << "Job" << prettyName() << "->" << m_description; + emit progress( 0 ); } bp::object runResult = entryPoint(); From ae6a9cd822a323e95a257965f7fd089cbb44598c Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 11:57:05 -0400 Subject: [PATCH 17/23] Python: move unsquash documentation to the config file --- src/modules/unpackfs/main.py | 17 +---------------- src/modules/unpackfs/unpackfs.conf | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/modules/unpackfs/main.py b/src/modules/unpackfs/main.py index c0970ddfe..9eaa5c622 100644 --- a/src/modules/unpackfs/main.py +++ b/src/modules/unpackfs/main.py @@ -263,22 +263,7 @@ class UnpackOperation: def run(): """ - Unsquashes filesystem from given image file. - - from globalstorage: rootMountPoint - from job.configuration: the path to where to mount the source image(s) for - copying an ordered list of unpack mappings for image file <-> target dir - relative to rootMountPoint, e.g.: - configuration: - unpack: - - source: "/path/to/filesystem.img" - sourcefs: "ext4" - destination: "" - - source: "/path/to/another/filesystem.sqfs" - sourcefs: "squashfs" - destination: "" - - :return: + Unsquash filesystem. """ PATH_PROCFS = '/proc/filesystems' diff --git a/src/modules/unpackfs/unpackfs.conf b/src/modules/unpackfs/unpackfs.conf index 68de113b5..34e7bc48d 100644 --- a/src/modules/unpackfs/unpackfs.conf +++ b/src/modules/unpackfs/unpackfs.conf @@ -1,5 +1,21 @@ +# Unsquash / unpack a filesystem. Multiple sources are supported, and +# they may be squashed or plain filesystems. +# +# Configuration: +# +# from globalstorage: rootMountPoint +# from job.configuration: the path to where to mount the source image(s) +# for copying an ordered list of unpack mappings for image file <-> +# target dir relative to rootMountPoint. + --- unpack: +# Each list item is unpacked, in order, to the target system. +# Each list item has the following attributes: +# source: path relative to the live / intstalling system to the image +# sourcefs: ext4 or squashfs (may be others if mount supports is) +# destination: path relative to rootMountPoint (so in the target +# system) where this filesystem is unpacked. - source: "/path/to/filesystem.img" sourcefs: "ext4" destination: "" From f466c5de804fa96f35dcd2b90136d515091da4a9 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 14:25:19 -0400 Subject: [PATCH 18/23] Travis: try to use the new image again, be stupid about /build --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 003a869f9..3eebf6851 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,6 @@ install: - pip install pycodestyle script: - - docker run -v $PWD:/build calamares bash -lc "cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2" + - docker run -v $PWD:/build calamares bash -lc "mkdir /build ; chmod 755 /build ; cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2" - pycodestyle --exclude=thirdparty,.git $PWD -group: deprecated-2017Q2 From fc577b4b79ff39d9e9892a1f1bb9a84a1f961546 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 14:38:54 -0400 Subject: [PATCH 19/23] Travis: looks like /build exists in the resulting system, so use /cbuild --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3eebf6851..7af7cac7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,6 @@ install: - pip install pycodestyle script: - - docker run -v $PWD:/build calamares bash -lc "mkdir /build ; chmod 755 /build ; cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2" + - docker run -v $PWD:/cbuild calamares bash -lc "mkdir /cbuild ; chmod 755 /cbuild ; cd /cbuild && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2" - pycodestyle --exclude=thirdparty,.git $PWD From ce11c7ab6dd7a9a92933755a2dfdaf2d37875446 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 14:43:13 -0400 Subject: [PATCH 20/23] LightDM: fix type (thanks Kevin Kofler) --- src/modules/displaymanager/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/displaymanager/main.py b/src/modules/displaymanager/main.py index 03edbbd5c..fbed64def 100644 --- a/src/modules/displaymanager/main.py +++ b/src/modules/displaymanager/main.py @@ -291,7 +291,7 @@ def set_autologin(username, else: lightdm_conf.write( "#autologin-user=\n") - except FileNotFOundError: + except FileNotFoundError: return ( "Cannot write LightDM configuration file", "LightDM config file {!s} does not exist".format( From 7c06556fac4d818b3e94ea61dda23ce2dcb63c11 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 10 Jul 2017 19:16:51 -0400 Subject: [PATCH 21/23] Travis: Do an out-of-source build --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7af7cac7c..c45e6235c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,6 @@ install: - pip install pycodestyle script: - - docker run -v $PWD:/cbuild calamares bash -lc "mkdir /cbuild ; chmod 755 /cbuild ; cd /cbuild && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON . && make -j2" + - docker run -v $PWD:/build calamares bash -lc "mkdir /cbuild ; cd /cbuild && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON ../build && make -j2" - pycodestyle --exclude=thirdparty,.git $PWD From 8c61bc085bfad6cf098efdd5646eb1ed83d467f7 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Tue, 11 Jul 2017 01:04:13 +0000 Subject: [PATCH 22/23] [core] Automatic merge of Transifex translations --- lang/calamares_ar.ts | 31 ++++++++++++++++++------------- lang/calamares_ast.ts | 31 ++++++++++++++++++------------- lang/calamares_bg.ts | 31 ++++++++++++++++++------------- lang/calamares_ca.ts | 31 ++++++++++++++++++------------- lang/calamares_cs_CZ.ts | 31 ++++++++++++++++++------------- lang/calamares_da.ts | 31 ++++++++++++++++++------------- lang/calamares_de.ts | 31 ++++++++++++++++++------------- lang/calamares_el.ts | 31 ++++++++++++++++++------------- lang/calamares_en.ts | 31 ++++++++++++++++++------------- lang/calamares_en_GB.ts | 31 ++++++++++++++++++------------- lang/calamares_es.ts | 31 ++++++++++++++++++------------- lang/calamares_es_ES.ts | 31 ++++++++++++++++++------------- lang/calamares_es_MX.ts | 31 ++++++++++++++++++------------- lang/calamares_es_PR.ts | 31 ++++++++++++++++++------------- lang/calamares_et.ts | 31 ++++++++++++++++++------------- lang/calamares_eu.ts | 31 ++++++++++++++++++------------- lang/calamares_fa.ts | 31 ++++++++++++++++++------------- lang/calamares_fi_FI.ts | 31 ++++++++++++++++++------------- lang/calamares_fr.ts | 31 ++++++++++++++++++------------- lang/calamares_fr_CH.ts | 31 ++++++++++++++++++------------- lang/calamares_gl.ts | 31 ++++++++++++++++++------------- lang/calamares_gu.ts | 31 ++++++++++++++++++------------- lang/calamares_he.ts | 31 ++++++++++++++++++------------- lang/calamares_hi.ts | 31 ++++++++++++++++++------------- lang/calamares_hr.ts | 31 ++++++++++++++++++------------- lang/calamares_hu.ts | 31 ++++++++++++++++++------------- lang/calamares_id.ts | 31 ++++++++++++++++++------------- lang/calamares_is.ts | 31 ++++++++++++++++++------------- lang/calamares_it_IT.ts | 31 ++++++++++++++++++------------- lang/calamares_ja.ts | 31 ++++++++++++++++++------------- lang/calamares_kk.ts | 31 ++++++++++++++++++------------- lang/calamares_lo.ts | 31 ++++++++++++++++++------------- lang/calamares_lt.ts | 31 ++++++++++++++++++------------- lang/calamares_mr.ts | 31 ++++++++++++++++++------------- lang/calamares_nb.ts | 31 ++++++++++++++++++------------- lang/calamares_nl.ts | 31 ++++++++++++++++++------------- lang/calamares_pl.ts | 31 ++++++++++++++++++------------- lang/calamares_pl_PL.ts | 31 ++++++++++++++++++------------- lang/calamares_pt_BR.ts | 31 ++++++++++++++++++------------- lang/calamares_pt_PT.ts | 37 +++++++++++++++++++++---------------- lang/calamares_ro.ts | 31 ++++++++++++++++++------------- lang/calamares_ru.ts | 31 ++++++++++++++++++------------- lang/calamares_sk.ts | 31 ++++++++++++++++++------------- lang/calamares_sl.ts | 31 ++++++++++++++++++------------- lang/calamares_sr.ts | 31 ++++++++++++++++++------------- lang/calamares_sr@latin.ts | 31 ++++++++++++++++++------------- lang/calamares_sv.ts | 31 ++++++++++++++++++------------- lang/calamares_th.ts | 31 ++++++++++++++++++------------- lang/calamares_tr_TR.ts | 31 ++++++++++++++++++------------- lang/calamares_uk.ts | 31 ++++++++++++++++++------------- lang/calamares_ur.ts | 31 ++++++++++++++++++------------- lang/calamares_uz.ts | 31 ++++++++++++++++++------------- lang/calamares_zh_CN.ts | 31 ++++++++++++++++++------------- lang/calamares_zh_TW.ts | 31 ++++++++++++++++++------------- 54 files changed, 975 insertions(+), 705 deletions(-) diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index 5bb1487ae..31e8ef2be 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. يشغّل عمليّة %1. - + Bad working directory path مسار سيء لمجلد العمل - + Working directory %1 for python job %2 is not readable. لا يمكن القراءة من مجلد العمل %1 الخاص بعملية بايثون %2. - + Bad main script file ملفّ السّكربت الرّئيس سيّء. - + Main script file %1 for python job %2 is not readable. ملفّ السّكربت الرّئيس %1 لمهمّة بايثون %2 لا يمكن قراءته. - + Boost.Python error in job "%1". خطأ Boost.Python في العمل "%1". @@ -550,6 +550,11 @@ The installer will quit and all changes will be lost. Create a Partition أنشئ قسمًا + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ The installer will quit and all changes will be lost. Si&ze: الح&جم: - - - MB - م.بايت - En&crypt @@ -926,12 +926,17 @@ The installer will quit and all changes will be lost. الح&جم: - + + MiB + + + + Fi&le System: نظام المل&فّات: - + Flags: الشّارات: diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index 698c8e53d..0278c83fc 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -188,32 +188,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. Executando operación %1. - + Bad working directory path Camín incorreutu del direutoriu de trabayu - + Working directory %1 for python job %2 is not readable. El direutoriu de trabayu %1 pal trabayu python %2 nun ye lleible. - + Bad main script file Ficheru incorreutu del script principal - + Main script file %1 for python job %2 is not readable. El ficheru de script principal %1 pal trabayu python %2 nun ye lleible. - + Boost.Python error in job "%1". Fallu Boost.Python nel trabayu «%1». @@ -550,6 +550,11 @@ L'instalador colará y perderánse toles camudancies. Create a Partition Crear una partición + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ L'instalador colará y perderánse toles camudancies. Si&ze: Tama&ñu: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ L'instalador colará y perderánse toles camudancies. Tama&ñu: - + + MiB + + + + Fi&le System: Sistema de fic&heros: - + Flags: Banderes: diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index a2a83eb73..27f1a96ce 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Изпълнение на %1 операция. - + Bad working directory path Невалиден път на работната директория - + Working directory %1 for python job %2 is not readable. Работна директория %1 за python задача %2 не се чете. - + Bad main script file Невалиден файл на главен скрипт - + Main script file %1 for python job %2 is not readable. Файлът на главен скрипт %1 за python задача %2 не се чете. - + Boost.Python error in job "%1". Boost.Python грешка в задача "%1". @@ -551,6 +551,11 @@ The installer will quit and all changes will be lost. Create a Partition Създай дял + + + MiB + + Partition &Type: @@ -586,11 +591,6 @@ The installer will quit and all changes will be lost. Si&ze: Раз&мер: - - - MB - МБ - En&crypt @@ -927,12 +927,17 @@ The installer will quit and all changes will be lost. Раз&мер: - + + MiB + + + + Fi&le System: Фа&йлова система: - + Flags: Флагове: diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index 0ad5e2503..4750075bb 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -188,32 +188,32 @@ Sortida: Calamares::PythonJob - + Running %1 operation. Executant l'operació %1. - + Bad working directory path Ruta errònia del directori de treball - + Working directory %1 for python job %2 is not readable. El directori de treball %1 per a la tasca python %2 no és llegible. - + Bad main script file Fitxer erroni d'script principal - + Main script file %1 for python job %2 is not readable. El fitxer de script principal %1 per a la tasca de python %2 no és llegible. - + Boost.Python error in job "%1". Error de Boost.Python a la tasca "%1". @@ -550,6 +550,11 @@ L'instal·lador es tancarà i tots els canvis es perdran. Create a Partition Crea una partició + + + MiB + MB + Partition &Type: @@ -585,11 +590,6 @@ L'instal·lador es tancarà i tots els canvis es perdran. Si&ze: Mi&da: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ L'instal·lador es tancarà i tots els canvis es perdran. Mi&da: - + + MiB + MB + + + Fi&le System: S&istema de fitxers: - + Flags: Banderes: diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index 8c476578d..16eb11b27 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -188,32 +188,32 @@ Výstup: Calamares::PythonJob - + Running %1 operation. Spouštím %1 operaci. - + Bad working directory path Špatná cesta k pracovnímu adresáři. - + Working directory %1 for python job %2 is not readable. Pracovní adresář %1 pro Python skript %2 není čitelný. - + Bad main script file Špatný hlavní soubor skriptu. - + Main script file %1 for python job %2 is not readable. Hlavní soubor %1 pro Python skript %2 není čitelný. - + Boost.Python error in job "%1". Boost.Python chyba ve skriptu "%1". @@ -550,6 +550,11 @@ Instalační program bude ukončen a všechny změny ztraceny. Create a Partition Vytvořit oddíl + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Instalační program bude ukončen a všechny změny ztraceny. Si&ze: &Velikost: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Instalační program bude ukončen a všechny změny ztraceny. &Velikost: - + + MiB + + + + Fi&le System: &Souborový systém: - + Flags: Příznaky: diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 8335c453e..8b7986e26 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Kører %1-handling. - + Bad working directory path Ugyldig arbejdsmappesti - + Working directory %1 for python job %2 is not readable. Arbejdsmappe %1 for python-job %2 er ikke læsbar. - + Bad main script file Ugyldig primær skriptfil - + Main script file %1 for python job %2 is not readable. Primær skriptfil %1 for python-job %2 er ikke læsbar. - + Boost.Python error in job "%1". Boost.Python-fejl i job "%1". @@ -550,6 +550,11 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Create a Partition Opret en partition + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Si&ze: &Størrelse: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Stø&rrelse: - + + MiB + + + + Fi&le System: Fi&lsystem: - + Flags: Flag: diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index e6d5f88f6..ab60a9d80 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -188,32 +188,32 @@ Ausgabe: Calamares::PythonJob - + Running %1 operation. Operation %1 wird ausgeführt. - + Bad working directory path Fehlerhafter Arbeitsverzeichnis-Pfad - + Working directory %1 for python job %2 is not readable. Arbeitsverzeichnis %1 für Python-Job %2 ist nicht lesbar. - + Bad main script file Fehlerhaftes Hauptskript - + Main script file %1 for python job %2 is not readable. Hauptskript-Datei %1 für Python-Job %2 ist nicht lesbar. - + Boost.Python error in job "%1". Boost.Python-Fehler in Job "%1". @@ -550,6 +550,11 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Create a Partition Partition erstellen + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Si&ze: Grö&sse: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Grö&sse: - + + MiB + + + + Fi&le System: Datei&system: - + Flags: Markierungen: diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index ea574bed5..2de7ad3d6 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Εκτελείται η λειτουργία %1. - + Bad working directory path Λανθασμένη διαδρομή καταλόγου εργασίας - + Working directory %1 for python job %2 is not readable. Ο ενεργός κατάλογος %1 για την εργασία python %2 δεν είναι δυνατόν να διαβαστεί. - + Bad main script file Λανθασμένο κύριο αρχείο δέσμης ενεργειών - + Main script file %1 for python job %2 is not readable. Η κύρια δέσμη ενεργειών %1 για την εργασία python %2 δεν είναι δυνατόν να διαβαστεί. - + Boost.Python error in job "%1". Σφάλμα Boost.Python στην εργασία "%1". @@ -550,6 +550,11 @@ The installer will quit and all changes will be lost. Create a Partition Δημιουργία κατάτμησης + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ The installer will quit and all changes will be lost. Si&ze: &Μέγεθος: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ The installer will quit and all changes will be lost. &Μέγεθος: - + + MiB + + + + Fi&le System: &Σύστημα αρχείων: - + Flags: Σημαίες: diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index 3f8e5f14c..7d4a780c4 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Running %1 operation. - + Bad working directory path Bad working directory path - + Working directory %1 for python job %2 is not readable. Working directory %1 for python job %2 is not readable. - + Bad main script file Bad main script file - + Main script file %1 for python job %2 is not readable. Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". Boost.Python error in job "%1". @@ -550,6 +550,11 @@ The installer will quit and all changes will be lost. Create a Partition Create a Partition + + + MiB + MiB + Partition &Type: @@ -585,11 +590,6 @@ The installer will quit and all changes will be lost. Si&ze: Si&ze: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ The installer will quit and all changes will be lost. Si&ze: - + + MiB + MiB + + + Fi&le System: Fi&le System: - + Flags: Flags: diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index 999e36b55..800b15766 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Bad working directory path - + Working directory %1 for python job %2 is not readable. Working directory %1 for python job %2 is not readable. - + Bad main script file Bad main script file - + Main script file %1 for python job %2 is not readable. Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". Boost.Python error in job "%1". @@ -550,6 +550,11 @@ The installer will quit and all changes will be lost. Create a Partition Create a Partition + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ The installer will quit and all changes will be lost. Si&ze: Si&ze: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 432ce5eae..a20999274 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -189,32 +189,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. Ejecutando %1 operación. - + Bad working directory path Error en la ruta del directorio de trabajo - + Working directory %1 for python job %2 is not readable. El directorio de trabajo %1 para el script de python %2 no se puede leer. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. El script principal %1 del proceso python %2 no es accesible. - + Boost.Python error in job "%1". Error Boost.Python en el proceso "%1". @@ -551,6 +551,11 @@ Saldrá del instalador y se perderán todos los cambios. Create a Partition Crear partición + + + MiB + MiB + Partition &Type: @@ -586,11 +591,6 @@ Saldrá del instalador y se perderán todos los cambios. Si&ze: &Tamaño: - - - MB - MB - En&crypt @@ -927,12 +927,17 @@ Saldrá del instalador y se perderán todos los cambios. &Tamaño: - + + MiB + MiB + + + Fi&le System: S&istema de archivo: - + Flags: Banderas: diff --git a/lang/calamares_es_ES.ts b/lang/calamares_es_ES.ts index 4eae0850c..1024c7190 100644 --- a/lang/calamares_es_ES.ts +++ b/lang/calamares_es_ES.ts @@ -188,32 +188,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Ruta de trabajo errónea - + Working directory %1 for python job %2 is not readable. No se puede leer la ruta de trabajo %1 de la tarea %2 de python. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. No se puede leer el script principal %1 de la tarea %2 de python. - + Boost.Python error in job "%1". Error de Boost.Python en la tarea "%1". @@ -550,6 +550,11 @@ El instalador se cerrará y se perderán todos los cambios. Create a Partition Crear una partición + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ El instalador se cerrará y se perderán todos los cambios. Si&ze: Tamaño - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ El instalador se cerrará y se perderán todos los cambios. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index ed75f4d4c..47e1c4f58 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -188,32 +188,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. Ejecutando operación %1. - + Bad working directory path Ruta a la carpeta de trabajo errónea - + Working directory %1 for python job %2 is not readable. La carpeta de trabajo %1 para la tarea de python %2 no se pudo leer. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. El script principal %1 del proceso python %2 no es accesible. - + Boost.Python error in job "%1". Error Boost.Python en el proceso "%1". @@ -552,6 +552,11 @@ El instalador terminará y se perderán todos los cambios. Create a Partition Crear partición + + + MiB + + Partition &Type: @@ -587,11 +592,6 @@ El instalador terminará y se perderán todos los cambios. Si&ze: &Tamaño: - - - MB - MB - En&crypt @@ -928,12 +928,17 @@ El instalador terminará y se perderán todos los cambios. Tam&año: - + + MiB + + + + Fi&le System: Sis&tema de Archivos: - + Flags: diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index 33b73f201..ec7e53aa6 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -188,32 +188,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path La ruta del directorio de trabajo es incorrecta - + Working directory %1 for python job %2 is not readable. El directorio de trabajo %1 para el script de python %2 no se puede leer. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. El script principal %1 del proceso python %2 no es accesible. - + Boost.Python error in job "%1". Error Boost.Python en el proceso "%1". @@ -549,6 +549,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -584,11 +589,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -925,12 +925,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index adba34184..b1b46ab2c 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition Loo sektsioon + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: Suurus: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index d916c58d7..0df719cf4 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -186,32 +186,32 @@ Output: Calamares::PythonJob - + Running %1 operation. %1 eragiketa burutzen. - + Bad working directory path Direktorio ibilbide ezegokia - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -547,6 +547,11 @@ The installer will quit and all changes will be lost. Create a Partition Sortu partizio bat + + + MiB + + Partition &Type: @@ -582,11 +587,6 @@ The installer will quit and all changes will be lost. Si&ze: Ta&maina: - - - MB - MB - En&crypt @@ -923,12 +923,17 @@ The installer will quit and all changes will be lost. &Tamaina: - + + MiB + + + + Fi&le System: Fi&txategi-Sistema: - + Flags: diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index 2d20368a3..b33c67bba 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index ce6b61a3b..b19a2f6f9 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -188,32 +188,32 @@ Tuloste: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Epäkelpo työskentelyhakemiston polku - + Working directory %1 for python job %2 is not readable. Työkansio %1 pythonin työlle %2 ei ole luettavissa. - + Bad main script file Huono pää-skripti tiedosto - + Main script file %1 for python job %2 is not readable. Pääskriptitiedosto %1 pythonin työlle %2 ei ole luettavissa. - + Boost.Python error in job "%1". Boost.Python virhe työlle "%1". @@ -550,6 +550,11 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Create a Partition Luo levyosio + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Si&ze: K&oko: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index d05b1c96f..e8127b12d 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -188,32 +188,32 @@ Sortie : Calamares::PythonJob - + Running %1 operation. Exécution de l'opération %1. - + Bad working directory path Chemin du répertoire de travail invalide - + Working directory %1 for python job %2 is not readable. Le répertoire de travail %1 pour le job python %2 n'est pas accessible en lecture. - + Bad main script file Fichier de script principal invalide - + Main script file %1 for python job %2 is not readable. Le fichier de script principal %1 pour la tâche python %2 n'est pas accessible en lecture. - + Boost.Python error in job "%1". Erreur Boost.Python pour le job "%1". @@ -550,6 +550,11 @@ L'installateur se fermera et les changements seront perdus. Create a Partition Créer une partition + + + MiB + Mio + Partition &Type: @@ -585,11 +590,6 @@ L'installateur se fermera et les changements seront perdus. Si&ze: Ta&ille : - - - MB - Mo - En&crypt @@ -926,12 +926,17 @@ L'installateur se fermera et les changements seront perdus. Ta&ille: - + + MiB + Mio + + + Fi&le System: Sys&tème de fichiers: - + Flags: Drapeaux: diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index 11af0e609..5fca4c78f 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index 3ab959660..5718f4984 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -189,32 +189,32 @@ Saída: Calamares::PythonJob - + Running %1 operation. Excutando a operación %1. - + Bad working directory path A ruta ó directorio de traballo é errónea - + Working directory %1 for python job %2 is not readable. O directorio de traballo %1 para o traballo de python %2 non é lexible - + Bad main script file Ficheiro de script principal erróneo - + Main script file %1 for python job %2 is not readable. O ficheiro principal de script %1 para a execución de python %2 non é lexible. - + Boost.Python error in job "%1". Boost.Python tivo un erro na tarefa "%1". @@ -551,6 +551,11 @@ O instalador pecharase e perderanse todos os cambios. Create a Partition Crear partición + + + MiB + + Partition &Type: @@ -586,11 +591,6 @@ O instalador pecharase e perderanse todos os cambios. Si&ze: &Tamaño: - - - MB - MB - En&crypt @@ -927,12 +927,17 @@ O instalador pecharase e perderanse todos os cambios. &Tamaño: - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index 6a6974d85..d3e41f698 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index 7e7b165ca..19e2db610 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. מריץ פעולה %1. - + Bad working directory path נתיב תיקיית עבודה לא תקין - + Working directory %1 for python job %2 is not readable. תיקיית עבודה %1 עבור משימת python %2 לא קריאה. - + Bad main script file קובץ תסריט הרצה ראשי לא תקין - + Main script file %1 for python job %2 is not readable. קובץ תסריט הרצה ראשי %1 עבור משימת python %2 לא קריא. - + Boost.Python error in job "%1". שגיאת Boost.Python במשימה "%1". @@ -550,6 +550,11 @@ The installer will quit and all changes will be lost. Create a Partition ייצר מחיצה + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ The installer will quit and all changes will be lost. Si&ze: גו&דל: - - - MB - מגה בייט - En&crypt @@ -926,12 +926,17 @@ The installer will quit and all changes will be lost. גו&דל: - + + MiB + + + + Fi&le System: מ&ערכת קבצים: - + Flags: סימונים: diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index 9956c01ad..523ae17e6 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index 2ec45e633..5e509a7dc 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -188,32 +188,32 @@ Izlaz: Calamares::PythonJob - + Running %1 operation. Izvodim %1 operaciju. - + Bad working directory path Krivi put do radnog direktorija - + Working directory %1 for python job %2 is not readable. Radni direktorij %1 za python zadatak %2 nije čitljiv. - + Bad main script file Kriva glavna datoteka skripte - + Main script file %1 for python job %2 is not readable. Glavna skriptna datoteka %1 za python zadatak %2 nije čitljiva. - + Boost.Python error in job "%1". Boost.Python greška u zadatku "%1". @@ -550,6 +550,11 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Create a Partition Stvori particiju + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Si&ze: Ve&ličina: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Ve&ličina: - + + MiB + + + + Fi&le System: Da&totečni sustav: - + Flags: Oznake: diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index 0305e4935..7b2174043 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -188,32 +188,32 @@ Kimenet: Calamares::PythonJob - + Running %1 operation. Futó %1 műveletek. - + Bad working directory path Rossz munkakönyvtár útvonal - + Working directory %1 for python job %2 is not readable. Munkakönyvtár %1 a python folyamathoz %2 nem olvasható. - + Bad main script file Rossz alap script fájl - + Main script file %1 for python job %2 is not readable. Alap script fájl %1 a python folyamathoz %2 nem olvasható. - + Boost.Python error in job "%1". Boost. Python hiba ebben a folyamatban "%1". @@ -551,6 +551,11 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Create a Partition Partíció Létrehozása + + + MiB + + Partition &Type: @@ -586,11 +591,6 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Si&ze: Mé&ret: - - - MB - MB - En&crypt @@ -927,12 +927,17 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l &méret: - + + MiB + + + + Fi&le System: &fájlrendszer - + Flags: Zászlók: diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index 4c17bfc17..79013d00d 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -188,32 +188,32 @@ Keluaran: Calamares::PythonJob - + Running %1 operation. Menjalankan %1 operasi. - + Bad working directory path Jalur lokasi direktori tidak berjalan baik - + Working directory %1 for python job %2 is not readable. Direktori kerja %1 untuk penugasan python %2 tidak dapat dibaca. - + Bad main script file Berkas skrip utama buruk - + Main script file %1 for python job %2 is not readable. Berkas skrip utama %1 untuk penugasan python %2 tidak dapat dibaca. - + Boost.Python error in job "%1". Boost.Python mogok dalam penugasan "%1". @@ -552,6 +552,11 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Create a Partition Buat Partisi + + + MiB + + Partition &Type: @@ -587,11 +592,6 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Si&ze: Uku&ran: - - - MB - MB - En&crypt @@ -928,12 +928,17 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Uku&ran: - + + MiB + + + + Fi&le System: Sis&tem Berkas: - + Flags: Bendera: diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index beb508d68..f6b050ea8 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -188,32 +188,32 @@ Frálag: Calamares::PythonJob - + Running %1 operation. Keyri %1 aðgerð. - + Bad working directory path Röng slóð á vinnumöppu - + Working directory %1 for python job %2 is not readable. Vinnslumappa %1 fyrir python-verkið %2 er ekki lesanleg. - + Bad main script file Röng aðal-skriftuskrá - + Main script file %1 for python job %2 is not readable. Aðal-skriftuskrá %1 fyrir python-verkið %2 er ekki lesanleg. - + Boost.Python error in job "%1". Boost.Python villa í verkinu "%1". @@ -550,6 +550,11 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Create a Partition Búa til disksneið + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Si&ze: St&ærð: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. St&ærð: - + + MiB + + + + Fi&le System: Skráaker&fi: - + Flags: Flögg: diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index 8050b5b15..e5c308344 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Operazione %1 in esecuzione. - + Bad working directory path Il percorso della cartella corrente non è corretto - + Working directory %1 for python job %2 is not readable. La cartella corrente %1 per l'attività di Python %2 non è accessibile. - + Bad main script file File dello script principale non valido - + Main script file %1 for python job %2 is not readable. Il file principale dello script %1 per l'attività di python %2 non è accessibile. - + Boost.Python error in job "%1". Errore da Boost.Python nell'operazione "%1". @@ -550,6 +550,11 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Create a Partition Creare una partizione + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Si&ze: &Dimensione: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno Di&mensione: - + + MiB + + + + Fi&le System: Fi&le System: - + Flags: Flag: diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index 4b747e355..d87c331de 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. %1 操作を実行中。 - + Bad working directory path 不正なワーキングディレクトリパス - + Working directory %1 for python job %2 is not readable. python ジョブ %2 において作業ディレクトリ %1 が読み込めません。 - + Bad main script file 不正なメインスクリプトファイル - + Main script file %1 for python job %2 is not readable. python ジョブ %2 におけるメインスクリプトファイル %1 が読み込めません。 - + Boost.Python error in job "%1". ジョブ "%1" での Boost.Python エラー。 @@ -550,6 +550,11 @@ The installer will quit and all changes will be lost. Create a Partition パーティションの生成 + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ The installer will quit and all changes will be lost. Si&ze: サイズ(&Z) - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ The installer will quit and all changes will be lost. サイズ(&Z): - + + MiB + + + + Fi&le System: ファイルシステム(&L) - + Flags: フラグ: diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index 20b3d801c..3f2c486ff 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index ba6dd3fdd..fb64c35d5 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index 3f903f8ed..eff793978 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -188,32 +188,32 @@ Išvestis: Calamares::PythonJob - + Running %1 operation. Vykdoma %1 operacija. - + Bad working directory path Netinkama darbinio katalogo vieta - + Working directory %1 for python job %2 is not readable. Darbinis %1 python katalogas dėl %2 užduoties yra neskaitomas - + Bad main script file Prastas pagrindinio skripto failas - + Main script file %1 for python job %2 is not readable. Pagrindinis skriptas %1 dėl python %2 užduoties yra neskaitomas - + Boost.Python error in job "%1". Boost.Python klaida darbe "%1". @@ -550,6 +550,11 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Create a Partition Sukurti skaidinį + + + MiB + MiB + Partition &Type: @@ -585,11 +590,6 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Si&ze: D&ydis: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. Dy&dis: - + + MiB + MiB + + + Fi&le System: Fai&lų sistema: - + Flags: Vėliavėlės: diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index 88c7f21c9..a0e887f30 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index 7bd073a4a..2222109ea 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Feil filsti til arbeidsmappe - + Working directory %1 for python job %2 is not readable. Arbeidsmappe %1 for python oppgave %2 er ikke lesbar. - + Bad main script file Ugyldig hovedskriptfil - + Main script file %1 for python job %2 is not readable. Hovedskriptfil %1 for python oppgave %2 er ikke lesbar. - + Boost.Python error in job "%1". Boost.Python feil i oppgave "%1". @@ -550,6 +550,11 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.Create a Partition Opprett en partisjon + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.Si&ze: St&ørrelse: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index 1065222a6..a8b3b27f7 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -188,32 +188,32 @@ Uitvoer: Calamares::PythonJob - + Running %1 operation. Bewerking %1 uitvoeren. - + Bad working directory path Ongeldig pad voor huidige map - + Working directory %1 for python job %2 is not readable. Werkmap %1 voor python taak %2 onleesbaar. - + Bad main script file Onjuist hoofdscriptbestand - + Main script file %1 for python job %2 is not readable. Hoofdscriptbestand %1 voor python taak %2 onleesbaar. - + Boost.Python error in job "%1". Boost.Python fout in taak "%1". @@ -550,6 +550,11 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Create a Partition Maak partitie + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Si&ze: &Grootte: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. &Grootte: - + + MiB + + + + Fi&le System: Bestands&systeem - + Flags: Vlaggen: diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index b27f24a33..ade3360df 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -188,32 +188,32 @@ Wyjście: Calamares::PythonJob - + Running %1 operation. Wykonuję operację %1. - + Bad working directory path Niepoprawna ścieżka katalogu roboczego - + Working directory %1 for python job %2 is not readable. Katalog roboczy %1 dla zadań pythona %2 jest nieosiągalny. - + Bad main script file Niepoprawny główny plik skryptu - + Main script file %1 for python job %2 is not readable. Główny plik skryptu %1 dla zadań pythona %2 jest nieczytelny. - + Boost.Python error in job "%1". Wystąpił błąd Boost.Python w zadaniu "%1". @@ -550,6 +550,11 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Create a Partition Utwórz partycję + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Si&ze: Ro&zmiar: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Ro&zmiar: - + + MiB + + + + Fi&le System: System p&lików: - + Flags: Flagi: diff --git a/lang/calamares_pl_PL.ts b/lang/calamares_pl_PL.ts index 912316d15..cd6bc845d 100644 --- a/lang/calamares_pl_PL.ts +++ b/lang/calamares_pl_PL.ts @@ -188,32 +188,32 @@ Wyjście: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Niepoprawna ścieżka folderu roboczego - + Working directory %1 for python job %2 is not readable. Folder roboczy %1 zadania pythona %2 jest nieosiągalny. - + Bad main script file Niepoprawny główny plik skryptu - + Main script file %1 for python job %2 is not readable. Główny plik skryptu %1 zadania pythona %2 jest nieczytelny. - + Boost.Python error in job "%1". Błąd Boost.Python w zadaniu "%1". @@ -550,6 +550,11 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.Create a Partition Utwórz partycję + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.Si&ze: Ro&zmiar: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index b1c6c7815..ecef5229a 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -188,32 +188,32 @@ Saída: Calamares::PythonJob - + Running %1 operation. Executando operação %1. - + Bad working directory path Caminho de diretório de trabalho ruim - + Working directory %1 for python job %2 is not readable. Diretório de trabalho %1 para a tarefa do python %2 não é legível. - + Bad main script file Arquivo de script principal ruim - + Main script file %1 for python job %2 is not readable. Arquivo de script principal %1 para a tarefa do python %2 não é legível. - + Boost.Python error in job "%1". Boost.Python erro na tarefa "%1". @@ -552,6 +552,11 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.Create a Partition Criar uma partição + + + MiB + + Partition &Type: @@ -587,11 +592,6 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.Si&ze: Tamanho: - - - MB - MB - En&crypt @@ -928,12 +928,17 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.Tamanho: - + + MiB + + + + Fi&le System: Sistema de Arquivos: - + Flags: Marcadores: diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index c3985bedf..f5c2553b5 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -188,32 +188,32 @@ Saída: Calamares::PythonJob - + Running %1 operation. Operação %1 em execução. - + Bad working directory path Caminho do directório de trabalho errado - + Working directory %1 for python job %2 is not readable. Directório de trabalho %1 para a tarefa python %2 não é legível. - + Bad main script file Ficheiro de script principal errado - + Main script file %1 for python job %2 is not readable. Ficheiro de script principal %1 para a tarefa python %2 não é legível. - + Boost.Python error in job "%1". Erro Boost.Python na tarefa "%1". @@ -267,7 +267,7 @@ O instalador será encerrado e todas as alterações serão perdidas. &Close - + &Fechar @@ -550,6 +550,11 @@ O instalador será encerrado e todas as alterações serão perdidas.Create a Partition Criar uma Partição + + + MiB + MiB + Partition &Type: @@ -585,11 +590,6 @@ O instalador será encerrado e todas as alterações serão perdidas.Si&ze: Ta&manho: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ O instalador será encerrado e todas as alterações serão perdidas.Ta&manho: - + + MiB + MiB + + + Fi&le System: Si&stema de Ficheiros: - + Flags: Flags: @@ -1027,7 +1032,7 @@ O instalador será encerrado e todas as alterações serão perdidas. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Instalação Falhada</h1><br/>%1 não foi instalado no seu computador.<br/>A mensagem de erro foi: %2. @@ -2256,7 +2261,7 @@ O instalador será encerrado e todas as alterações serão perdidas. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Direitos de Cópia 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Direitos de Cópia 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agradecimentos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg e para <a href="https://www.transifex.com/calamares/calamares/">a equipa de tradutores do Calamares</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> desenvolvimento apoiado por <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index 15325813c..e41db74c6 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -188,32 +188,32 @@ Rezultat: Calamares::PythonJob - + Running %1 operation. Se rulează operațiunea %1. - + Bad working directory path Calea dosarului de lucru este proastă - + Working directory %1 for python job %2 is not readable. Dosarul de lucru %1 pentru sarcina python %2 nu este citibil. - + Bad main script file Fișierul script principal este prost - + Main script file %1 for python job %2 is not readable. Fișierul script peincipal %1 pentru sarcina Python %2 nu este citibil. - + Boost.Python error in job "%1". Eroare Boost.Python în sarcina „%1”. @@ -550,6 +550,11 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Create a Partition Creează o partiție + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Si&ze: Mă&rime: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Mă&rime - + + MiB + + + + Fi&le System: Sis&tem de fișiere: - + Flags: Flags: diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index 98c034656..2cd134d0a 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Выполняется действие %1. - + Bad working directory path Неверный путь к рабочему каталогу - + Working directory %1 for python job %2 is not readable. Рабочий каталог %1 для задачи python %2 недоступен для чтения. - + Bad main script file Ошибочный главный файл сценария - + Main script file %1 for python job %2 is not readable. Главный файл сценария %1 для задачи python %2 недоступен для чтения. - + Boost.Python error in job "%1". Boost.Python ошибка в задаче "%1". @@ -549,6 +549,11 @@ The installer will quit and all changes will be lost. Create a Partition Создать раздел + + + MiB + + Partition &Type: @@ -584,11 +589,6 @@ The installer will quit and all changes will be lost. Si&ze: Ра&змер: - - - MB - МБ - En&crypt @@ -925,12 +925,17 @@ The installer will quit and all changes will be lost. Ра&змер: - + + MiB + + + + Fi&le System: &Файловая система: - + Flags: Флаги: diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index 1f459510a..a55d2f877 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -188,32 +188,32 @@ Výstup: Calamares::PythonJob - + Running %1 operation. Spúšťa sa operácia %1. - + Bad working directory path Nesprávna cesta k pracovnému adresáru - + Working directory %1 for python job %2 is not readable. Pracovný adresár %1 pre úlohu jazyka python %2 nie je možné čítať. - + Bad main script file Nesprávny súbor hlavného skriptu - + Main script file %1 for python job %2 is not readable. Súbor hlavného skriptu %1 pre úlohu jazyka python %2 nie je možné čítať. - + Boost.Python error in job "%1". Chyba knižnice Boost.Python v úlohe „%1“. @@ -550,6 +550,11 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Create a Partition Vytvorenie oddielu + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Si&ze: Veľ&kosť: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. V&eľkosť: - + + MiB + + + + Fi&le System: S&ystém súborov: - + Flags: Značky: diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index 451c837e3..dddf92e25 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -188,32 +188,32 @@ Izpis: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Nepravilna pot delovne mape - + Working directory %1 for python job %2 is not readable. Ni mogoče brati delovne mape %1 za pythonovo opravilo %2. - + Bad main script file Nepravilna datoteka glavnega skripta - + Main script file %1 for python job %2 is not readable. Ni mogoče brati datoteke %1 glavnega skripta za pythonovo opravilo %2. - + Boost.Python error in job "%1". Napaka Boost.Python v opravilu "%1". @@ -550,6 +550,11 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Create a Partition Ustvari razdelek + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Si&ze: Ve&likost - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index 13907e6a8..571d0c775 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Извршавам %1 операцију. - + Bad working directory path Лоша путања радног директоријума - + Working directory %1 for python job %2 is not readable. Радни директоријум %1 за питонов посао %2 није читљив. - + Bad main script file Лош фајл главне скрипте - + Main script file %1 for python job %2 is not readable. Фајл главне скрипте %1 за питонов посао %2 није читљив. - + Boost.Python error in job "%1". Boost.Python грешка у послу „%1“. @@ -550,6 +550,11 @@ The installer will quit and all changes will be lost. Create a Partition Направи партицију + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ The installer will quit and all changes will be lost. Si&ze: Вели&чина - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ The installer will quit and all changes will be lost. &Величина: - + + MiB + + + + Fi&le System: Фајл &систем: - + Flags: diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index a1964dd12..4b53301ed 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -188,32 +188,32 @@ Povratna poruka: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Neispravna putanja do radne datoteke - + Working directory %1 for python job %2 is not readable. Nemoguće pročitati radnu datoteku %1 za funkciju %2 u Python-u. - + Bad main script file Neispravan glavna datoteka za skriptu - + Main script file %1 for python job %2 is not readable. Glavna datoteka za skriptu %1 za Python funkciju %2 se ne može pročitati. - + Boost.Python error in job "%1". Boost.Python greška u funkciji %1 @@ -550,6 +550,11 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. Create a Partition Kreiraj particiju + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. Si&ze: Veli&čina - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index 396b0cc01..9a2136ae6 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -188,32 +188,32 @@ Utdata: Calamares::PythonJob - + Running %1 operation. Kör %1-operation - + Bad working directory path Arbetskatalogens sökväg är ogiltig - + Working directory %1 for python job %2 is not readable. Arbetskatalog %1 för pythonuppgift %2 är inte läsbar. - + Bad main script file Ogiltig huvudskriptfil - + Main script file %1 for python job %2 is not readable. Huvudskriptfil %1 för pythonuppgift %2 är inte läsbar. - + Boost.Python error in job "%1". Boost.Python-fel i uppgift "%'1". @@ -550,6 +550,11 @@ Alla ändringar kommer att gå förlorade. Create a Partition Skapa en partition + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ Alla ändringar kommer att gå förlorade. Si&ze: Storlek: - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ Alla ändringar kommer att gå förlorade. Storlek: - + + MiB + + + + Fi&le System: Fi&lsystem: - + Flags: diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index 3f1478c56..02731120a 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. การปฏิบัติการ %1 กำลังทำงาน - + Bad working directory path เส้นทางไดเรคทอรีที่ใช้ทำงานไม่ถูกต้อง - + Working directory %1 for python job %2 is not readable. ไม่สามารถอ่านไดเรคทอรีที่ใช้ทำงาน %1 สำหรับ python %2 ได้ - + Bad main script file ไฟล์สคริปต์หลักไม่ถูกต้อง - + Main script file %1 for python job %2 is not readable. ไม่สามารถอ่านไฟล์สคริปต์หลัก %1 สำหรับ python %2 ได้ - + Boost.Python error in job "%1". Boost.Python ผิดพลาดที่งาน "%1". @@ -550,6 +550,11 @@ The installer will quit and all changes will be lost. Create a Partition สร้างพาร์ทิชัน + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ The installer will quit and all changes will be lost. Si&ze: &Z ขนาด: - - - MB - MB เมกะไบต์ - En&crypt @@ -926,12 +926,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index 31718b734..409e0535c 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. %1 işlemleri yapılıyor. - + Bad working directory path Dizin yolu kötü çalışıyor - + Working directory %1 for python job %2 is not readable. %2 python işleri için %1 dizinleme çalışırken okunamadı. - + Bad main script file Sorunlu script - + Main script file %1 for python job %2 is not readable. %2 python işleri için %1 sorunlu script okunamadı. - + Boost.Python error in job "%1". Boost.Python iş hatası "%1". @@ -553,6 +553,11 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Create a Partition Yeni Bölüm Oluştur + + + MiB + + Partition &Type: @@ -588,11 +593,6 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Si&ze: Bo&yut: - - - MB - MB - En&crypt @@ -929,12 +929,17 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Bo&yut: - + + MiB + + + + Fi&le System: D&osya Sistemi: - + Flags: Bayraklar: diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index 53f95a74b..5021a9aa5 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index ff6da7635..9f74fabe7 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index d350ee864..bea66766d 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -543,6 +543,11 @@ The installer will quit and all changes will be lost. Create a Partition + + + MiB + + Partition &Type: @@ -578,11 +583,6 @@ The installer will quit and all changes will be lost. Si&ze: - - - MB - - En&crypt @@ -919,12 +919,17 @@ The installer will quit and all changes will be lost. - + + MiB + + + + Fi&le System: - + Flags: diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index 528525bd2..4c7c31185 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -189,32 +189,32 @@ Output: Calamares::PythonJob - + Running %1 operation. 正在运行 %1 个操作。 - + Bad working directory path 错误的工作目录路径 - + Working directory %1 for python job %2 is not readable. 用于 python 任务 %2 的工作目录 %1 不可读。 - + Bad main script file 错误的主脚本文件 - + Main script file %1 for python job %2 is not readable. 用于 python 任务 %2 的主脚本文件 %1 不可读。 - + Boost.Python error in job "%1". 任务“%1”出现 Boost.Python 错误。 @@ -551,6 +551,11 @@ The installer will quit and all changes will be lost. Create a Partition 创建分区 + + + MiB + + Partition &Type: @@ -586,11 +591,6 @@ The installer will quit and all changes will be lost. Si&ze: 大小(&Z): - - - MB - MB - En&crypt @@ -928,12 +928,17 @@ The installer will quit and all changes will be lost. 尺寸 (&Z): - + + MiB + + + + Fi&le System: 文件系统 (&L): - + Flags: 标记: diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index 01decc20b..70ed4baac 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. 正在執行 %1 操作。 - + Bad working directory path 不良的工作目錄路徑 - + Working directory %1 for python job %2 is not readable. Python 行程 %2 作用中的目錄 %1 不具讀取權限。 - + Bad main script file 錯誤的主要腳本檔 - + Main script file %1 for python job %2 is not readable. Python 行程 %2 的主要腳本檔 %1 無法讀取。 - + Boost.Python error in job "%1". 行程 %1 中 Boost.Python 錯誤。 @@ -550,6 +550,11 @@ The installer will quit and all changes will be lost. Create a Partition 建立一個分割區 + + + MiB + + Partition &Type: @@ -585,11 +590,6 @@ The installer will quit and all changes will be lost. Si&ze: 容量大小 (&z) : - - - MB - MB - En&crypt @@ -926,12 +926,17 @@ The installer will quit and all changes will be lost. 容量大小 (&Z) : - + + MiB + + + + Fi&le System: 檔案系統 (&I): - + Flags: 旗標: From d18e3dc3853864f42341633e59e86b1c19767664 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 11 Jul 2017 04:17:11 -0400 Subject: [PATCH 23/23] Travis: use a tmpfs for the actual build --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c45e6235c..72372ce22 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,6 @@ install: - pip install pycodestyle script: - - docker run -v $PWD:/build calamares bash -lc "mkdir /cbuild ; cd /cbuild && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON ../build && make -j2" + - docker run -v $PWD:/src --tmpfs /build:rw,size=65536k calamares bash -lc "cd /build && cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON /src && make -j2" - pycodestyle --exclude=thirdparty,.git $PWD