Merge branch 'master' of https://github.com/calamares/calamares into development
This commit is contained in:
commit
c2aed163bc
@ -20,7 +20,7 @@ if( CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
|
|||||||
set( CMAKE_C_FLAGS_RELEASE "-O4 -DNDEBUG" )
|
set( CMAKE_C_FLAGS_RELEASE "-O4 -DNDEBUG" )
|
||||||
set( CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g" )
|
set( CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g" )
|
||||||
|
|
||||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Weverything -Wno-c++98-compat -Wno-padded" )
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic -Wno-padded" )
|
||||||
set( CMAKE_CXX_FLAGS_DEBUG "-g" )
|
set( CMAKE_CXX_FLAGS_DEBUG "-g" )
|
||||||
set( CMAKE_CXX_FLAGS_MINSIZEREL "-Os -DNDEBUG" )
|
set( CMAKE_CXX_FLAGS_MINSIZEREL "-Os -DNDEBUG" )
|
||||||
set( CMAKE_CXX_FLAGS_RELEASE "-O4 -DNDEBUG" )
|
set( CMAKE_CXX_FLAGS_RELEASE "-O4 -DNDEBUG" )
|
||||||
@ -44,11 +44,7 @@ endif()
|
|||||||
|
|
||||||
cmake_policy( SET CMP0023 OLD )
|
cmake_policy( SET CMP0023 OLD )
|
||||||
cmake_policy( SET CMP0028 NEW ) # double colons in KF5::Foo and Qt5::Foo are necessarily IMPORTED or ALIAS targets, don't search further
|
cmake_policy( SET CMP0028 NEW ) # double colons in KF5::Foo and Qt5::Foo are necessarily IMPORTED or ALIAS targets, don't search further
|
||||||
|
|
||||||
# Keep cmake 3.0 quiet
|
|
||||||
if( POLICY CMP0043 )
|
|
||||||
cmake_policy( SET CMP0043 OLD )
|
cmake_policy( SET CMP0043 OLD )
|
||||||
endif()
|
|
||||||
|
|
||||||
include( MacroOptionalFindPackage )
|
include( MacroOptionalFindPackage )
|
||||||
include( MacroLogFeature )
|
include( MacroLogFeature )
|
||||||
@ -63,6 +59,11 @@ option( WITH_PYTHON "Enable Python modules API (requires Boost.Python)." ON )
|
|||||||
option( WITH_CRASHREPORTER "Build with CrashReporter" ON )
|
option( WITH_CRASHREPORTER "Build with CrashReporter" ON )
|
||||||
option( INSTALL_CONFIG "Install configuration files" ON)
|
option( INSTALL_CONFIG "Install configuration files" ON)
|
||||||
option( WITH_PYTHONQT "Enable next generation Python modules API (experimental, requires PythonQt)." OFF )
|
option( WITH_PYTHONQT "Enable next generation Python modules API (experimental, requires PythonQt)." OFF )
|
||||||
|
option(BUILD_TESTING "Build the testing tree." ON)
|
||||||
|
|
||||||
|
if(BUILD_TESTING)
|
||||||
|
enable_testing()
|
||||||
|
endif ()
|
||||||
|
|
||||||
if( CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/libcrashreporter-qt/CMakeLists.txt" )
|
if( CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/libcrashreporter-qt/CMakeLists.txt" )
|
||||||
message( STATUS "Build of crashreporter disabled." )
|
message( STATUS "Build of crashreporter disabled." )
|
||||||
|
@ -2,26 +2,54 @@ The Calamares release process
|
|||||||
=============================
|
=============================
|
||||||
|
|
||||||
#### (0) A week in advance
|
#### (0) A week in advance
|
||||||
* Run Coverity scan, fix what's relevant.
|
* Run [Coverity scan][coverity], fix what's relevant. The Coverity scan runs
|
||||||
|
automatically once a week on master.
|
||||||
* Build with clang -Weverything, fix what's relevant.
|
* Build with clang -Weverything, fix what's relevant.
|
||||||
|
```
|
||||||
|
rm -rf build ; mkdir build ; cd build
|
||||||
|
CC=clang CXX=clang++ cmake .. && make
|
||||||
|
```
|
||||||
* Make sure all tests pass.
|
* Make sure all tests pass.
|
||||||
* Notify translators.
|
```
|
||||||
|
make
|
||||||
|
make test
|
||||||
|
```
|
||||||
|
Note that *all* means all-that-make-sense. The partition-manager tests need
|
||||||
|
an additional environment variable to be set for some tests, which will
|
||||||
|
destroy an attached disk. This is not always desirable.
|
||||||
|
* Notify [translators][transifex]. In the dashboard there is an *Announcements*
|
||||||
|
link that you can use to send a translation announcement.
|
||||||
|
|
||||||
|
[coverity]: https://scan.coverity.com/projects/calamares-calamares?tab=overview
|
||||||
|
[transifex]: https://www.transifex.com/calamares/calamares/dashboard/
|
||||||
|
|
||||||
#### (1) Preparation
|
#### (1) Preparation
|
||||||
* Check `README.md` and everything in `hacking`, make sure it's all still relevant.
|
* Check `README.md` and everything in `hacking`, make sure it's all still
|
||||||
|
relevant. Run `hacking/calamaresstyle` to check the C++ code style.
|
||||||
|
Python code is checked as part of the Travis CI builds.
|
||||||
* Update submodules.
|
* Update submodules.
|
||||||
|
```
|
||||||
|
git submodule # Note list of submodules
|
||||||
|
git submodule update thirdparty/libcrashreporter-qt
|
||||||
|
```
|
||||||
* Check defaults in `settings.conf` and other configuration files.
|
* Check defaults in `settings.conf` and other configuration files.
|
||||||
* Pull latest translations from Transifex.
|
* Pull latest translations from Transifex. This is done nightly on Jenkins,
|
||||||
|
so a manual pull is rarely necessary.
|
||||||
* Update the list of enabled translation languages in `CMakeLists.txt`.
|
* Update the list of enabled translation languages in `CMakeLists.txt`.
|
||||||
* Bump version in `CMakeLists.txt`, commit.
|
Check the [translation site][transifex] for the list of languages with
|
||||||
|
fairly complete translations.
|
||||||
|
* Bump version in `CMakeLists.txt`, *CALAMARES_VERSION* variables, and set
|
||||||
|
RC to a non-zero value (e.g. doing -rc1, -rc2, ...). Push that.
|
||||||
|
|
||||||
#### (2) Tarball
|
#### (2) Tarball
|
||||||
* Create tarball: `../git-archive-all/git-archive-all -v calamares-1.1-rc1.tar.gz`
|
* Create tarball: `git-archive-all -v calamares-1.1-rc1.tar.gz` . Double check
|
||||||
|
that the tarball matches the version number.
|
||||||
* Test tarball.
|
* Test tarball.
|
||||||
|
|
||||||
#### (3) Tag
|
#### (3) Tag
|
||||||
* `git tag -s v1.1.0`
|
* `git tag -s v1.1.0` Make sure the signing key is known in GitHub, so that the
|
||||||
* Generate MD5 and SHA1 checksums.
|
tag is shown as a verified tag. Do not sign -rc tags.
|
||||||
|
* Generate MD5 and SHA256 checksums.
|
||||||
* Upload tarball.
|
* Upload tarball.
|
||||||
* Announce on mailing list, notify packagers.
|
* Announce on mailing list, notify packagers.
|
||||||
* Write release article.
|
* Write release article.
|
||||||
|
@ -1355,14 +1355,6 @@ The installer will quit and all changes will be lost.</translation>
|
|||||||
<source>What name do you want to use to log in?</source>
|
<source>What name do you want to use to log in?</source>
|
||||||
<translation>What name do you want to use to log in?</translation>
|
<translation>What name do you want to use to log in?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<location filename="../src/modules/users/page_usersetup.ui" line="197"/>
|
|
||||||
<location filename="../src/modules/users/page_usersetup.ui" line="306"/>
|
|
||||||
<location filename="../src/modules/users/page_usersetup.ui" line="437"/>
|
|
||||||
<location filename="../src/modules/users/page_usersetup.ui" line="582"/>
|
|
||||||
<source>font-weight: normal</source>
|
|
||||||
<translation>font-weight: normal</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/users/page_usersetup.ui" line="200"/>
|
<location filename="../src/modules/users/page_usersetup.ui" line="200"/>
|
||||||
<source><small>If more than one person will use this computer, you can set up multiple accounts after installation.</small></source>
|
<source><small>If more than one person will use this computer, you can set up multiple accounts after installation.</small></source>
|
||||||
|
@ -1802,7 +1802,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
|
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
|
||||||
<source>The screen is too small to display the installer.</source>
|
<source>The screen is too small to display the installer.</source>
|
||||||
<translation type="unfinished"/>
|
<translation>Zaslon je premalen za prikaz instalacijskog programa.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="61"/>
|
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="61"/>
|
||||||
<source>The <strong>boot environment</strong> of this system.<br><br>Older x86 systems only support <strong>BIOS</strong>.<br>Modern systems usually use <strong>EFI</strong>, but may also show up as BIOS if started in compatibility mode.</source>
|
<source>The <strong>boot environment</strong> of this system.<br><br>Older x86 systems only support <strong>BIOS</strong>.<br>Modern systems usually use <strong>EFI</strong>, but may also show up as BIOS if started in compatibility mode.</source>
|
||||||
<translation>L'<strong>ambiente di avvio - boot</strong> di questo sistema. <br><br>I vecchi sistemi x86 supportano solo <strong>BIOS</strong>. <bt>I sistemi moderni normalmente usano <strong>EFI</strong> ma possono anche usare BIOS se l'avvio viene eseguito in modalità compatibile.</translation>
|
<translation>L'<strong>ambiente di avvio</strong> di questo sistema. <br><br>I vecchi sistemi x86 supportano solo <strong>BIOS</strong>. <bt>I sistemi moderni normalmente usano <strong>EFI</strong> ma possono anche usare BIOS se l'avvio viene eseguito in modalità compatibile.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="75"/>
|
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="75"/>
|
||||||
@ -1802,7 +1802,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
|
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
|
||||||
<source>The screen is too small to display the installer.</source>
|
<source>The screen is too small to display the installer.</source>
|
||||||
<translation type="unfinished"/>
|
<translation>Schermo troppo piccolo per mostrare il programma d'installazione.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -2028,12 +2028,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="144"/>
|
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="144"/>
|
||||||
<source>Update geometry of partition %1.</source>
|
<source>Update geometry of partition %1.</source>
|
||||||
<translation type="unfinished"/>
|
<translation>Aggiornare la struttura della partizione %1.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="156"/>
|
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="156"/>
|
||||||
<source>Failed to change the geometry of the partition.</source>
|
<source>Failed to change the geometry of the partition.</source>
|
||||||
<translation type="unfinished"/>
|
<translation>Impossibile cambiare la struttura della partizione.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -2104,7 +2104,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/locale/SetTimezoneJob.cpp" line="87"/>
|
<location filename="../src/modules/locale/SetTimezoneJob.cpp" line="87"/>
|
||||||
<source>Link creation failed, target: %1; link name: %2</source>
|
<source>Link creation failed, target: %1; link name: %2</source>
|
||||||
<translation type="unfinished"/>
|
<translation>Impossibile creare il link, destinazione: %1; nome del link: %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/locale/SetTimezoneJob.cpp" line="96"/>
|
<location filename="../src/modules/locale/SetTimezoneJob.cpp" line="96"/>
|
||||||
@ -2215,7 +2215,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
|
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
|
||||||
<source><h1>Welcome to the Calamares installer for %1.</h1></source>
|
<source><h1>Welcome to the Calamares installer for %1.</h1></source>
|
||||||
<translation type="unfinished"/>
|
<translation><h1>Benvenuti nel programma di installazione Calamares per %1.</h1></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="74"/>
|
<location filename="../src/modules/welcome/WelcomePage.cpp" line="74"/>
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="125"/>
|
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="125"/>
|
||||||
<source>%1 (%2)</source>
|
<source>%1 (%2)</source>
|
||||||
<translation type="unfinished"/>
|
<translation>%1 (%2)</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -217,23 +217,23 @@ Output:
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="65"/>
|
<location filename="../src/libcalamaresui/ViewManager.cpp" line="65"/>
|
||||||
<source>&Back</source>
|
<source>&Back</source>
|
||||||
<translation type="unfinished"/>
|
<translation>А&ртқа</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="66"/>
|
<location filename="../src/libcalamaresui/ViewManager.cpp" line="66"/>
|
||||||
<source>&Next</source>
|
<source>&Next</source>
|
||||||
<translation type="unfinished"/>
|
<translation>&Алға</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="67"/>
|
<location filename="../src/libcalamaresui/ViewManager.cpp" line="67"/>
|
||||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="295"/>
|
<location filename="../src/libcalamaresui/ViewManager.cpp" line="295"/>
|
||||||
<source>&Cancel</source>
|
<source>&Cancel</source>
|
||||||
<translation type="unfinished"/>
|
<translation>Ба&с тарту</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="90"/>
|
<location filename="../src/libcalamaresui/ViewManager.cpp" line="90"/>
|
||||||
<source>Cancel installation?</source>
|
<source>Cancel installation?</source>
|
||||||
<translation type="unfinished"/>
|
<translation>Орнатудан бас тарту керек пе?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="91"/>
|
<location filename="../src/libcalamaresui/ViewManager.cpp" line="91"/>
|
||||||
|
@ -1804,7 +1804,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
|
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
|
||||||
<source>The screen is too small to display the installer.</source>
|
<source>The screen is too small to display the installer.</source>
|
||||||
<translation type="unfinished"/>
|
<translation>A tela é muito pequena para exibir o instalador.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -2217,7 +2217,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
|
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
|
||||||
<source><h1>Welcome to the Calamares installer for %1.</h1></source>
|
<source><h1>Welcome to the Calamares installer for %1.</h1></source>
|
||||||
<translation type="unfinished"/>
|
<translation><h1>Bem-vindo ao instalador da Calamares para %1.</h1></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="74"/>
|
<location filename="../src/modules/welcome/WelcomePage.cpp" line="74"/>
|
||||||
|
@ -1802,7 +1802,7 @@ The installer will quit and all changes will be lost.</source>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
|
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
|
||||||
<source>The screen is too small to display the installer.</source>
|
<source>The screen is too small to display the installer.</source>
|
||||||
<translation type="unfinished"/>
|
<translation>螢幕太小了,沒辦法顯示安裝程式。</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -2215,7 +2215,7 @@ The installer will quit and all changes will be lost.</source>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
|
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
|
||||||
<source><h1>Welcome to the Calamares installer for %1.</h1></source>
|
<source><h1>Welcome to the Calamares installer for %1.</h1></source>
|
||||||
<translation type="unfinished"/>
|
<translation><h1>歡迎使用 %1 的 Calamares 安裝程式。</h1></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="74"/>
|
<location filename="../src/modules/welcome/WelcomePage.cpp" line="74"/>
|
||||||
|
@ -142,7 +142,7 @@ CalamaresWindow::CalamaresWindow( QWidget* parent )
|
|||||||
CalamaresUtils::unmarginLayout( sideLayout );
|
CalamaresUtils::unmarginLayout( sideLayout );
|
||||||
CalamaresUtils::unmarginLayout( mainLayout );
|
CalamaresUtils::unmarginLayout( mainLayout );
|
||||||
|
|
||||||
Calamares::ViewManager* vm = new Calamares::ViewManager( this );
|
Calamares::ViewManager* vm = Calamares::ViewManager::instance( this );
|
||||||
|
|
||||||
mainLayout->addWidget( vm->centralWidget() );
|
mainLayout->addWidget( vm->centralWidget() );
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,12 @@
|
|||||||
namespace Calamares
|
namespace Calamares
|
||||||
{
|
{
|
||||||
|
|
||||||
|
JobResult::JobResult( JobResult&& rhs ) :
|
||||||
|
m_ok( rhs.m_ok )
|
||||||
|
, m_message( std::move( rhs.m_message ) )
|
||||||
|
, m_details( std::move( rhs.m_details ) )
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
JobResult::operator bool() const
|
JobResult::operator bool() const
|
||||||
{
|
{
|
||||||
@ -55,7 +61,6 @@ JobResult::setDetails( const QString& details )
|
|||||||
m_details = details;
|
m_details = details;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
JobResult
|
JobResult
|
||||||
JobResult::ok()
|
JobResult::ok()
|
||||||
{
|
{
|
||||||
|
@ -29,6 +29,9 @@ namespace Calamares {
|
|||||||
class DLLEXPORT JobResult
|
class DLLEXPORT JobResult
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
JobResult( const JobResult& rhs ) = delete;
|
||||||
|
JobResult( JobResult&& rhs );
|
||||||
|
|
||||||
virtual ~JobResult() {}
|
virtual ~JobResult() {}
|
||||||
|
|
||||||
virtual operator bool() const;
|
virtual operator bool() const;
|
||||||
|
@ -193,8 +193,8 @@ namespace Calamares
|
|||||||
* }
|
* }
|
||||||
* \endcode
|
* \endcode
|
||||||
*
|
*
|
||||||
* \author Matthias Kretz <kretz@kde.org>
|
* \author Matthias Kretz <kretz\@kde.org>
|
||||||
* \author Bernhard Loos <nhuh.put@web.de>
|
* \author Bernhard Loos <nhuh.put\@web.de>
|
||||||
*/
|
*/
|
||||||
class DLLEXPORT PluginFactory : public QObject
|
class DLLEXPORT PluginFactory : public QObject
|
||||||
{
|
{
|
||||||
@ -311,7 +311,6 @@ protected:
|
|||||||
* was requested. E.g. for KCModule plugins this string will be "KCModule".
|
* was requested. E.g. for KCModule plugins this string will be "KCModule".
|
||||||
* \param parentWidget Only used if the requested plugin is a KPart.
|
* \param parentWidget Only used if the requested plugin is a KPart.
|
||||||
* \param parent The parent object for the plugin object.
|
* \param parent The parent object for the plugin object.
|
||||||
* \param args A plugin specific list of arbitrary arguments.
|
|
||||||
* \param keyword A string that uniquely identifies the plugin. If a KService is used this
|
* \param keyword A string that uniquely identifies the plugin. If a KService is used this
|
||||||
* keyword is read from the X-KDE-PluginKeyword entry in the .desktop file.
|
* keyword is read from the X-KDE-PluginKeyword entry in the .desktop file.
|
||||||
*/
|
*/
|
||||||
|
@ -82,6 +82,7 @@ Branding::Branding( const QString& brandingFilePath,
|
|||||||
: QObject( parent )
|
: QObject( parent )
|
||||||
, m_descriptorPath( brandingFilePath )
|
, m_descriptorPath( brandingFilePath )
|
||||||
, m_componentName()
|
, m_componentName()
|
||||||
|
, m_welcomeStyleCalamares( false )
|
||||||
{
|
{
|
||||||
cDebug() << "Using Calamares branding file at" << brandingFilePath;
|
cDebug() << "Using Calamares branding file at" << brandingFilePath;
|
||||||
QFile file( brandingFilePath );
|
QFile file( brandingFilePath );
|
||||||
|
@ -42,13 +42,20 @@ ViewManager::instance()
|
|||||||
return s_instance;
|
return s_instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ViewManager*
|
||||||
|
ViewManager::instance( QObject* parent )
|
||||||
|
{
|
||||||
|
Q_ASSERT( !s_instance );
|
||||||
|
s_instance = new ViewManager( parent );
|
||||||
|
return s_instance;
|
||||||
|
}
|
||||||
|
|
||||||
ViewManager::ViewManager( QObject* parent )
|
ViewManager::ViewManager( QObject* parent )
|
||||||
: QObject( parent )
|
: QObject( parent )
|
||||||
, m_widget( new QWidget() )
|
, m_widget( new QWidget() )
|
||||||
, m_currentStep( 0 )
|
, m_currentStep( 0 )
|
||||||
{
|
{
|
||||||
Q_ASSERT( !s_instance );
|
Q_ASSERT( !s_instance );
|
||||||
s_instance = this;
|
|
||||||
|
|
||||||
QBoxLayout* mainLayout = new QVBoxLayout;
|
QBoxLayout* mainLayout = new QVBoxLayout;
|
||||||
m_widget->setLayout( mainLayout );
|
m_widget->setLayout( mainLayout );
|
||||||
|
@ -43,12 +43,10 @@ class UIDLLEXPORT ViewManager : public QObject
|
|||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
* @brief instance access to the ViewManager singleton.
|
* @brief instance access to the ViewManager singleton.
|
||||||
* @return
|
* @return pointer to the singleton instance.
|
||||||
*/
|
*/
|
||||||
static ViewManager* instance();
|
static ViewManager* instance();
|
||||||
|
static ViewManager* instance( QObject* parent );
|
||||||
explicit ViewManager( QObject* parent = nullptr );
|
|
||||||
virtual ~ViewManager();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief centralWidget always returns the central widget in the Calamares main
|
* @brief centralWidget always returns the central widget in the Calamares main
|
||||||
@ -115,6 +113,9 @@ signals:
|
|||||||
void currentStepChanged();
|
void currentStepChanged();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
explicit ViewManager( QObject* parent = nullptr );
|
||||||
|
virtual ~ViewManager();
|
||||||
|
|
||||||
void insertViewStep( int before, ViewStep* step );
|
void insertViewStep( int before, ViewStep* step );
|
||||||
|
|
||||||
static ViewManager* s_instance;
|
static ViewManager* s_instance;
|
||||||
|
@ -39,6 +39,7 @@ static int s_defaultFontHeight = 0;
|
|||||||
QPixmap
|
QPixmap
|
||||||
defaultPixmap( ImageType type, ImageMode mode, const QSize& size )
|
defaultPixmap( ImageType type, ImageMode mode, const QSize& size )
|
||||||
{
|
{
|
||||||
|
Q_UNUSED( mode );
|
||||||
QPixmap pixmap;
|
QPixmap pixmap;
|
||||||
|
|
||||||
switch ( type )
|
switch ( type )
|
||||||
@ -106,9 +107,6 @@ defaultPixmap( ImageType type, ImageMode mode, const QSize& size )
|
|||||||
case Squid:
|
case Squid:
|
||||||
pixmap = ImageRegistry::instance()->pixmap( RESPATH "images/squid.svg", size );
|
pixmap = ImageRegistry::instance()->pixmap( RESPATH "images/squid.svg", size );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( pixmap.isNull() )
|
if ( pixmap.isNull() )
|
||||||
@ -142,7 +140,7 @@ createRoundedImage( const QPixmap& pixmap, const QSize& size, float frameWidthPc
|
|||||||
return QPixmap();
|
return QPixmap();
|
||||||
|
|
||||||
QPixmap scaledAvatar = pixmap.scaled( width, height, Qt::IgnoreAspectRatio, Qt::SmoothTransformation );
|
QPixmap scaledAvatar = pixmap.scaled( width, height, Qt::IgnoreAspectRatio, Qt::SmoothTransformation );
|
||||||
if ( frameWidthPct == 0.00 )
|
if ( frameWidthPct == 0.00f )
|
||||||
return scaledAvatar;
|
return scaledAvatar;
|
||||||
|
|
||||||
QPixmap frame( width, height );
|
QPixmap frame( width, height );
|
||||||
@ -159,7 +157,7 @@ createRoundedImage( const QPixmap& pixmap, const QSize& size, float frameWidthPc
|
|||||||
|
|
||||||
painter.setBrush( brush );
|
painter.setBrush( brush );
|
||||||
painter.setPen( pen );
|
painter.setPen( pen );
|
||||||
painter.drawRoundedRect( outerRect, frameWidthPct * 100.0, frameWidthPct * 100.0, Qt::RelativeSize );
|
painter.drawRoundedRect( outerRect, frameWidthPct * 100.0f, frameWidthPct * 100.0f, Qt::RelativeSize );
|
||||||
|
|
||||||
/* painter.setBrush( Qt::transparent );
|
/* painter.setBrush( Qt::transparent );
|
||||||
painter.setPen( Qt::white );
|
painter.setPen( Qt::white );
|
||||||
@ -225,7 +223,7 @@ setDefaultFontSize( int points )
|
|||||||
QSize
|
QSize
|
||||||
defaultIconSize()
|
defaultIconSize()
|
||||||
{
|
{
|
||||||
const int w = defaultFontHeight() * 1.6;
|
const int w = defaultFontHeight() * 1.6f;
|
||||||
return QSize( w, w );
|
return QSize( w, w );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -93,7 +93,7 @@ UIDLLEXPORT QPixmap defaultPixmap( ImageType type,
|
|||||||
*/
|
*/
|
||||||
UIDLLEXPORT QPixmap createRoundedImage( const QPixmap& avatar,
|
UIDLLEXPORT QPixmap createRoundedImage( const QPixmap& avatar,
|
||||||
const QSize& size,
|
const QSize& size,
|
||||||
float frameWidthPct = 0.20 );
|
float frameWidthPct = 0.20f );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief unmarginLayout recursively walks the QLayout tree and removes all margins.
|
* @brief unmarginLayout recursively walks the QLayout tree and removes all margins.
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n"
|
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: enolp <enolp@softastur.org>, 2017\n"
|
"Last-Translator: enolp <enolp@softastur.org>, 2017\n"
|
||||||
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n"
|
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n"
|
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Davidmp <medipas@gmail.com>, 2016\n"
|
"Last-Translator: Davidmp <medipas@gmail.com>, 2016\n"
|
||||||
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n"
|
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: pavelrz <pavel@rzehak.cz>, 2016\n"
|
"Last-Translator: pavelrz <pavel@rzehak.cz>, 2016\n"
|
||||||
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n"
|
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: scootergrisen <scootergrisen@gmail.com>, 2017\n"
|
"Last-Translator: scootergrisen <scootergrisen@gmail.com>, 2017\n"
|
||||||
"Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n"
|
"Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Christian Spaan <gyges@gmx.net>, 2017\n"
|
"Last-Translator: Christian Spaan <gyges@gmx.net>, 2017\n"
|
||||||
"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n"
|
"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n"
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n"
|
"Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n"
|
"Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: strel <strelnic@gmail.com>, 2016\n"
|
"Last-Translator: strel <strelnic@gmail.com>, 2016\n"
|
||||||
"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n"
|
"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n"
|
"Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n"
|
"Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n"
|
"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n"
|
"Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n"
|
"Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n"
|
"Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n"
|
"Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n"
|
"Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n"
|
"Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n"
|
"Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n"
|
"Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n"
|
"Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Lovro Kudelić <lovro.kudelic@outlook.com>, 2016\n"
|
"Last-Translator: Lovro Kudelić <lovro.kudelic@outlook.com>, 2016\n"
|
||||||
"Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n"
|
"Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Lajos Pasztor <mrlajos@gmail.com>, 2016\n"
|
"Last-Translator: Lajos Pasztor <mrlajos@gmail.com>, 2016\n"
|
||||||
"Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n"
|
"Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n"
|
||||||
|
Binary file not shown.
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Kukuh Syafaat <syafaatkukuh@gmail.com>, 2016\n"
|
"Last-Translator: Kukuh Syafaat <syafaatkukuh@gmail.com>, 2016\n"
|
||||||
"Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n"
|
"Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Kristján Magnússon <kristjanmagnus@gmail.com>, 2017\n"
|
"Last-Translator: Kristján Magnússon <kristjanmagnus@gmail.com>, 2017\n"
|
||||||
"Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n"
|
"Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n"
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Saverio <saverio.brancaccio@gmail.com>, 2016\n"
|
"Last-Translator: Saverio <saverio.brancaccio@gmail.com>, 2016\n"
|
||||||
"Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n"
|
"Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Takefumi Nagata <take1975@kumamoto.email.ne.jp>, 2016\n"
|
"Last-Translator: Takefumi Nagata <take1975@kumamoto.email.ne.jp>, 2016\n"
|
||||||
"Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n"
|
"Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n"
|
"Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n"
|
"Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Moo <moose@mail.ru>, 2016\n"
|
"Last-Translator: Moo <moose@mail.ru>, 2016\n"
|
||||||
"Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n"
|
"Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n"
|
"Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n"
|
"Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: De Zeeappel <zeeappel@gmail.com>, 2016\n"
|
"Last-Translator: De Zeeappel <zeeappel@gmail.com>, 2016\n"
|
||||||
"Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n"
|
"Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: m4sk1n <m4sk1n@vivaldi.net>, 2016\n"
|
"Last-Translator: m4sk1n <m4sk1n@vivaldi.net>, 2016\n"
|
||||||
"Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n"
|
"Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n"
|
"Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatic4@gmail.com>, 2017\n"
|
"Last-Translator: Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatic4@gmail.com>, 2017\n"
|
||||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n"
|
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Ricardo Simões <xmcorporation@gmail.com>, 2016\n"
|
"Last-Translator: Ricardo Simões <xmcorporation@gmail.com>, 2016\n"
|
||||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n"
|
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n"
|
||||||
|
Binary file not shown.
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Baadur Jobava <jobaval10n@gmail.com>, 2016\n"
|
"Last-Translator: Baadur Jobava <jobaval10n@gmail.com>, 2016\n"
|
||||||
"Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n"
|
"Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Вадим Сабынич <vadim@sabini.ch>, 2017\n"
|
"Last-Translator: Вадим Сабынич <vadim@sabini.ch>, 2017\n"
|
||||||
"Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n"
|
"Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Dušan Kazik <prescott66@gmail.com>, 2016\n"
|
"Last-Translator: Dušan Kazik <prescott66@gmail.com>, 2016\n"
|
||||||
"Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n"
|
"Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n"
|
"Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Slobodan Simić <slsimic@gmail.com>, 2017\n"
|
"Last-Translator: Slobodan Simić <slsimic@gmail.com>, 2017\n"
|
||||||
"Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n"
|
"Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n"
|
"Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n"
|
"Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n"
|
"Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Demiray Muhterem <mdemiray@msn.com>, 2016\n"
|
"Last-Translator: Demiray Muhterem <mdemiray@msn.com>, 2016\n"
|
||||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n"
|
"Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n"
|
"Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n"
|
"Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
Binary file not shown.
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n"
|
"Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2017-06-23 01:03+0000\n"
|
"POT-Creation-Date: 2017-06-27 01:23+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Mingcong Bai <jeffbai@aosc.xyz>, 2017\n"
|
"Last-Translator: Mingcong Bai <jeffbai@aosc.xyz>, 2017\n"
|
||||||
"Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n"
|
"Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n"
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user