Merge branch 'development' into 3.2.x-stable
This commit is contained in:
commit
c6c0fb138c
3
AUTHORS
3
AUTHORS
@ -20,8 +20,7 @@ and moral support from (alphabetically by first name or nickname):
|
||||
- artoo@cromnix.org
|
||||
- Bernhard Landauer
|
||||
- Bezzy1999
|
||||
- Bill Auguer
|
||||
- bill-auger
|
||||
- Bill Auger
|
||||
- Caio Jordão Carvalho
|
||||
- Collabora LTD
|
||||
- crispg72
|
||||
|
8
CHANGES
8
CHANGES
@ -31,6 +31,14 @@ This release contains contributions from (alphabetically by first name):
|
||||
"fancy" release notes as a QML application, rather than a webview
|
||||
or text widget. Note that this does not replace the slideshow-during-
|
||||
installation module.
|
||||
- The *users* module now has knobs for setting the hostname and writing
|
||||
the `/etc/hosts` file. The new configuration options are documented
|
||||
in `users.conf`. #1140
|
||||
- Multiple *netinstall* modules can exist side-by-side, and they each
|
||||
control the package installation for their part of the package list.
|
||||
Previously, a netinstall module would overwrite all of the package
|
||||
configuration done by other netinstall modules. Translations can be
|
||||
provided in the configuration file, `netinstall.conf`. #1303
|
||||
|
||||
|
||||
# 3.2.18 (2020-01-28) #
|
||||
|
@ -549,10 +549,11 @@ install(
|
||||
"${PROJECT_BINARY_DIR}/CalamaresConfig.cmake"
|
||||
"${PROJECT_BINARY_DIR}/CalamaresConfigVersion.cmake"
|
||||
"${PROJECT_BINARY_DIR}/CalamaresUse.cmake"
|
||||
"CMakeModules/CalamaresAddPlugin.cmake"
|
||||
"CMakeModules/CalamaresAddModuleSubdirectory.cmake"
|
||||
"CMakeModules/CalamaresAddLibrary.cmake"
|
||||
"CMakeModules/CalamaresAddBrandingSubdirectory.cmake"
|
||||
"CMakeModules/CalamaresAddLibrary.cmake"
|
||||
"CMakeModules/CalamaresAddModuleSubdirectory.cmake"
|
||||
"CMakeModules/CalamaresAddPlugin.cmake"
|
||||
"CMakeModules/CalamaresAddTest.cmake"
|
||||
"CMakeModules/CalamaresAddTranslations.cmake"
|
||||
"CMakeModules/CalamaresAutomoc.cmake"
|
||||
"CMakeModules/CMakeColors.cmake"
|
||||
|
58
CMakeModules/CalamaresAddTest.cmake
Normal file
58
CMakeModules/CalamaresAddTest.cmake
Normal file
@ -0,0 +1,58 @@
|
||||
# === This file is part of Calamares - <https://github.com/calamares> ===
|
||||
#
|
||||
# Calamares is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Calamares is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0+
|
||||
# License-Filename: LICENSE
|
||||
#
|
||||
###
|
||||
#
|
||||
# Support functions for building Calamares tests.
|
||||
# This extends KDE's ECM tests with some custom patterns.
|
||||
#
|
||||
# calamares_add_test(
|
||||
# <NAME>
|
||||
# [GUI]
|
||||
# SOURCES <FILE..>
|
||||
# )
|
||||
|
||||
include( CMakeParseArguments )
|
||||
include( CalamaresAutomoc )
|
||||
|
||||
function( calamares_add_test )
|
||||
# parse arguments (name needs to be saved before passing ARGN into the macro)
|
||||
set( NAME ${ARGV0} )
|
||||
set( options GUI )
|
||||
set( multiValueArgs SOURCES LIBRARIES DEFINITIONS )
|
||||
cmake_parse_arguments( TEST "${options}" "" "${multiValueArgs}" ${ARGN} )
|
||||
set( TEST_NAME ${NAME} )
|
||||
|
||||
if( ECM_FOUND AND BUILD_TESTING )
|
||||
ecm_add_test(
|
||||
${TEST_SOURCES}
|
||||
TEST_NAME
|
||||
${TEST_NAME}
|
||||
LINK_LIBRARIES
|
||||
calamares
|
||||
${TEST_LIBRARIES}
|
||||
Qt5::Core
|
||||
Qt5::Test
|
||||
)
|
||||
calamares_automoc( ${TEST_NAME} )
|
||||
target_compile_definitions( ${TEST_NAME} PRIVATE -DBUILD_AS_TEST ${TEST_DEFINITIONS} )
|
||||
if( TEST_GUI )
|
||||
target_link_libraries( ${TEST_NAME} calamaresui Qt5::Gui )
|
||||
endif()
|
||||
endif()
|
||||
endfunction()
|
@ -1,9 +1,11 @@
|
||||
# Locate yaml-cpp
|
||||
#
|
||||
# This module defines
|
||||
# YAMLCPP_FOUND, if false, do not try to link to yaml-cpp
|
||||
# YAMLCPP_LIBRARY, where to find yaml-cpp
|
||||
# YAMLCPP_INCLUDE_DIR, where to find yaml.h
|
||||
# YAMLCPP_FOUND, if false, do not try to link to yaml-cpp
|
||||
# YAMLCPP_LIBRARY, where to find yaml-cpp
|
||||
# YAMLCPP_INCLUDE_DIR, where to find yaml.h
|
||||
# There is also one IMPORTED library target,
|
||||
# yamlcpp
|
||||
#
|
||||
# By default, the dynamic libraries of yaml-cpp will be found. To find the static ones instead,
|
||||
# you must set the YAMLCPP_STATIC_LIBRARY variable to TRUE before calling find_package(YamlCpp ...).
|
||||
@ -48,3 +50,12 @@ find_library(YAMLCPP_LIBRARY
|
||||
include(FindPackageHandleStandardArgs)
|
||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(YAMLCPP DEFAULT_MSG YAMLCPP_INCLUDE_DIR YAMLCPP_LIBRARY)
|
||||
mark_as_advanced(YAMLCPP_INCLUDE_DIR YAMLCPP_LIBRARY)
|
||||
|
||||
# Add an imported target
|
||||
if( YAMLCPP_LIBRARY )
|
||||
add_library( yamlcpp UNKNOWN IMPORTED )
|
||||
set_property( TARGET yamlcpp PROPERTY IMPORTED_LOCATION ${YAMLCPP_LIBRARY} )
|
||||
if ( YAMLCPP_INCLUDE_DIR )
|
||||
set_property( TARGET yamlcpp PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${YAMLCPP_INCLUDE_DIR} )
|
||||
endif()
|
||||
endif()
|
||||
|
@ -17,9 +17,9 @@ Name[ar]=تثبيت النظام
|
||||
Icon[ar]=كالامارس
|
||||
GenericName[ar]=مثبت النظام
|
||||
Comment[ar]=كالامارس - مثبت النظام
|
||||
Name[as]=চিছ্তেম ইনস্তল কৰক
|
||||
Name[as]=চিছটেম ইনস্তল কৰক
|
||||
Icon[as]=কেলামাৰেচ
|
||||
GenericName[as]=চিছ্তেম ইনস্তলাৰ
|
||||
GenericName[as]=চিছটেম ইনস্তলাৰ
|
||||
Comment[as]=কেলামাৰেচ — চিছটেম ইনস্তলাৰ
|
||||
Name[be]=Усталяваць сістэму
|
||||
Icon[be]=calamares
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
1083
lang/calamares_uk.ts
1083
lang/calamares_uk.ts
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -30,8 +30,8 @@ msgstr "Mounting partitions."
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -204,9 +204,9 @@ msgstr "Configuring mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
|
||||
@ -272,10 +272,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr "Configure Plymouth theme"
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Generate machine-id."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: aboodilankaboot, 2019\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n"
|
||||
@ -34,8 +34,8 @@ msgstr "جاري تركيب الأقسام"
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -201,9 +201,9 @@ msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -262,10 +262,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "توليد معرف الجهاز"
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Deep Jyoti Choudhury <deep.choudhury@libresoft.in>, 2020\n"
|
||||
"Language-Team: Assamese (https://www.transifex.com/calamares/teams/20061/as/)\n"
|
||||
@ -33,8 +33,8 @@ msgstr "বিভাজন মাউন্ট্ কৰা।"
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -206,9 +206,9 @@ msgstr "mkinitcpio কনফিগাৰ কৰি আছে।"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr "ব্যৱহাৰৰ বাবে <pre>{!s}</pre>ৰ কোনো মাউন্ট্ পাইন্ট্ দিয়া হোৱা নাই।"
|
||||
|
||||
@ -270,10 +270,6 @@ msgstr "{name!s}ৰ বাবে পথ হ'ল <code>{path!s}</code> যিট
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr "Plymouth theme কন্ফিগাৰ কৰি আছে।"
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "মেচিন-আইডি সৃষ্টি কৰক।"
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: enolp <enolp@softastur.org>, 2019\n"
|
||||
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n"
|
||||
@ -33,8 +33,8 @@ msgstr ""
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -205,9 +205,9 @@ msgstr "Configurando mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -267,10 +267,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Xeneración de machine-id."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Zmicer Turok <nashtlumach@gmail.com>, 2019\n"
|
||||
"Language-Team: Belarusian (https://www.transifex.com/calamares/teams/20061/be/)\n"
|
||||
@ -33,8 +33,8 @@ msgstr "Мантаванне раздзелаў."
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -206,9 +206,9 @@ msgstr "Наладка mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr "Каранёвы пункт мантавання для<pre>{!s}</pre> не пададзены."
|
||||
|
||||
@ -270,10 +270,6 @@ msgstr "Шлях <code>{path!s}</code> да службы {level!s} не існу
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr "Наладзіць тэму Plymouth"
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Стварыць machine-id."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Georgi Georgiev <georgiev_1994@abv.bg>, 2018\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n"
|
||||
@ -33,8 +33,8 @@ msgstr ""
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -200,9 +200,9 @@ msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -261,10 +261,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Генерирай machine-id."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -4,16 +4,16 @@
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Davidmp <medipas@gmail.com>, 2019
|
||||
# Davidmp <medipas@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Davidmp <medipas@gmail.com>, 2019\n"
|
||||
"Last-Translator: Davidmp <medipas@gmail.com>, 2020\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -33,8 +33,8 @@ msgstr "Es munten les particions."
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -119,7 +119,7 @@ msgstr "No hi ha punt de muntatge per a la partició d'arrel."
|
||||
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr "globalstorage no conté cap clau \"rootMountPoint\". No es fa res."
|
||||
msgstr "globalstorage no conté cap clau de \"rootMountPoint\". No es fa res."
|
||||
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
@ -209,9 +209,9 @@ msgstr "Es configura mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
"No s'ha proporcionat el punt de muntatge perquè l'usi <pre>{!s}</pre>."
|
||||
@ -279,10 +279,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr "Configura el tema del Plymouth"
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Generació de l'id. de la màquina."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Language-Team: Catalan (Valencian) (https://www.transifex.com/calamares/teams/20061/ca@valencia/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -29,8 +29,8 @@ msgstr ""
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -196,9 +196,9 @@ msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -257,10 +257,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
|
||||
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n"
|
||||
@ -34,8 +34,8 @@ msgstr "Připojování oddílů."
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -208,9 +208,9 @@ msgstr "Nastavování mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr "Pro <pre>{!s}</pre> není zadán žádný přípojný bod."
|
||||
|
||||
@ -278,10 +278,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr "Nastavit téma vzhledu pro Plymouth"
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Vytvořit identifikátor stroje."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: scootergrisen, 2019\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n"
|
||||
@ -34,8 +34,8 @@ msgstr "Monterer partitioner."
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -209,9 +209,9 @@ msgstr "Konfigurerer mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
"Der er ikke angivet noget rodmonteringspunkt som <pre>{!s}</pre> skal bruge."
|
||||
@ -277,10 +277,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr "Konfigurer Plymouth-tema"
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Generér maskin-id."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Christian Spaan, 2020\n"
|
||||
"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n"
|
||||
@ -35,8 +35,8 @@ msgstr "Hänge Partitionen ein."
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -211,9 +211,9 @@ msgstr "Konfiguriere mkinitcpio. "
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
"Für <pre>{!s}</pre> wurde kein Einhängepunkt für die Root-Partition "
|
||||
@ -282,10 +282,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr "Konfiguriere Plymouth-Thema"
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Generiere Computer-ID"
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2017\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n"
|
||||
@ -33,8 +33,8 @@ msgstr ""
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -200,9 +200,9 @@ msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -261,10 +261,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Jason Collins <JasonPCollins@protonmail.com>, 2018\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n"
|
||||
@ -33,8 +33,8 @@ msgstr ""
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -200,9 +200,9 @@ msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -261,10 +261,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Generate machine-id."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Kurt Ankh Phoenix <kurtphoenix@tuta.io>, 2018\n"
|
||||
"Language-Team: Esperanto (https://www.transifex.com/calamares/teams/20061/eo/)\n"
|
||||
@ -33,8 +33,8 @@ msgstr ""
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -200,9 +200,9 @@ msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -261,10 +261,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Generi maŝino-legitimilo."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -4,7 +4,7 @@
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# strel, 2018
|
||||
# strel, 2017
|
||||
# Francisco Sánchez López de Lerma <fslopezlerma@gmail.com>, 2018
|
||||
# Guido Grasso <cuquiman97@gmail.com>, 2018
|
||||
# Adolfo Jayme-Barrientos, 2019
|
||||
@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Miguel Mayol <mitcoes@gmail.com>, 2020\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n"
|
||||
@ -37,8 +37,8 @@ msgstr "Montando particiones"
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -217,9 +217,9 @@ msgstr "Configurando mkinitcpio - sistema de arranque básico -."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
"No se facilitó un punto de montaje raíz utilizable para <pre>{!s}</pre> "
|
||||
@ -290,10 +290,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr "Configure el tema de Plymouth - menú de bienvenida."
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Generar identificación-de-máquina."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Logan 8192 <wsses11000@gmail.com>, 2018\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n"
|
||||
@ -34,8 +34,8 @@ msgstr ""
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -201,9 +201,9 @@ msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -262,10 +262,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Generar identificación de la maquina."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -29,8 +29,8 @@ msgstr ""
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -196,9 +196,9 @@ msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -257,10 +257,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"POT-Creation-Date: 2020-02-19 17:27+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Madis Otenurm, 2019\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n"
|
||||
@ -33,8 +33,8 @@ msgstr ""
|
||||
#: src/modules/initcpiocfg/main.py:205
|
||||
#: src/modules/luksopenswaphookcfg/main.py:95
|
||||
#: src/modules/luksopenswaphookcfg/main.py:99 src/modules/rawfs/main.py:171
|
||||
#: src/modules/machineid/main.py:49 src/modules/initramfscfg/main.py:94
|
||||
#: src/modules/initramfscfg/main.py:98 src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/initramfscfg/main.py:94 src/modules/initramfscfg/main.py:98
|
||||
#: src/modules/openrcdmcryptcfg/main.py:78
|
||||
#: src/modules/openrcdmcryptcfg/main.py:82 src/modules/fstab/main.py:322
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
@ -200,9 +200,9 @@ msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:206
|
||||
#: src/modules/luksopenswaphookcfg/main.py:100
|
||||
#: src/modules/machineid/main.py:50 src/modules/initramfscfg/main.py:99
|
||||
#: src/modules/openrcdmcryptcfg/main.py:83 src/modules/fstab/main.py:329
|
||||
#: src/modules/localecfg/main.py:145 src/modules/networkcfg/main.py:49
|
||||
#: src/modules/initramfscfg/main.py:99 src/modules/openrcdmcryptcfg/main.py:83
|
||||
#: src/modules/fstab/main.py:329 src/modules/localecfg/main.py:145
|
||||
#: src/modules/networkcfg/main.py:49
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
|
||||
@ -261,10 +261,6 @@ msgstr ""
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
msgstr "Genereeri masina-id."
|
||||
|
||||
#: src/modules/packages/main.py:62
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user