[release] 3.2.18-1
This commit is contained in:
commit
178a11a695
@ -7,12 +7,6 @@ source_file = lang/calamares_en.ts
|
||||
source_lang = en
|
||||
type = QT
|
||||
|
||||
[calamares.tz]
|
||||
file_filter = lang/tz_<lang>.ts
|
||||
source_file = lang/tz_en.ts
|
||||
source_lang = en
|
||||
type = QT
|
||||
|
||||
[calamares.dummypythonqt]
|
||||
file_filter = src/modules/dummypythonqt/lang/<lang>/LC_MESSAGES/dummypythonqt.po
|
||||
source_file = src/modules/dummypythonqt/lang/dummypythonqt.pot
|
||||
|
32
CHANGES
32
CHANGES
@ -3,12 +3,33 @@ contributors are listed. Note that Calamares does not have a historical
|
||||
changelog -- this log starts with version 3.2.0. The release notes on the
|
||||
website will have to do for older versions.
|
||||
|
||||
# 3.2.18 (unreleased) #
|
||||
# 3.2.19 (unreleased) #
|
||||
|
||||
This release contains contributions from (alphabetically by first name):
|
||||
- No other contributors this time around.
|
||||
|
||||
## Core ##
|
||||
- *Assamese* translation has been completed.
|
||||
- Translations are now loaded from more places: instead of **only**
|
||||
being compiled in to the Calamares executable, they can now be
|
||||
read from the current directory (when Calamares is run in developer
|
||||
mode) and from the application data directory.This allows updating the
|
||||
translations without requiring a recompile: helpful for translators
|
||||
and possibly for distributions with their own translation style.
|
||||
See the translators and deployers wiki for details.
|
||||
|
||||
## Modules ##
|
||||
- The *machineid* and *users* modules now prefer high-quality random
|
||||
data from `/dev/urandom` rather than pseudo-random data. #1254
|
||||
|
||||
|
||||
# 3.2.18 (2020-01-28) #
|
||||
|
||||
This release contains contributions from (alphabetically by first name):
|
||||
- Bill Auger
|
||||
|
||||
## Core ##
|
||||
- *Assamese* translation has been added (still in preliminary state).
|
||||
- Timezone support code has migrated into the core of Calamares. This
|
||||
means that modules now have easier access to timezone information.
|
||||
Translations for timezones have also been enabled, so it is **possible**
|
||||
@ -18,6 +39,11 @@ This release contains contributions from (alphabetically by first name):
|
||||
`branding.desc` specifies *center* or *free* placement.
|
||||
|
||||
## Modules ##
|
||||
- All modules can now set a new key in `module.desc` called *noconfig*.
|
||||
If this key is set to `true` (the default is `false), no configuration
|
||||
file is searched-for or loaded, and no warning is printed if the
|
||||
configuration is missing. This should tidy up some unnecessary warnings
|
||||
on startup. #1302 #1301
|
||||
- The *license* module has seen a significant change to its looks.
|
||||
Actions are now labeled more clearly, and the URL (or filename)
|
||||
for each license is displayed.
|
||||
@ -25,6 +51,10 @@ This release contains contributions from (alphabetically by first name):
|
||||
location names (e.g. "Berlin" is "Berlijn" in Dutch).
|
||||
- *Packagechooser* is a little more careful with displaying
|
||||
default and empty package names. (thanks to Bill Auger)
|
||||
- The *unpackfs* module now carries a larger weight in the overall
|
||||
progress of the installation, which should resolve downstream reports
|
||||
like "progress stops at 24% for a long time". This is currently
|
||||
hard-coded, but will become configurable in a future release. #1176
|
||||
|
||||
|
||||
# 3.2.17.1 (2019-12-02) #
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
cmake_minimum_required( VERSION 3.3 FATAL_ERROR )
|
||||
project( CALAMARES
|
||||
VERSION 3.2.17.1
|
||||
VERSION 3.2.18
|
||||
LANGUAGES C CXX )
|
||||
|
||||
set( CALAMARES_VERSION_RC 0 ) # Set to 0 during release cycle, 1 during development
|
||||
@ -108,11 +108,11 @@ set( CALAMARES_DESCRIPTION_SUMMARY
|
||||
# copy these four lines to four backup lines, add "p", and then update
|
||||
# the original four lines with the current translations).
|
||||
#
|
||||
# Total 61 languages
|
||||
set( _tx_complete ca cs_CZ da fi_FI he hr ja lt pt_BR sq )
|
||||
set( _tx_good ast de es es_MX et fr gl hi hu id it_IT ko nl pl
|
||||
pt_PT ru sk tr_TR zh_TW )
|
||||
set( _tx_ok ar be bg el en_GB es_PR eu is ml mr nb ro sl sr
|
||||
# Total 62 languages
|
||||
set( _tx_complete ca da fi_FI fr he hr ja lt sq tr_TR )
|
||||
set( _tx_good ast cs_CZ de es es_MX et gl hi hu id it_IT ko ml nl
|
||||
pl pt_BR pt_PT ru sk zh_TW )
|
||||
set( _tx_ok ar as be bg el en_GB es_PR eu is mr nb ro sl sr
|
||||
sr@latin sv th uk zh_CN )
|
||||
set( _tx_incomplete ca@valencia eo fa fr_CH gu kk kn lo mk ne_NP ur
|
||||
uz )
|
||||
|
@ -37,7 +37,12 @@ macro( _find_boost_python3_int boost_version componentname found_var )
|
||||
find_package( Boost ${boost_version} QUIET COMPONENTS ${_fbp_name} )
|
||||
string( TOUPPER ${_fbp_name} _fbp_uc_name )
|
||||
if( Boost_${_fbp_uc_name}_FOUND )
|
||||
if( CMAKE_SYSTEM_NAME MATCHES "FreeBSD" )
|
||||
# No upcasing
|
||||
set( ${found_var} ${_fbp_name} )
|
||||
else()
|
||||
set( ${found_var} ${_fbp_uc_name} )
|
||||
endif()
|
||||
break()
|
||||
endif()
|
||||
endforeach()
|
||||
|
@ -38,6 +38,7 @@
|
||||
# [RESOURCES resource-file]
|
||||
# [REQUIRES module-name...]
|
||||
# [NO_INSTALL]
|
||||
# [NO_CONFIG]
|
||||
# [SHARED_LIB]
|
||||
# [EMERGENCY]
|
||||
# )
|
||||
@ -71,7 +72,7 @@ include( CMakeColors )
|
||||
function( calamares_add_plugin )
|
||||
# parse arguments ( name needs to be saved before passing ARGN into the macro )
|
||||
set( NAME ${ARGV0} )
|
||||
set( options NO_INSTALL SHARED_LIB EMERGENCY )
|
||||
set( options NO_CONFIG NO_INSTALL SHARED_LIB EMERGENCY )
|
||||
set( oneValueArgs NAME TYPE EXPORT_MACRO RESOURCES )
|
||||
set( multiValueArgs SOURCES UI LINK_LIBRARIES LINK_PRIVATE_LIBRARIES COMPILE_DEFINITIONS REQUIRES )
|
||||
cmake_parse_arguments( PLUGIN "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} )
|
||||
@ -90,6 +91,9 @@ function( calamares_add_plugin )
|
||||
message( " ${Green}LINK_PRIVATE_LIBRARIES:${ColorReset} ${PLUGIN_LINK_PRIVATE_LIBRARIES}" )
|
||||
message( " ${Green}PLUGIN_DESTINATION:${ColorReset} ${PLUGIN_DESTINATION}" )
|
||||
if( PLUGIN_CONFIG_FILES )
|
||||
if( PLUGIN_NO_CONFIG )
|
||||
message( FATAL_ERROR "${Red}NO_CONFIG${ColorReset} is set, with configuration ${Red}${PLUGIN_CONFIG_FILES}${ColorReset}" )
|
||||
endif()
|
||||
set( _destination "(unknown)" )
|
||||
if ( INSTALL_CONFIG AND NOT PLUGIN_NO_INSTALL )
|
||||
set( _destination "${PLUGIN_DATA_DESTINATION}" )
|
||||
@ -100,6 +104,10 @@ function( calamares_add_plugin )
|
||||
set( _destination "[Skipping installation]" )
|
||||
endif()
|
||||
message( " ${Green}CONFIGURATION_FILES:${ColorReset} ${PLUGIN_CONFIG_FILES} => ${_destination}" )
|
||||
else()
|
||||
if( NOT PLUGIN_NO_CONFIG )
|
||||
message( " ${Red}NO_CONFIG${ColorReset} should be set." )
|
||||
endif()
|
||||
endif()
|
||||
if( PLUGIN_RESOURCES )
|
||||
message( " ${Green}RESOURCES:${ColorReset} ${PLUGIN_RESOURCES}" )
|
||||
@ -170,6 +178,9 @@ function( calamares_add_plugin )
|
||||
if ( PLUGIN_EMERGENCY )
|
||||
file( APPEND ${_file} "emergency: true\n" )
|
||||
endif()
|
||||
if ( PLUGIN_NO_CONFIG )
|
||||
file( APPEND ${_file} "noconfig: true\n" )
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if ( NOT PLUGIN_NO_INSTALL )
|
||||
|
@ -17,6 +17,10 @@ Name[ar]=تثبيت النظام
|
||||
Icon[ar]=كالامارس
|
||||
GenericName[ar]=مثبت النظام
|
||||
Comment[ar]=كالامارس - مثبت النظام
|
||||
Name[as]=চিছ্তেম ইনস্তল কৰক
|
||||
Icon[as]=কেলামাৰেচ
|
||||
GenericName[as]=চিছ্তেম ইনস্তলাৰ
|
||||
Comment[as]=কেলামাৰেচ — চিছটেম ইনস্তলাৰ
|
||||
Name[be]=Усталяваць сістэму
|
||||
Icon[be]=calamares
|
||||
GenericName[be]=Усталёўшчык сістэмы
|
||||
|
@ -8,7 +8,7 @@
|
||||
#
|
||||
AS=$( which astyle )
|
||||
|
||||
for _cf in clang-format-7 clang-format-8 clang-format70 clang-format80
|
||||
for _cf in clang-format-7 clang-format-8 clang-format70 clang-format80 clang-format
|
||||
do
|
||||
# Not an error if this particular clang-format isn't found
|
||||
CF=$( which $_cf || true )
|
||||
|
@ -8,6 +8,13 @@
|
||||
#
|
||||
# Use --cleanup as an argument to clean things up.
|
||||
|
||||
# The files that are translated; should match the contents of .tx/config
|
||||
TX_FILE_LIST="lang/calamares_en.ts lang/python.pot src/modules/dummypythonqt/lang/dummypythonqt.pot calamares.desktop"
|
||||
|
||||
### COMMAND ARGUMENTS
|
||||
#
|
||||
# We need to define tx_cleanup for the --cleanup argument, although it's
|
||||
# normally used much later in the script.
|
||||
tx_cleanup()
|
||||
{
|
||||
# Cleanup artifacs of checking
|
||||
@ -22,6 +29,34 @@ if test "x$1" = "x--cleanup" ; then
|
||||
fi
|
||||
test -z "$1" || { echo "! Usage: txcheck.sh [--cleanup]" ; exit 1 ; }
|
||||
|
||||
|
||||
### FIND EXECUTABLES
|
||||
#
|
||||
#
|
||||
XMLLINT=""
|
||||
for _xmllint in xmllint
|
||||
do
|
||||
$_xmllint --version > /dev/null 2>&1 && XMLLINT=$_xmllint
|
||||
test -n "$XMLLINT" && break
|
||||
done
|
||||
|
||||
# Distinguish GNU date from BSD date
|
||||
if date +%s -d "1 week ago" > /dev/null 2>&1 ; then
|
||||
last_week() { date +%s -d "1 week ago" ; }
|
||||
else
|
||||
last_week() { date -v1w +%s; }
|
||||
fi
|
||||
|
||||
# Distinguish GNU SHA executables from BSD ones
|
||||
if which sha256sum > /dev/null 2>&1 ; then
|
||||
SHA256=sha256sum
|
||||
else
|
||||
SHA256=sha256
|
||||
fi
|
||||
|
||||
### CHECK WORKING DIRECTORY
|
||||
#
|
||||
#
|
||||
if git describe translation > /dev/null 2>&1 ; then
|
||||
:
|
||||
else
|
||||
@ -37,13 +72,11 @@ else
|
||||
fi
|
||||
# No unsaved changes; enforce a string freeze of one week
|
||||
DATE_PREV=$( git log -1 translation --date=unix | sed -e '/^Date:/s+.*:++p' -e d )
|
||||
DATE_HEAD=$( date +%s -d "1 week ago" )
|
||||
DATE_HEAD=$( last_week )
|
||||
test "$DATE_PREV" -le "$DATE_HEAD" || { echo "! Translation tag has not aged enough." ; git log -1 translation ; exit 1 ; }
|
||||
|
||||
# Tag is good, do real work of checking strings: collect names of relevant files
|
||||
test -f ".tx/config" || { echo "! No Transifex configuration is present." ; exit 1 ; }
|
||||
# Print part after = for each source_file line and delete all the rest
|
||||
TX_FILE_LIST=$( sed -e '/^source_file/s+.*=++p' -e d .tx/config )
|
||||
for f in $TX_FILE_LIST ; do
|
||||
test -f $f || { echo "! Translation file '$f' does not exist." ; exit 1 ; }
|
||||
done
|
||||
@ -51,19 +84,24 @@ done
|
||||
# The state of translations
|
||||
tx_sum()
|
||||
{
|
||||
CURDIR=`pwd`
|
||||
WORKTREE_NAME="$1"
|
||||
WORKTREE_TAG="$2"
|
||||
|
||||
git worktree add $WORKTREE_NAME $WORKTREE_TAG > /dev/null 2>&1 || { echo "! Could not create worktree." ; exit 1 ; }
|
||||
( cd $WORKTREE_NAME && sh ci/txpush.sh --no-tx ) > /dev/null 2>&1 || { echo "! Could not re-create translations." ; exit 1 ; }
|
||||
( cd $WORKTREE_NAME && sed -i'' -e '/<location filename/d' $TX_FILE_LIST )
|
||||
_SUM=$( cd $WORKTREE_NAME && cat $TX_FILE_LIST | sha256sum )
|
||||
( cd $WORKTREE_NAME && sh "$CURDIR"/ci/txpush.sh --no-tx ) > /dev/null 2>&1 || { echo "! Could not re-create translations." ; exit 1 ; }
|
||||
|
||||
# Remove linenumbers from .ts (XML) and .pot
|
||||
sed -i'' -e '/<location filename/d' "$WORKTREE_NAME/lang/calamares_en.ts"
|
||||
sed -i'' -e '/^#: src..*[0-9]$/d' $WORKTREE_NAME/lang/python.pot $WORKTREE_NAME/src/modules/dummypythonqt/lang/dummypythonqt.pot
|
||||
|
||||
_SUM=$( cd $WORKTREE_NAME && cat $TX_FILE_LIST | $SHA256 )
|
||||
echo "$_SUM"
|
||||
}
|
||||
|
||||
# Check from the translation tag as well
|
||||
HEAD_SUM=`tx_sum build-txcheck-head ""`
|
||||
PREV_SUM=`tx_sum build-txcheck-prev translation`
|
||||
HEAD_SUM=`tx_sum build-txcheck-head ""` || { echo "$HEAD_SUM" ; exit 1 ; }
|
||||
PREV_SUM=`tx_sum build-txcheck-prev translation` || { echo "$HEAD_SUM" ; exit 1 ; }
|
||||
|
||||
# An error message will have come from the shell function
|
||||
test -d build-txcheck-head || { echo "$HEAD_SUM" ; exit 1 ; }
|
||||
@ -77,9 +115,9 @@ else
|
||||
echo "! $f"
|
||||
diff -u build-txcheck-prev/$f build-txcheck-head/$f
|
||||
done
|
||||
echo "! Run 'txcheck.sh --cleanup' to clean-up before next run"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
tx_cleanup
|
||||
|
||||
exit 0
|
||||
|
23
ci/txpull.sh
23
ci/txpull.sh
@ -25,6 +25,19 @@ test -f "CMakeLists.txt" || { echo "! Not at Calamares top-level" ; exit 1 ; }
|
||||
test -f ".tx/config" || { echo "! Not at Calamares top-level" ; exit 1 ; }
|
||||
test -f "calamares.desktop" || { echo "! Not at Calamares top-level" ; exit 1 ; }
|
||||
|
||||
|
||||
### FIND EXECUTABLES
|
||||
#
|
||||
#
|
||||
XMLLINT=""
|
||||
for _xmllint in xmllint
|
||||
do
|
||||
$_xmllint --version > /dev/null 2>&1 && XMLLINT=$_xmllint
|
||||
test -n "$XMLLINT" && break
|
||||
done
|
||||
# XMLLINT is optional
|
||||
|
||||
|
||||
### FETCH TRANSLATIONS
|
||||
#
|
||||
# Use Transifex client to get translations; this depends on the
|
||||
@ -33,6 +46,7 @@ test -f "calamares.desktop" || { echo "! Not at Calamares top-level" ; exit 1 ;
|
||||
export QT_SELECT=5
|
||||
tx pull --force --source --all
|
||||
|
||||
|
||||
### CLEANUP TRANSLATIONS
|
||||
#
|
||||
# Some languages have been deprecated. They may still exist in Transifex,
|
||||
@ -52,6 +66,15 @@ drop_language pl_PL
|
||||
{ cat calamares.desktop.in ; grep "\\[[a-zA-Z_@]*]=" calamares.desktop ; } > calamares.desktop.new
|
||||
mv calamares.desktop.new calamares.desktop
|
||||
|
||||
# And fixup the XML files like in txpush.sh
|
||||
if test -n "$XMLLINT" ; then
|
||||
for TS_FILE in lang/calamares_*.ts
|
||||
do
|
||||
$XMLLINT --c14n11 "$TS_FILE" | { echo "<!DOCTYPE TS>" ; cat - ; } | $XMLLINT --format --encode utf-8 -o "$TS_FILE".new - && mv "$TS_FILE".new "$TS_FILE"
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
### COMMIT TRANSLATIONS
|
||||
#
|
||||
# Produce multiple commits (for the various parts of the i18n
|
||||
|
41
ci/txpush.sh
41
ci/txpush.sh
@ -41,28 +41,55 @@ else
|
||||
# txtag is used to tag in git to measure changes
|
||||
txtag() {
|
||||
git tag -f translation
|
||||
git push --force origin translation
|
||||
}
|
||||
fi
|
||||
|
||||
|
||||
### FIND EXECUTABLES
|
||||
#
|
||||
#
|
||||
LUPDATE=""
|
||||
for _lupdate in lupdate-qt5 lupdate
|
||||
do
|
||||
export QT_SELECT=5
|
||||
$_lupdate -version > /dev/null 2>&1 || export QT_SELECT=qt5
|
||||
$_lupdate -version > /dev/null 2>&1 && LUPDATE=$_lupdate
|
||||
test -n "$LUPDATE" && break
|
||||
done
|
||||
test -n "$LUPDATE" || { echo "! No working lupdate" ; lupdate -version ; exit 1 ; }
|
||||
|
||||
XMLLINT=""
|
||||
for _xmllint in xmllint
|
||||
do
|
||||
$_xmllint --version > /dev/null 2>&1 && XMLLINT=$_xmllint
|
||||
test -n "$XMLLINT" && break
|
||||
done
|
||||
# XMLLINT is optional
|
||||
|
||||
|
||||
### CREATE TRANSLATIONS
|
||||
#
|
||||
# Use local tools (depending on type of source) to create translation
|
||||
# sources, then push to Transifex
|
||||
|
||||
export QT_SELECT=5
|
||||
lupdate -version > /dev/null 2>&1 || export QT_SELECT=qt5
|
||||
lupdate -version > /dev/null 2>&1 || { echo "! No working lupdate" ; lupdate -version ; exit 1 ; }
|
||||
|
||||
# Don't pull branding translations in,
|
||||
# those are done separately.
|
||||
_srcdirs="src/calamares src/libcalamares src/libcalamaresui src/modules src/qml"
|
||||
lupdate -no-obsolete $_srcdirs -ts lang/calamares_en.ts
|
||||
lupdate -no-obsolete -extensions cxxtr src/libcalamares/locale -ts lang/tz_en.ts
|
||||
$LUPDATE -no-obsolete $_srcdirs -ts lang/calamares_en.ts
|
||||
# Updating the TZ only needs to happen when the TZ themselves are updated,
|
||||
# very-very-rarely.
|
||||
# $LUPDATE -no-obsolete -extensions cxxtr src/libcalamares/locale -ts lang/tz_en.ts
|
||||
|
||||
if test -n "$XMLLINT" ; then
|
||||
TS_FILE="lang/calamares_en.ts"
|
||||
$XMLLINT --c14n11 "$TS_FILE" | { echo "<!DOCTYPE TS>" ; cat - ; } | $XMLLINT --format --encode utf-8 -o "$TS_FILE".new - && mv "$TS_FILE".new "$TS_FILE"
|
||||
fi
|
||||
|
||||
tx push --source --no-interactive -r calamares.calamares-master
|
||||
tx push --source --no-interactive -r calamares.tz
|
||||
tx push --source --no-interactive -r calamares.fdo
|
||||
|
||||
|
||||
### PYTHON MODULES
|
||||
#
|
||||
# The Python tooling depends on the underlying distro to provide
|
||||
|
@ -2,6 +2,11 @@
|
||||
#
|
||||
# Uses the Transifex API to get a list of enabled languages,
|
||||
# and outputs CMake settings for inclusion into CMakeLists.txt.
|
||||
#
|
||||
# This is a Python3 script.
|
||||
#
|
||||
# Run it with a -v command-line option to get extra output on
|
||||
# actual translation percentages.
|
||||
import sys
|
||||
|
||||
def get_tx_credentials():
|
||||
@ -42,12 +47,14 @@ def output_langs(all_langs, label, filterfunc):
|
||||
prefix = " "
|
||||
print("%s%s" % (prefix, out))
|
||||
|
||||
def get_tx_stats(token):
|
||||
def get_tx_stats(token, verbose):
|
||||
"""
|
||||
Does an API request to Transifex with the given API @p token, getting
|
||||
the translation statistics for the main body of texts. Then prints
|
||||
out CMake settings to replace the _tx_* variables in CMakeLists.txt
|
||||
according to standard criteria.
|
||||
|
||||
If @p verbose is True, prints out language stats as well.
|
||||
"""
|
||||
import requests
|
||||
|
||||
@ -58,8 +65,12 @@ def get_tx_stats(token):
|
||||
suppressed_languages = ( "es_ES", ) # In Transifex, but not used
|
||||
# Some languages go into the "incomplete" list by definition,
|
||||
# regardless of their completion status: this can have various reasons.
|
||||
#
|
||||
# Note that Esperanto (eo) is special-cased in CMakeLists.txt
|
||||
# during the build; recent Qt releases *do* support the language,
|
||||
# and it's at-the-least ok.
|
||||
incomplete_languages = (
|
||||
"eo", # Not supported by QLocale
|
||||
"eo", # Not supported by QLocale < 5.12.1
|
||||
)
|
||||
|
||||
all_langs = []
|
||||
@ -71,10 +82,16 @@ def get_tx_stats(token):
|
||||
if lang_name in suppressed_languages:
|
||||
continue
|
||||
stats = languages[lang_name]["translated"]["percentage"]
|
||||
# Make the by-definition-incomplete languages have a percentage
|
||||
# lower than zero; this way they end up sorted (in -v output)
|
||||
# at the bottom but you can still determine the "actual" percentage.
|
||||
if lang_name in incomplete_languages:
|
||||
stats = 0.0
|
||||
stats = -stats
|
||||
all_langs.append((stats, lang_name))
|
||||
|
||||
if verbose:
|
||||
for s, l in sorted(all_langs, reverse=True):
|
||||
print("# %16s\t%6.2f" % (l, s * 100.0))
|
||||
output_langs(all_langs, "complete", lambda s : s == 1.0)
|
||||
output_langs(all_langs, "good", lambda s : 1.0 > s >= 0.75)
|
||||
output_langs(all_langs, "ok", lambda s : 0.75 > s >= 0.05)
|
||||
@ -84,9 +101,10 @@ def get_tx_stats(token):
|
||||
|
||||
|
||||
def main():
|
||||
verbose = (sys.argv[-1] == "-v")
|
||||
cred = get_tx_credentials()
|
||||
if cred:
|
||||
return get_tx_stats(cred)
|
||||
return get_tx_stats(cred, verbose)
|
||||
else:
|
||||
print("! Could not find API token in ~/.transifexrc")
|
||||
return 1
|
||||
|
File diff suppressed because it is too large
Load Diff
3453
lang/calamares_as.ts
Normal file
3453
lang/calamares_as.ts
Normal file
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
1108
lang/calamares_ca.ts
1108
lang/calamares_ca.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
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
1036
lang/calamares_fr.ts
1036
lang/calamares_fr.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
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,7 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="hr_HR" version="2.1">
|
||||
<context>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS language="hr_HR" version="2.1">
|
||||
<context>
|
||||
<name>AlongsidePage</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/AlongsidePage.cpp" line="54"/>
|
||||
@ -16,8 +18,8 @@
|
||||
<source>With this operation, the partition <b>%1</b> which contains %4 will be shrunk to %2MB and a new %3MB partition will be created for %5.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ApplyProgressDetailsWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/applyprogressdetailswidgetbase.ui" line="37"/>
|
||||
@ -29,8 +31,8 @@
|
||||
<source>Open in External Browser</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ApplyProgressDialogWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/applyprogressdialogwidgetbase.ui" line="33"/>
|
||||
@ -62,8 +64,8 @@
|
||||
<source>Total: %p%</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>Base</name>
|
||||
<message>
|
||||
<location filename="../src/calamares/CalamaresWindow.ui" line="20"/>
|
||||
@ -72,11 +74,11 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/calamares/CalamaresWindow.ui" line="168"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#343434;">Welcome</span></p></body></html></source>
|
||||
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#343434;">Welcome</span></p></body></html></source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -91,11 +93,11 @@ p, li { white-space: pre-wrap; }
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/calamares/CalamaresWindow.ui" line="257"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#343434;">Installation</span></p></body></html></source>
|
||||
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#343434;">Installation</span></p></body></html></source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -105,11 +107,11 @@ p, li { white-space: pre-wrap; }
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/calamares/CalamaresWindow.ui" line="320"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#343434;">Configuration</span></p></body></html></source>
|
||||
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#343434;">Configuration</span></p></body></html></source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -144,15 +146,15 @@ p, li { white-space: pre-wrap; }
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/calamares/CalamaresWindow.ui" line="528"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#343434;">Preparation</span></p></body></html></source>
|
||||
</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#343434;">Preparation</span></p></body></html></source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>BootLoaderModel</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="57"/>
|
||||
@ -169,24 +171,24 @@ p, li { white-space: pre-wrap; }
|
||||
<source>System Partition</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>Calamares::InstallationViewStep</name>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/InstallationViewStep.cpp" line="47"/>
|
||||
<source>Install</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>Calamares::JobThread</name>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/JobQueue.cpp" line="88"/>
|
||||
<source>Done</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>Calamares::ProcessJob</name>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/ProcessJob.cpp" line="51"/>
|
||||
@ -249,8 +251,8 @@ Output:
|
||||
%3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>Calamares::PythonJob</name>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/PythonJob.cpp" line="234"/>
|
||||
@ -279,11 +281,11 @@ Output:
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/PythonJob.cpp" line="305"/>
|
||||
<source>Boost.Python error in job "%1".</source>
|
||||
<source>Boost.Python error in job "%1".</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>Calamares::ViewManager</name>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="55"/>
|
||||
@ -310,8 +312,8 @@ Output:
|
||||
<source>Installation Failed</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>CalamaresPython::Helper</name>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/PythonHelper.cpp" line="228"/>
|
||||
@ -333,16 +335,16 @@ Output:
|
||||
<source>Unfetchable Python error.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>CalamaresWindow</name>
|
||||
<message>
|
||||
<location filename="../src/calamares/CalamaresWindow.cpp" line="40"/>
|
||||
<source>%1 Installer</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>CheckFileSystemJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CheckFileSystemJob.cpp" line="34"/>
|
||||
@ -354,8 +356,8 @@ Output:
|
||||
<source>The file system check on partition %1 failed.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ChoicePage</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="105"/>
|
||||
@ -364,7 +366,7 @@ Output:
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="108"/>
|
||||
<source><b>Erase disk and install %1</b><br/><font color="red">Warning: </font>This will delete all of your programs, documents, photos, music, and any other files.</source>
|
||||
<source><b>Erase disk and install %1</b><br/><font color="red">Warning: </font>This will delete all of your programs, documents, photos, music, and any other files.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -379,7 +381,7 @@ Output:
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="134"/>
|
||||
<source><b>Replace %1 with %2</b><br/><font color="red">Warning: </font>This will erase the whole disk and delete all of your %1 programs, documents, photos, music, and any other files.</source>
|
||||
<source><b>Replace %1 with %2</b><br/><font color="red">Warning: </font>This will erase the whole disk and delete all of your %1 programs, documents, photos, music, and any other files.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -395,7 +397,7 @@ Output:
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="154"/>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="188"/>
|
||||
<source><b>Erase disk and install %1</b><br/><font color="red">Warning: </font>This will delete all of your Windows 7 programs, documents, photos, music, and any other files.</source>
|
||||
<source><b>Erase disk and install %1</b><br/><font color="red">Warning: </font>This will delete all of your Windows 7 programs, documents, photos, music, and any other files.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -413,8 +415,8 @@ Output:
|
||||
<source><b>Something else</b><br/>You can create or resize partitions yourself, or choose multiple partitions for %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ConfigurePageAdvanced</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/config/configurepageadvanced.ui" line="23"/>
|
||||
@ -481,8 +483,8 @@ Output:
|
||||
<source>EiB</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ConfigurePageFileSystemColors</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/config/configurepagefilesystemcolors.ui" line="23"/>
|
||||
@ -614,8 +616,8 @@ Output:
|
||||
<source>lvm2 pv:</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ConfigurePageGeneral</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/config/configurepagegeneral.ui" line="23"/>
|
||||
@ -702,8 +704,8 @@ Output:
|
||||
<source>Zeros</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreatePartitionDialog</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="14"/>
|
||||
@ -790,8 +792,8 @@ Output:
|
||||
<source>GPT</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreatePartitionJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="47"/>
|
||||
@ -800,12 +802,12 @@ Output:
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="60"/>
|
||||
<source>The installer failed to create partition on disk '%1'.</source>
|
||||
<source>The installer failed to create partition on disk '%1'.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="69"/>
|
||||
<source>Could not open device '%1'.</source>
|
||||
<source>Could not open device '%1'.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -820,11 +822,11 @@ Output:
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="111"/>
|
||||
<source>The installer failed to update partition table on disk '%1'.</source>
|
||||
<source>The installer failed to update partition table on disk '%1'.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreatePartitionTableDialog</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="20"/>
|
||||
@ -851,8 +853,8 @@ Output:
|
||||
<source>GUID Partition Table (GPT)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreatePartitionTableJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="47"/>
|
||||
@ -869,8 +871,8 @@ Output:
|
||||
<source>Could not open device %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreatePartitionTableWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/createpartitiontablewidgetbase.ui" line="20"/>
|
||||
@ -897,8 +899,8 @@ Output:
|
||||
<source><b>Warning:</b> This will destroy all data on the device!</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreateUserJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/users/CreateUserJob.cpp" line="51"/>
|
||||
@ -955,8 +957,8 @@ Output:
|
||||
<source>chown terminated with error code %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>DecryptLuksDialogWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/decryptluksdialogwidgetbase.ui" line="22"/>
|
||||
@ -968,8 +970,8 @@ Output:
|
||||
<source>&Passphrase:</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>DeletePartitionJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="41"/>
|
||||
@ -996,16 +998,16 @@ Output:
|
||||
<source>Could not open partition table.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>DeviceModel</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/core/DeviceModel.cpp" line="79"/>
|
||||
<source>%1 - %2 (%3)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>DevicePropsWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/devicepropswidgetbase.ui" line="58"/>
|
||||
@ -1067,8 +1069,8 @@ Output:
|
||||
<source>More...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditExistingPartitionDialog</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="20"/>
|
||||
@ -1135,8 +1137,8 @@ Output:
|
||||
<source>Size:</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditMountOptionsDialogWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/editmountoptionsdialogwidgetbase.ui" line="14"/>
|
||||
@ -1148,8 +1150,8 @@ Output:
|
||||
<source>Edit the mount options for this file system:</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditMountPointDialogWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/editmountpointdialogwidgetbase.ui" line="17"/>
|
||||
@ -1246,8 +1248,8 @@ Output:
|
||||
<source>Identify by:</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>EraseDiskPage</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/EraseDiskPage.cpp" line="47"/>
|
||||
@ -1264,8 +1266,8 @@ Output:
|
||||
<source>After:</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>FileSystemSupportDialogWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/filesystemsupportdialogwidgetbase.ui" line="17"/>
|
||||
@ -1344,8 +1346,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<comment>@action:button</comment>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>FillGlobalStorageJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="75"/>
|
||||
@ -1357,8 +1359,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Failed to find path for boot loader</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>FormatPartitionJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="47"/>
|
||||
@ -1367,12 +1369,12 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="59"/>
|
||||
<source>The installer failed to format partition %1 on disk '%2'.</source>
|
||||
<source>The installer failed to format partition %1 on disk '%2'.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="67"/>
|
||||
<source>Could not open device '%1'.</source>
|
||||
<source>Could not open device '%1'.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -1387,27 +1389,27 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="92"/>
|
||||
<source>The installer failed to update partition table on disk '%1'.</source>
|
||||
<source>The installer failed to update partition table on disk '%1'.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>GreetingPage</name>
|
||||
<message>
|
||||
<location filename="../src/modules/greeting/GreetingPage.cpp" line="33"/>
|
||||
<source><h1>Welcome to the %1 installer.</h1><br/>This program will ask you some questions and set up %2 on your computer.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>GreetingViewStep</name>
|
||||
<message>
|
||||
<location filename="../src/modules/greeting/GreetingViewStep.cpp" line="41"/>
|
||||
<source>Welcome</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>KeyboardPage</name>
|
||||
<message>
|
||||
<location filename="../src/modules/keyboard/KeyboardPage.cpp" line="181"/>
|
||||
@ -1419,16 +1421,16 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Set keyboard layout to %1/%2.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>KeyboardViewStep</name>
|
||||
<message>
|
||||
<location filename="../src/modules/keyboard/KeyboardViewStep.cpp" line="45"/>
|
||||
<source>Keyboard</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocalePage</name>
|
||||
<message>
|
||||
<location filename="../src/modules/locale/LocalePage.cpp" line="46"/>
|
||||
@ -1445,8 +1447,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Set timezone to %1/%2.<br/></source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocaleViewStep</name>
|
||||
<message>
|
||||
<location filename="../src/modules/locale/LocaleViewStep.cpp" line="42"/>
|
||||
@ -1458,8 +1460,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindowBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/mainwindowbase.ui" line="14"/>
|
||||
@ -1491,8 +1493,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<comment>@title:window</comment>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>MoveFileSystemJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/MoveFileSystemJob.cpp" line="66"/>
|
||||
@ -1540,8 +1542,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Could not open device %1 to rollback copying.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>Page_Keyboard</name>
|
||||
<message>
|
||||
<location filename="../src/modules/keyboard/KeyboardPage.ui" line="14"/>
|
||||
@ -1558,8 +1560,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Type here to test your keyboard</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>Page_UserSetup</name>
|
||||
<message>
|
||||
<location filename="../src/modules/users/page_usersetup.ui" line="14"/>
|
||||
@ -1629,8 +1631,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Require my password to log in</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>PartPropsWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/partpropswidgetbase.ui" line="49"/>
|
||||
@ -1722,8 +1724,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<comment>@label</comment>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>PartitionManagerWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/partitionmanagerwidgetbase.ui" line="14"/>
|
||||
@ -1791,8 +1793,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Flags</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>PartitionModel</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="132"/>
|
||||
@ -1824,8 +1826,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Size</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>PartitionPage</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/PartitionPage.ui" line="14"/>
|
||||
@ -1872,8 +1874,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>Are you sure you want to create a new partition table on %1?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>PartitionViewStep</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="60"/>
|
||||
@ -1895,8 +1897,8 @@ Some file systems need external tools to be installed for them to be supported.
|
||||
<source>After:</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>PreparePage</name>
|
||||
<message>
|
||||
<location filename="../src/modules/prepare/PreparePage.cpp" line="36"/>
|
||||
@ -1915,8 +1917,8 @@ Installation cannot continue.</source>
|
||||
Installation can continue, but some features might be disabled.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>PrepareViewStep</name>
|
||||
<message>
|
||||
<location filename="../src/modules/prepare/PrepareViewStep.cpp" line="50"/>
|
||||
@ -1948,8 +1950,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Prepare</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ProgressTreeModel</name>
|
||||
<message>
|
||||
<location filename="../src/calamares/progresstree/ProgressTreeModel.cpp" line="136"/>
|
||||
@ -1961,8 +1963,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Finish</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../src/modules/keyboard/keyboardwidget/keyboardglobal.cpp" line="82"/>
|
||||
@ -1975,8 +1977,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ReleaseDialog</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/scripts/release/releasedialog.ui" line="20"/>
|
||||
@ -2093,8 +2095,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Apply &fixes</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ResizeFileSystemJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="75"/>
|
||||
@ -2111,8 +2113,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Failed to resize filesystem.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>ResizePartitionJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="186"/>
|
||||
@ -2122,16 +2124,16 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="208"/>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="266"/>
|
||||
<source>The installer failed to resize partition %1 on disk '%2'.</source>
|
||||
<source>The installer failed to resize partition %1 on disk '%2'.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="213"/>
|
||||
<source>Could not open device '%1'.</source>
|
||||
<source>Could not open device '%1'.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>SetHostNameJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetHostNameJob.cpp" line="36"/>
|
||||
@ -2149,8 +2151,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Cannot write hostname to target system</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>SetPartGeometryJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="143"/>
|
||||
@ -2162,8 +2164,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Failed to change the geometry of the partition.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>SetPasswordJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetPasswordJob.cpp" line="42"/>
|
||||
@ -2190,8 +2192,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>usermod terminated with error code %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>SetTimezoneJob</name>
|
||||
<message>
|
||||
<location filename="../src/modules/locale/SetTimezoneJob.cpp" line="41"/>
|
||||
@ -2218,8 +2220,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Link creation failed, target: %1; link name: %2</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>SizeDetailsWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/sizedetailswidgetbase.ui" line="62"/>
|
||||
@ -2238,8 +2240,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Align partition</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>SizeDialogWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/sizedialogwidgetbase.ui" line="55"/>
|
||||
@ -2310,8 +2312,8 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<comment>@label:listbox</comment>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>SmartDialogWidgetBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/smartdialogwidgetbase.ui" line="23"/>
|
||||
@ -2413,16 +2415,16 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Self tests:</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>SummaryViewStep</name>
|
||||
<message>
|
||||
<location filename="../src/modules/summary/SummaryViewStep.cpp" line="41"/>
|
||||
<source>Summary</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>TreeLogBase</name>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/partitionmanager/src/gui/treelogbase.ui" line="54"/>
|
||||
@ -2447,12 +2449,12 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<comment>@title:column the text message of a log entry</comment>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>UsersPage</name>
|
||||
<message>
|
||||
<location filename="../src/modules/users/UsersPage.cpp" line="226"/>
|
||||
<source>Your username contains an invalid character '%1'</source>
|
||||
<source>Your username contains an invalid character '%1'</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -2462,7 +2464,7 @@ Installation can continue, but some features might be disabled.</source>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/UsersPage.cpp" line="277"/>
|
||||
<source>Your hostname contains an invalid character '%1'</source>
|
||||
<source>Your hostname contains an invalid character '%1'</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
@ -2476,13 +2478,13 @@ Installation can continue, but some features might be disabled.</source>
|
||||
<source>Your passwords do not match!</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
</context>
|
||||
<context>
|
||||
<name>UsersViewStep</name>
|
||||
<message>
|
||||
<location filename="../src/modules/users/UsersViewStep.cpp" line="46"/>
|
||||
<source>Users</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
</context>
|
||||
</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
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
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -26,8 +26,8 @@ msgstr "Configure GRUB."
|
||||
msgid "Mounting partitions."
|
||||
msgstr "Mounting partitions."
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -38,7 +38,7 @@ msgstr "Mounting partitions."
|
||||
msgid "Configuration Error"
|
||||
msgstr "Configuration Error"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -93,15 +93,15 @@ msgstr "Unmount file systems."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "Filling up filesystems."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "rsync failed with error code {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "Failed to unpack image \"{}\""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
@ -109,36 +109,36 @@ msgstr ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "No mount point for root partition"
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "Bad mount point for root partition"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "Bad unsquash configuration"
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "The filesystem for \"{}\" ({}) is not supported"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "The source filesystem \"{}\" does not exist"
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "The destination \"{}\" in the target system is not a directory"
|
||||
|
||||
@ -198,11 +198,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "Display manager configuration was incomplete"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr "Configuring mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -30,8 +30,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr "جاري تركيب الأقسام"
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -42,7 +42,7 @@ msgstr "جاري تركيب الأقسام"
|
||||
msgid "Configuration Error"
|
||||
msgstr "خطأ في الضبط"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -94,50 +94,50 @@ msgstr "الغاء تحميل ملف النظام"
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "جاري ملئ أنظمة الملفات"
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "فشل rsync مع رمز الخطأ {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -195,11 +195,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "إعداد مدير العرض لم يكتمل"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
BIN
lang/python/as/LC_MESSAGES/python.mo
Normal file
BIN
lang/python/as/LC_MESSAGES/python.mo
Normal file
Binary file not shown.
350
lang/python/as/LC_MESSAGES/python.po
Normal file
350
lang/python/as/LC_MESSAGES/python.po
Normal file
@ -0,0 +1,350 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Deep Jyoti Choudhury <deep.choudhury@libresoft.in>, 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"
|
||||
"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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: as\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: src/modules/grubcfg/main.py:37
|
||||
msgid "Configure GRUB."
|
||||
msgstr "GRUB কনফিগাৰ কৰক।"
|
||||
|
||||
#: src/modules/mount/main.py:38
|
||||
msgid "Mounting partitions."
|
||||
msgstr "বিভাজন মাউন্ট্ কৰা।"
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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/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
|
||||
msgid "Configuration Error"
|
||||
msgstr "কনফিগাৰেচন ত্ৰুটি"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
msgid "No partitions are defined for <pre>{!s}</pre> to use."
|
||||
msgstr "<pre>{!s}</pre>ৰ ব্যৱহাৰৰ বাবে কোনো বিভাজনৰ বৰ্ণনা দিয়া হোৱা নাই।"
|
||||
|
||||
#: src/modules/services-systemd/main.py:35
|
||||
msgid "Configure systemd services"
|
||||
msgstr "systemd সেৱা সমুহ কনফিগাৰ কৰক"
|
||||
|
||||
#: src/modules/services-systemd/main.py:68
|
||||
#: src/modules/services-openrc/main.py:102
|
||||
msgid "Cannot modify service"
|
||||
msgstr "সেৱা সমুহৰ সংশোধন কৰিব নোৱাৰি"
|
||||
|
||||
#: src/modules/services-systemd/main.py:69
|
||||
msgid ""
|
||||
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
|
||||
msgstr "chrootত systemctl <code>{arg!s}</code>ৰ call ক্ৰুটি কোড {num!s}।"
|
||||
|
||||
#: src/modules/services-systemd/main.py:72
|
||||
#: src/modules/services-systemd/main.py:76
|
||||
msgid "Cannot enable systemd service <code>{name!s}</code>."
|
||||
msgstr "systemd সেৱা <code>{name!s}</code> সক্ৰিয় কৰিব নোৱাৰি।"
|
||||
|
||||
#: src/modules/services-systemd/main.py:74
|
||||
msgid "Cannot enable systemd target <code>{name!s}</code>."
|
||||
msgstr "systemd গন্তব্য স্থান <code>{name!s}</code> সক্ৰিয় কৰিব নোৱাৰি।"
|
||||
|
||||
#: src/modules/services-systemd/main.py:78
|
||||
msgid "Cannot disable systemd target <code>{name!s}</code>."
|
||||
msgstr "systemd গন্তব্য স্থান <code>{name!s}</code> নিষ্ক্ৰিয় কৰিব নোৱাৰি।"
|
||||
|
||||
#: src/modules/services-systemd/main.py:80
|
||||
msgid "Cannot mask systemd unit <code>{name!s}</code>."
|
||||
msgstr "systemd একক <code>{name!s}</code> মাস্ক্ কৰিব নোৱাৰি।"
|
||||
|
||||
#: src/modules/services-systemd/main.py:82
|
||||
msgid ""
|
||||
"Unknown systemd commands <code>{command!s}</code> and "
|
||||
"<code>{suffix!s}</code> for unit {name!s}."
|
||||
msgstr ""
|
||||
"একক {name!s}ৰ বাবে <code>{command!s}</code> আৰু <code>{suffix!s}</code> "
|
||||
"অজ্ঞাত systemd কমাণ্ড্।"
|
||||
|
||||
#: src/modules/umount/main.py:40
|
||||
msgid "Unmount file systems."
|
||||
msgstr "ফাইল চিছটেমবোৰ মাউণ্টৰ পৰা আতৰাওক।"
|
||||
|
||||
#: src/modules/unpackfs/main.py:41
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "ফাইল চিছটেমবোৰ পূৰণ কৰা হৈ আছে।"
|
||||
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "rsync ক্ৰুটি কোড {}ৰ সৈতে বিফল হ'ল।"
|
||||
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "ইমেজ \"{}\" খোলাত ব্যৰ্থ হ'ল"
|
||||
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
"unsquashfs বিচৰাত ব্যৰ্থ হ'ল, নিশ্চিত কৰক যে আপুনি squashfs-tools ইন্স্তল "
|
||||
"কৰিছে"
|
||||
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "ৰুট বিভাজনত কোনো মাউণ্ট পইণ্ট্ নাই"
|
||||
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr "globalstorage ত rootMountPoint key নাই, একো কৰিব পৰা নাযায়"
|
||||
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "মুল বিভাজনৰ বাবে বেয়া মাউন্ট্ পইন্ট্"
|
||||
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "rootMountPoint হ'ল \"{}\", যিটো উপস্থিত নাই, একো কৰিব পৰা নাযায়"
|
||||
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "বেয়া unsquash কনফিগাৰেচন"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "\"{}\"ৰ বাবে ফাইল চিছটেম ({})টো অনুমোদিত নহয়"
|
||||
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "\"{}\" ফাইল চিছটেম উপস্থিত নাই"
|
||||
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "লক্ষ্যৰ চিছটেম গন্তব্য স্থান \"{}\" এটা ডিৰেক্টৰী নহয়"
|
||||
|
||||
#: src/modules/displaymanager/main.py:515
|
||||
msgid "Cannot write KDM configuration file"
|
||||
msgstr "KDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
|
||||
|
||||
#: src/modules/displaymanager/main.py:516
|
||||
msgid "KDM config file {!s} does not exist"
|
||||
msgstr "KDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
|
||||
|
||||
#: src/modules/displaymanager/main.py:577
|
||||
msgid "Cannot write LXDM configuration file"
|
||||
msgstr "LXDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
|
||||
|
||||
#: src/modules/displaymanager/main.py:578
|
||||
msgid "LXDM config file {!s} does not exist"
|
||||
msgstr "LXDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
|
||||
|
||||
#: src/modules/displaymanager/main.py:661
|
||||
msgid "Cannot write LightDM configuration file"
|
||||
msgstr "LightDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
|
||||
|
||||
#: src/modules/displaymanager/main.py:662
|
||||
msgid "LightDM config file {!s} does not exist"
|
||||
msgstr "LightDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
|
||||
|
||||
#: src/modules/displaymanager/main.py:736
|
||||
msgid "Cannot configure LightDM"
|
||||
msgstr "LightDM কনফিগাৰ কৰিব নোৱাৰি"
|
||||
|
||||
#: src/modules/displaymanager/main.py:737
|
||||
msgid "No LightDM greeter installed."
|
||||
msgstr "কোনো LightDM স্ৱাগতকৰ্তা ইন্স্তল নাই।"
|
||||
|
||||
#: src/modules/displaymanager/main.py:768
|
||||
msgid "Cannot write SLIM configuration file"
|
||||
msgstr "SLIM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
|
||||
|
||||
#: src/modules/displaymanager/main.py:769
|
||||
msgid "SLIM config file {!s} does not exist"
|
||||
msgstr "SLIM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
|
||||
|
||||
#: src/modules/displaymanager/main.py:895
|
||||
msgid "No display managers selected for the displaymanager module."
|
||||
msgstr "displaymanager মডিউলৰ বাবে কোনো ডিস্প্লে প্ৰবন্ধক নাই।"
|
||||
|
||||
#: src/modules/displaymanager/main.py:896
|
||||
msgid ""
|
||||
"The displaymanagers list is empty or undefined in bothglobalstorage and "
|
||||
"displaymanager.conf."
|
||||
msgstr ""
|
||||
"bothglobalstorage আৰু displaymanager.confত displaymanagers সুচিখন খালী বা "
|
||||
"অবৰ্ণিত।"
|
||||
|
||||
#: src/modules/displaymanager/main.py:978
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "ডিস্প্লে প্ৰবন্ধক কন্ফিগাৰেচন অসমাপ্ত"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
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
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr "ব্যৱহাৰৰ বাবে <pre>{!s}</pre>ৰ কোনো মাউন্ট্ পাইন্ট্ দিয়া হোৱা নাই।"
|
||||
|
||||
#: src/modules/luksopenswaphookcfg/main.py:35
|
||||
msgid "Configuring encrypted swap."
|
||||
msgstr "এন্ক্ৰিপ্টেড স্ৱেপ কন্ফিগাৰ কৰি আছে।"
|
||||
|
||||
#: src/modules/rawfs/main.py:35
|
||||
msgid "Installing data."
|
||||
msgstr "ডাটা ইন্স্তল কৰি আছে।"
|
||||
|
||||
#: src/modules/services-openrc/main.py:38
|
||||
msgid "Configure OpenRC services"
|
||||
msgstr "OpenRC সেৱা সমুহ কনফিগাৰ কৰক"
|
||||
|
||||
#: src/modules/services-openrc/main.py:66
|
||||
msgid "Cannot add service {name!s} to run-level {level!s}."
|
||||
msgstr "ৰাণ-লেভেল {level!s}ত সেৱা {name!s} যোগ কৰিব নোৱাৰি।"
|
||||
|
||||
#: src/modules/services-openrc/main.py:68
|
||||
msgid "Cannot remove service {name!s} from run-level {level!s}."
|
||||
msgstr "ৰাণ-লেভেল {level!s}ৰ পৰা সেৱা {name!s} আতৰাব নোৱাৰি।"
|
||||
|
||||
#: src/modules/services-openrc/main.py:70
|
||||
msgid ""
|
||||
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
|
||||
"level {level!s}."
|
||||
msgstr ""
|
||||
"ৰান-লেভেল {level!s}ত সেৱা {name!s}ৰ বাবে অজ্ঞাত সেৱা কাৰ্য্য "
|
||||
"<code>{arg!s}</code> ।"
|
||||
|
||||
#: src/modules/services-openrc/main.py:103
|
||||
msgid ""
|
||||
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
|
||||
msgstr "chrootত <code>rc-update {arg!s}</code> call ক্ৰুটি কোড {num!s}।"
|
||||
|
||||
#: src/modules/services-openrc/main.py:110
|
||||
msgid "Target runlevel does not exist"
|
||||
msgstr "গন্তব্য ৰাণলেভেল উপস্থিত নাই।"
|
||||
|
||||
#: src/modules/services-openrc/main.py:111
|
||||
msgid ""
|
||||
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
|
||||
"exist."
|
||||
msgstr ""
|
||||
"{level!s} ৰাণলেভেলৰ বাবে পথ হ'ল <code>{path!s}</code> যিটো উপস্থিত নাই।"
|
||||
|
||||
#: src/modules/services-openrc/main.py:119
|
||||
msgid "Target service does not exist"
|
||||
msgstr "গন্তব্য সেৱা উপস্থিত নাই।"
|
||||
|
||||
#: src/modules/services-openrc/main.py:120
|
||||
msgid ""
|
||||
"The path for service {name!s} is <code>{path!s}</code>, which does not "
|
||||
"exist."
|
||||
msgstr "{name!s}ৰ বাবে পথ হ'ল <code>{path!s}</code> যিটো উপস্থিত নাই।"
|
||||
|
||||
#: src/modules/plymouthcfg/main.py:36
|
||||
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)"
|
||||
msgstr "(%(count)d / %(total)d) পেকেজবোৰ সংশোধন কৰি আছে"
|
||||
|
||||
#: src/modules/packages/main.py:64 src/modules/packages/main.py:74
|
||||
msgid "Install packages."
|
||||
msgstr "পেকেজ ইন্স্তল কৰক।"
|
||||
|
||||
#: src/modules/packages/main.py:67
|
||||
#, python-format
|
||||
msgid "Installing one package."
|
||||
msgid_plural "Installing %(num)d packages."
|
||||
msgstr[0] "Installing one package."
|
||||
msgstr[1] "%(num)d পেকেজবোৰ ইনস্তল হৈ আছে।"
|
||||
|
||||
#: src/modules/packages/main.py:70
|
||||
#, python-format
|
||||
msgid "Removing one package."
|
||||
msgid_plural "Removing %(num)d packages."
|
||||
msgstr[0] "Removing one package."
|
||||
msgstr[1] "%(num)d পেকেজবোৰ আতৰোৱা হৈ আছে।"
|
||||
|
||||
#: src/modules/bootloader/main.py:51
|
||||
msgid "Install bootloader."
|
||||
msgstr "বুতলোডাৰ ইন্স্তল কৰক।"
|
||||
|
||||
#: src/modules/removeuser/main.py:34
|
||||
msgid "Remove live user from target system"
|
||||
msgstr "গন্তব্য চিছটেমৰ পৰা লাইভ ব্যৱহাৰকাৰি আতৰাওক"
|
||||
|
||||
#: src/modules/hwclock/main.py:35
|
||||
msgid "Setting hardware clock."
|
||||
msgstr "হাৰ্ডৱেৰৰ ঘড়ী চেত্ কৰি আছে।"
|
||||
|
||||
#: src/modules/dracut/main.py:36
|
||||
msgid "Creating initramfs with dracut."
|
||||
msgstr "dracutৰ সৈতে initramfs বনাই আছে।"
|
||||
|
||||
#: src/modules/dracut/main.py:58
|
||||
msgid "Failed to run dracut on the target"
|
||||
msgstr "গন্তব্য স্থানত dracut চলোৱাত বিফল হ'ল"
|
||||
|
||||
#: src/modules/dracut/main.py:59
|
||||
msgid "The exit code was {}"
|
||||
msgstr "এক্সিড্ কোড্ আছিল {}"
|
||||
|
||||
#: src/modules/initramfscfg/main.py:41
|
||||
msgid "Configuring initramfs."
|
||||
msgstr "initramfs কন্ফিগাৰ কৰি আছে।"
|
||||
|
||||
#: src/modules/openrcdmcryptcfg/main.py:34
|
||||
msgid "Configuring OpenRC dmcrypt service."
|
||||
msgstr "OpenRC dmcrypt সেৱা কন্ফিগাৰ কৰি আছে।"
|
||||
|
||||
#: src/modules/fstab/main.py:38
|
||||
msgid "Writing fstab."
|
||||
msgstr "fstab লিখি আছে।"
|
||||
|
||||
#: src/modules/dummypython/main.py:44
|
||||
msgid "Dummy python job."
|
||||
msgstr "ডামী Pythonৰ কায্য"
|
||||
|
||||
#: src/modules/dummypython/main.py:97
|
||||
msgid "Dummy python step {}"
|
||||
msgstr "ডামী Pythonৰ পদক্ষেপ {}"
|
||||
|
||||
#: src/modules/localecfg/main.py:39
|
||||
msgid "Configuring locales."
|
||||
msgstr "স্থানীয়বোৰ কন্ফিগাৰ কৰি আছে।"
|
||||
|
||||
#: src/modules/networkcfg/main.py:37
|
||||
msgid "Saving network configuration."
|
||||
msgstr "নেটৱৰ্ক কন্ফিগাৰ জমা কৰি আছে।"
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -29,8 +29,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -93,15 +93,15 @@ msgstr "Desmontaxe de sistemes de ficheros."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "Rellenando los sistemes de ficheros."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "rsync falló col códigu de fallu {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "Fallu al desempaquetar la imaxe «{}»"
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
@ -109,37 +109,37 @@ msgstr ""
|
||||
"Fallu al alcontrar unsquashfs, asegúrate que tienes instaláu'l paquete "
|
||||
"squashfs-tools"
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "Nun hai un puntu de montaxe pa la partición del raigañu"
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
"globalstorage nun contién una clave «rootMountPoint». Nun va facese nada"
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "El puntu de montaxe ye incorreutu pa la partición del raigañu"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "rootMountPoint ye «{}» que nun esiste. Nun va facese nada"
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "La configuración d'espardimientu ye incorreuta"
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "El sistema de ficheros pa «{}» ({}) nun ta sofitáu"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "El sistema de ficheros d'orixe «{}» nun esiste"
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "El destín «{}» nel sistema de destín nun ye un direutoriu"
|
||||
|
||||
@ -199,11 +199,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "La configuración del xestor de pantalles nun se completó"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr "Configurando mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -29,8 +29,8 @@ msgstr "Наладзіць GRUB."
|
||||
msgid "Mounting partitions."
|
||||
msgstr "Мантаванне раздзелаў."
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr "Мантаванне раздзелаў."
|
||||
msgid "Configuration Error"
|
||||
msgstr "Памылка канфігурацыі"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -95,15 +95,15 @@ msgstr "Адмантаваць файлавыя сістэмы."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "Запаўненне файлавых сістэм."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "памылка rsync з кодам {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "Не атрымалася распакаваць вобраз \"{}\""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
@ -111,36 +111,36 @@ msgstr ""
|
||||
"Не атрымалася знайсці unsquashfs, праверце ці ўсталяваны ў вас пакунак "
|
||||
"squashfs-tools"
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "Для каранёвага раздзела няма пункта мантавання"
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr "globalstorage не змяшчае ключа \"rootMountPoint\", нічога не выконваецца"
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "Хібны пункт мантавання для каранёвага раздзела"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "rootMountPoint \"{}\" не існуе, нічога не выконваецца"
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "Хібная канфігурацыя unsquash"
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "Файлавая сістэма для \"{}\" ({}) не падтрымліваецца"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "Зыходная файлавая сістэма \"{}\" не існуе"
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "Пункт прызначэння \"{}\" у мэтавай сістэме не з’яўляецца каталогам"
|
||||
|
||||
@ -200,11 +200,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "Наладка дысплейнага кіраўніка не завершаная."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr "Наладка mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -29,8 +29,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -93,50 +93,50 @@ msgstr "Демонтирай файловите системи."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -194,11 +194,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Davidmp <medipas@gmail.com>, 2019\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n"
|
||||
@ -29,8 +29,8 @@ msgstr "Configura el GRUB."
|
||||
msgid "Mounting partitions."
|
||||
msgstr "Es munten les particions."
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr "Es munten les particions."
|
||||
msgid "Configuration Error"
|
||||
msgstr "Error de configuració"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -97,15 +97,15 @@ msgstr "Desmunta els sistemes de fitxers."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "S'omplen els sistemes de fitxers."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "Ha fallat rsync amb el codi d'error {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "Ha fallat desempaquetar la imatge \"{}\"."
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
@ -113,36 +113,36 @@ msgstr ""
|
||||
"Ha fallat trobar unsquashfs, assegureu-vos que tingueu el paquet squashfs-"
|
||||
"tools instal·lat."
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "No hi ha punt de muntatge per a la partició d'arrel."
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: 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."
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "Punt de muntatge incorrecte per a la partició d'arrel"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "El punt de muntatge d'arrel és \"{}\", que no existeix. No es fa res."
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "Configuració incorrecta d'unsquash."
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "El sistema de fitxers per a \"{}\" ({}) no s'admet."
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "El sistema de fitxers font \"{}\" no existeix."
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "La destinació \"{}\" al sistema de destinació no és un directori."
|
||||
|
||||
@ -203,11 +203,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "La configuració del gestor de pantalla no era completa."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr "Es configura mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -25,8 +25,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -37,7 +37,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -89,50 +89,50 @@ msgstr ""
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -190,11 +190,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -30,8 +30,8 @@ msgstr "Nastavování zavaděče GRUB."
|
||||
msgid "Mounting partitions."
|
||||
msgstr "Připojování oddílů."
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -42,7 +42,7 @@ msgstr "Připojování oddílů."
|
||||
msgid "Configuration Error"
|
||||
msgstr "Chyba nastavení"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -97,15 +97,15 @@ msgstr "Odpojit souborové systémy."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "Naplňování souborových systémů."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "rsync se nezdařilo s chybových kódem {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "Nepodařilo se rozbalit obraz „{}“"
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
@ -113,36 +113,36 @@ msgstr ""
|
||||
"Nepodařilo se nalézt unsquashfs – ověřte, že máte nainstalovaný balíček "
|
||||
"squashfs-tools"
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "Žádný přípojný bot pro kořenový oddíl"
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr "globalstorage neobsahuje klíč „rootMountPoint“ – nic se nebude dělat"
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "Chybný přípojný bod pro kořenový oddíl"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "kořenovýPřípojnýBod je „{}“, který neexistuje – nic se nebude dělat"
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "Chybná nastavení unsquash"
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "Souborový systém „{}“ ({}) není podporován"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "Zdrojový souborový systém „{}“ neexistuje"
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "Cíl „{}“ v cílovém systému není složka"
|
||||
|
||||
@ -202,11 +202,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "Nastavení správce displeje nebylo úplné"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr "Nastavování mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -30,8 +30,8 @@ msgstr "Konfigurer GRUB."
|
||||
msgid "Mounting partitions."
|
||||
msgstr "Monterer partitioner."
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -42,7 +42,7 @@ msgstr "Monterer partitioner."
|
||||
msgid "Configuration Error"
|
||||
msgstr "Fejl ved konfiguration"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -97,15 +97,15 @@ msgstr "Afmonter filsystemer."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "Udfylder filsystemer."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "rsync mislykkedes med fejlkoden {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "Kunne ikke udpakke aftrykket \"{}\""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
@ -113,36 +113,36 @@ msgstr ""
|
||||
"Kunne ikke finde unsquashfs, sørg for at squashfs-tools-pakken er "
|
||||
"installeret"
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "Intet monteringspunkt til rodpartition"
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr "globalstorage indeholder ikke en \"rootMountPoint\"-nøgle, gør intet"
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "Dårligt monteringspunkt til rodpartition"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "rootMountPoint er \"{}\", hvilket ikke findes, gør intet"
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "Dårlig unsquash-konfiguration"
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "Filsystemet til \"{}\" ({}) understøttes ikke"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "Kildefilsystemet \"{}\" findes ikke"
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "Destinationen \"{}\" i målsystemet er ikke en mappe"
|
||||
|
||||
@ -203,11 +203,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "Displayhåndtering-konfiguration er ikke komplet"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr "Konfigurerer mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
Binary file not shown.
@ -4,18 +4,18 @@
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Christian Spaan, 2018
|
||||
# Adriaan de Groot <groot@kde.org>, 2019
|
||||
# Andreas Eitel <github-aneitel@online.de>, 2019
|
||||
# Christian Spaan, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Andreas Eitel <github-aneitel@online.de>, 2019\n"
|
||||
"Last-Translator: Christian Spaan, 2020\n"
|
||||
"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -29,10 +29,10 @@ msgstr "GRUB konfigurieren."
|
||||
|
||||
#: src/modules/mount/main.py:38
|
||||
msgid "Mounting partitions."
|
||||
msgstr "Partitionen mounten."
|
||||
msgstr "Hänge Partitionen ein."
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -43,17 +43,16 @@ msgstr "Partitionen mounten."
|
||||
msgid "Configuration Error"
|
||||
msgstr "Konfigurationsfehler"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
msgid "No partitions are defined for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
"Es sind keine Partitionen für <pre>{!s}</pre> zur Verwendung definiert."
|
||||
msgstr "Für <pre>{!s}</pre> sind keine zu verwendenden Partitionen definiert."
|
||||
|
||||
#: src/modules/services-systemd/main.py:35
|
||||
msgid "Configure systemd services"
|
||||
msgstr "Konfiguriere systemd Dienste"
|
||||
msgstr "Konfiguriere systemd-Dienste"
|
||||
|
||||
#: src/modules/services-systemd/main.py:68
|
||||
#: src/modules/services-openrc/main.py:102
|
||||
@ -89,7 +88,7 @@ msgid ""
|
||||
"Unknown systemd commands <code>{command!s}</code> and "
|
||||
"<code>{suffix!s}</code> for unit {name!s}."
|
||||
msgstr ""
|
||||
"Unbekannte systemd Befehle <code>{command!s}</code> und "
|
||||
"Unbekannte systemd-Befehle <code>{command!s}</code> und "
|
||||
"<code>{suffix!s}</code> für Einheit {name!s}."
|
||||
|
||||
#: src/modules/umount/main.py:40
|
||||
@ -98,80 +97,81 @@ msgstr "Dateisysteme aushängen."
|
||||
|
||||
#: src/modules/unpackfs/main.py:41
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "Auffüllen von Dateisystemen."
|
||||
msgstr "Befüllen von Dateisystemen."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "rsync fehlgeschlagen mit Fehlercode {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "Entpacken des Image \"{}\" fehlgeschlagen"
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
"Konnte kein unsquashfs finden, stellen Sie sicher, dass Sie das squashfs-"
|
||||
"tools Paket installiert haben"
|
||||
"Konnte unsquashfs nicht finden, stellen Sie sicher, dass Sie das Paket "
|
||||
"namens squashfs-tools installiert haben"
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "Kein Mount-Punkt für die Root-Partition"
|
||||
msgstr "Kein Einhängepunkt für die Root-Partition"
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr "globalstorage enthält keinen \"rootMountPoint\"-Schlüssel, tue nichts"
|
||||
msgstr ""
|
||||
"globalstorage enthält keinen Schlüssel namens \"rootMountPoint\", tue nichts"
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "Schlechter Mount-Punkt für die Root-Partition"
|
||||
msgstr "Ungültiger Einhängepunkt für die Root-Partition"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "rootMountPoint ist \"{}\", welcher nicht existiert, tue nichts"
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "Schlechte unsquash Konfiguration"
|
||||
msgstr "Ungültige unsquash-Konfiguration"
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "Das Dateisystem für \"{}\" ({}) wird nicht unterstützt"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "Das Quelldateisystem \"{}\" existiert nicht"
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "Das Ziel \"{}\" im Zielsystem ist kein Verzeichnis"
|
||||
|
||||
#: src/modules/displaymanager/main.py:515
|
||||
msgid "Cannot write KDM configuration file"
|
||||
msgstr "Schreiben der KDM Konfigurationsdatei nicht möglich"
|
||||
msgstr "Schreiben der KDM-Konfigurationsdatei nicht möglich"
|
||||
|
||||
#: src/modules/displaymanager/main.py:516
|
||||
msgid "KDM config file {!s} does not exist"
|
||||
msgstr "KDM Konfigurationsdatei {!s} existiert nicht"
|
||||
msgstr "KDM-Konfigurationsdatei {!s} existiert nicht"
|
||||
|
||||
#: src/modules/displaymanager/main.py:577
|
||||
msgid "Cannot write LXDM configuration file"
|
||||
msgstr "Schreiben der LXDM Konfigurationsdatei nicht möglich"
|
||||
msgstr "Schreiben der LXDM-Konfigurationsdatei nicht möglich"
|
||||
|
||||
#: src/modules/displaymanager/main.py:578
|
||||
msgid "LXDM config file {!s} does not exist"
|
||||
msgstr "LXDM Konfigurationsdatei {!s} existiert nicht"
|
||||
msgstr "LXDM-Konfigurationsdatei {!s} existiert nicht"
|
||||
|
||||
#: src/modules/displaymanager/main.py:661
|
||||
msgid "Cannot write LightDM configuration file"
|
||||
msgstr "Schreiben der LightDM Konfigurationsdatei nicht möglich"
|
||||
msgstr "Schreiben der LightDM-Konfigurationsdatei nicht möglich"
|
||||
|
||||
#: src/modules/displaymanager/main.py:662
|
||||
msgid "LightDM config file {!s} does not exist"
|
||||
msgstr "LightDM Konfigurationsdatei {!s} existiert nicht"
|
||||
msgstr "LightDM-Konfigurationsdatei {!s} existiert nicht"
|
||||
|
||||
#: src/modules/displaymanager/main.py:736
|
||||
msgid "Cannot configure LightDM"
|
||||
@ -179,72 +179,73 @@ msgstr "Konfiguration von LightDM ist nicht möglich"
|
||||
|
||||
#: src/modules/displaymanager/main.py:737
|
||||
msgid "No LightDM greeter installed."
|
||||
msgstr "Kein LightDM Begrüßer installiert."
|
||||
msgstr "Keine Benutzeroberfläche für LightDM installiert."
|
||||
|
||||
#: src/modules/displaymanager/main.py:768
|
||||
msgid "Cannot write SLIM configuration file"
|
||||
msgstr "Schreiben der SLIM Konfigurationsdatei nicht möglich"
|
||||
msgstr "Schreiben der SLIM-Konfigurationsdatei nicht möglich"
|
||||
|
||||
#: src/modules/displaymanager/main.py:769
|
||||
msgid "SLIM config file {!s} does not exist"
|
||||
msgstr "SLIM Konfigurationsdatei {!s} existiert nicht"
|
||||
msgstr "SLIM-Konfigurationsdatei {!s} existiert nicht"
|
||||
|
||||
#: src/modules/displaymanager/main.py:895
|
||||
msgid "No display managers selected for the displaymanager module."
|
||||
msgstr "Keine Displaymanager für das Displaymanagermodul ausgewählt."
|
||||
msgstr "Keine Displaymanager für das Displaymanager-Modul ausgewählt."
|
||||
|
||||
#: src/modules/displaymanager/main.py:896
|
||||
msgid ""
|
||||
"The displaymanagers list is empty or undefined in bothglobalstorage and "
|
||||
"displaymanager.conf."
|
||||
msgstr ""
|
||||
"Die Displaymanagerliste ist leer oder nicht in bothglobalstorage und "
|
||||
"Die Liste der Displaymanager ist leer oder weder in globalstorage noch in "
|
||||
"displaymanager.conf definiert."
|
||||
|
||||
#: src/modules/displaymanager/main.py:978
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "Displaymanagerkonfiguration war unvollständig."
|
||||
msgstr "Die Konfiguration des Displaymanager war unvollständig."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr "mkinitcpio konfigurieren."
|
||||
msgstr "Konfiguriere mkinitcpio. "
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
msgid "No root mount point is given for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
"Es ist kein Root-Mount-Punkt für <pre>{!s}</pre> zur Verwendung angegeben."
|
||||
"Für <pre>{!s}</pre> wurde kein Einhängepunkt für die Root-Partition "
|
||||
"angegeben."
|
||||
|
||||
#: src/modules/luksopenswaphookcfg/main.py:35
|
||||
msgid "Configuring encrypted swap."
|
||||
msgstr "Konfiguriere verschlüsseltes swap."
|
||||
msgstr "Konfiguriere verschlüsselten Auslagerungsspeicher."
|
||||
|
||||
#: src/modules/rawfs/main.py:35
|
||||
msgid "Installing data."
|
||||
msgstr "Daten installieren."
|
||||
msgstr "Installiere Daten."
|
||||
|
||||
#: src/modules/services-openrc/main.py:38
|
||||
msgid "Configure OpenRC services"
|
||||
msgstr "Konfiguriere OpenRC Dienste"
|
||||
msgstr "Konfiguriere OpenRC-Dienste"
|
||||
|
||||
#: src/modules/services-openrc/main.py:66
|
||||
msgid "Cannot add service {name!s} to run-level {level!s}."
|
||||
msgstr "Kann den Dienst {name!s} nicht zu run-level {level!s} hinzufügen."
|
||||
msgstr "Kann den Dienst {name!s} nicht zu Runlevel {level!s} hinzufügen."
|
||||
|
||||
#: src/modules/services-openrc/main.py:68
|
||||
msgid "Cannot remove service {name!s} from run-level {level!s}."
|
||||
msgstr "Kenn den Dienst {name!s} nicht aus run-level {level!s} entfernen."
|
||||
msgstr "Kann den Dienst {name!s} nicht aus Runlevel {level!s} entfernen."
|
||||
|
||||
#: src/modules/services-openrc/main.py:70
|
||||
msgid ""
|
||||
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
|
||||
"level {level!s}."
|
||||
msgstr ""
|
||||
"Unbekannte Dienstaktion <code>{arg!s}</code> für Dienst {name!s} in run-"
|
||||
"level {level!s}."
|
||||
"Unbekannte Aktion <code>{arg!s}</code> für Dienst {name!s} in Runlevel "
|
||||
"{level!s}."
|
||||
|
||||
#: src/modules/services-openrc/main.py:103
|
||||
msgid ""
|
||||
@ -255,29 +256,31 @@ msgstr ""
|
||||
|
||||
#: src/modules/services-openrc/main.py:110
|
||||
msgid "Target runlevel does not exist"
|
||||
msgstr "Ziel Runlevel existiert nicht"
|
||||
msgstr "Vorgesehenes Runlevel existiert nicht"
|
||||
|
||||
#: src/modules/services-openrc/main.py:111
|
||||
msgid ""
|
||||
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
|
||||
"exist."
|
||||
msgstr "Der Pfad für runlevel {level!s}, der nicht existiert, ist {path!s}."
|
||||
msgstr ""
|
||||
"Der Pfad für Runlevel {level!s} ist <code>{path!s}</code>, welcher nicht "
|
||||
"existiert."
|
||||
|
||||
#: src/modules/services-openrc/main.py:119
|
||||
msgid "Target service does not exist"
|
||||
msgstr "Zieldienst existiert nicht"
|
||||
msgstr "Der vorgesehene Dienst existiert nicht"
|
||||
|
||||
#: src/modules/services-openrc/main.py:120
|
||||
msgid ""
|
||||
"The path for service {name!s} is <code>{path!s}</code>, which does not "
|
||||
"exist."
|
||||
msgstr ""
|
||||
"Der Pfad für den Dienst {name!s}, der nicht existiert, ist "
|
||||
"<code>{path!s}</code>."
|
||||
"Der Pfad für den Dienst {name!s} is <code>{path!s}</code>, welcher nicht "
|
||||
"existiert."
|
||||
|
||||
#: src/modules/plymouthcfg/main.py:36
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr "Konfiguriere Plymouth Thema"
|
||||
msgstr "Konfiguriere Plymouth-Thema"
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
@ -332,11 +335,11 @@ msgstr "Der Exit-Code war {}"
|
||||
|
||||
#: src/modules/initramfscfg/main.py:41
|
||||
msgid "Configuring initramfs."
|
||||
msgstr "initramfs konfigurieren."
|
||||
msgstr "Konfiguriere initramfs."
|
||||
|
||||
#: src/modules/openrcdmcryptcfg/main.py:34
|
||||
msgid "Configuring OpenRC dmcrypt service."
|
||||
msgstr "Konfiguration des OpenRC dmcrypt-Dienstes."
|
||||
msgstr "Konfiguriere den dmcrypt-Dienst von OpenRC."
|
||||
|
||||
#: src/modules/fstab/main.py:38
|
||||
msgid "Writing fstab."
|
||||
@ -356,4 +359,4 @@ msgstr "Konfiguriere Lokalisierungen."
|
||||
|
||||
#: src/modules/networkcfg/main.py:37
|
||||
msgid "Saving network configuration."
|
||||
msgstr "Speichern der Netzwerkkonfiguration."
|
||||
msgstr "Speichere Netzwerkkonfiguration."
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -29,8 +29,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -93,50 +93,50 @@ msgstr ""
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -194,11 +194,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -29,8 +29,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -93,50 +93,50 @@ msgstr "Unmount file systems."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -194,11 +194,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -29,8 +29,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -93,50 +93,50 @@ msgstr "Demeti dosieraj sistemoj."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -194,11 +194,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
Binary file not shown.
@ -8,15 +8,16 @@
|
||||
# Francisco Sánchez López de Lerma <fslopezlerma@gmail.com>, 2018
|
||||
# Guido Grasso <cuquiman97@gmail.com>, 2018
|
||||
# Adolfo Jayme-Barrientos, 2019
|
||||
# Miguel Mayol <mitcoes@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Adolfo Jayme-Barrientos, 2019\n"
|
||||
"Last-Translator: Miguel Mayol <mitcoes@gmail.com>, 2020\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -26,14 +27,14 @@ msgstr ""
|
||||
|
||||
#: src/modules/grubcfg/main.py:37
|
||||
msgid "Configure GRUB."
|
||||
msgstr ""
|
||||
msgstr "Configure GRUB - menú de arranque multisistema -"
|
||||
|
||||
#: src/modules/mount/main.py:38
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
msgstr "Montando particiones"
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -42,14 +43,14 @@ msgstr ""
|
||||
#: src/modules/fstab/main.py:328 src/modules/localecfg/main.py:144
|
||||
#: src/modules/networkcfg/main.py:48
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
msgstr "Error de configuración"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
msgid "No partitions are defined for <pre>{!s}</pre> to use."
|
||||
msgstr ""
|
||||
msgstr "No hay definidas particiones en 1{!s}1 para usar."
|
||||
|
||||
#: src/modules/services-systemd/main.py:35
|
||||
msgid "Configure systemd services"
|
||||
@ -64,29 +65,33 @@ msgstr "No se puede modificar el servicio"
|
||||
msgid ""
|
||||
"<code>systemctl {arg!s}</code> call in chroot returned error code {num!s}."
|
||||
msgstr ""
|
||||
"La orden <code> systemctl {arg!s} </code> en chroot devolvió el código de "
|
||||
"error {num!s}."
|
||||
|
||||
#: src/modules/services-systemd/main.py:72
|
||||
#: src/modules/services-systemd/main.py:76
|
||||
msgid "Cannot enable systemd service <code>{name!s}</code>."
|
||||
msgstr ""
|
||||
msgstr "No se puede activar el servicio de systemd <code>{name!s}</code>."
|
||||
|
||||
#: src/modules/services-systemd/main.py:74
|
||||
msgid "Cannot enable systemd target <code>{name!s}</code>."
|
||||
msgstr ""
|
||||
msgstr "No se puede activar el objetivo de systemd <code>{name!s}</code>."
|
||||
|
||||
#: src/modules/services-systemd/main.py:78
|
||||
msgid "Cannot disable systemd target <code>{name!s}</code>."
|
||||
msgstr ""
|
||||
msgstr "No se puede desactivar el objetivo de systemd <code>{name!s}</code>."
|
||||
|
||||
#: src/modules/services-systemd/main.py:80
|
||||
msgid "Cannot mask systemd unit <code>{name!s}</code>."
|
||||
msgstr ""
|
||||
msgstr "No se puede enmascarar la unidad de systemd <code>{name!s}</code>."
|
||||
|
||||
#: src/modules/services-systemd/main.py:82
|
||||
msgid ""
|
||||
"Unknown systemd commands <code>{command!s}</code> and "
|
||||
"<code>{suffix!s}</code> for unit {name!s}."
|
||||
msgstr ""
|
||||
"Órdenes desconocidas de systemd <code>{command!s}</code> y "
|
||||
"<code>{suffix!s}</code> para la/s unidad /es {name!s}."
|
||||
|
||||
#: src/modules/umount/main.py:40
|
||||
msgid "Unmount file systems."
|
||||
@ -94,17 +99,17 @@ msgstr "Desmontar sistemas de archivos."
|
||||
|
||||
#: src/modules/unpackfs/main.py:41
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
msgstr "Rellenando los sistemas de archivos."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
msgstr "Falló la sincronización mediante rsync con el código de error {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "No se pudo desempaquetar la imagen «{}»"
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
@ -112,38 +117,41 @@ msgstr ""
|
||||
"No se encontró unsquashfs; cerciórese de que tenga instalado el paquete "
|
||||
"squashfs-tools"
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
"No especificó un punto de montaje para la partición raíz - / o root -"
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
"No se hace nada porque el almacenamiento no contiene una clave de "
|
||||
"\"rootMountPoint\" punto de montaje para la raíz."
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
msgstr "Punto de montaje no válido para una partición raíz,"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
msgstr "Como el punto de montaje raíz es \"{}\", y no existe, no se hace nada"
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
msgstr "Configuración de \"unsquash\" no válida"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "El sistema de archivos para \"{}\" ({}) no está incluido."
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "El sistema de archivos de origen \"{}\" no existe"
|
||||
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
msgstr "El destino \"{}\" en el sistema escogido no es una carpeta"
|
||||
|
||||
#: src/modules/displaymanager/main.py:515
|
||||
msgid "Cannot write KDM configuration file"
|
||||
@ -175,7 +183,7 @@ msgstr "No se puede configurar LightDM"
|
||||
|
||||
#: src/modules/displaymanager/main.py:737
|
||||
msgid "No LightDM greeter installed."
|
||||
msgstr ""
|
||||
msgstr "No está instalado el menú de bienvenida LightDM"
|
||||
|
||||
#: src/modules/displaymanager/main.py:768
|
||||
msgid "Cannot write SLIM configuration file"
|
||||
@ -196,77 +204,91 @@ msgid ""
|
||||
"The displaymanagers list is empty or undefined in bothglobalstorage and "
|
||||
"displaymanager.conf."
|
||||
msgstr ""
|
||||
"La lista de gestores de ventanas está vacía o no definida en ambos, el "
|
||||
"almacenamiento y el archivo de su configuración - displaymanager.conf -"
|
||||
|
||||
#: src/modules/displaymanager/main.py:978
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "La configuración del gestor de pantalla estaba incompleta"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
msgstr "Configurando mkinitcpio - sistema de arranque básico -."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
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> "
|
||||
|
||||
#: src/modules/luksopenswaphookcfg/main.py:35
|
||||
msgid "Configuring encrypted swap."
|
||||
msgstr ""
|
||||
msgstr "Configurando la memoria de intercambio - swap - encriptada."
|
||||
|
||||
#: src/modules/rawfs/main.py:35
|
||||
msgid "Installing data."
|
||||
msgstr ""
|
||||
msgstr "Instalando datos."
|
||||
|
||||
#: src/modules/services-openrc/main.py:38
|
||||
msgid "Configure OpenRC services"
|
||||
msgstr ""
|
||||
msgstr "Configure servicios del sistema de inicio OpenRC"
|
||||
|
||||
#: src/modules/services-openrc/main.py:66
|
||||
msgid "Cannot add service {name!s} to run-level {level!s}."
|
||||
msgstr ""
|
||||
"No se puede/n añadir {name!s} de servicio/s al rango de ejecución "
|
||||
"{level!s}."
|
||||
|
||||
#: src/modules/services-openrc/main.py:68
|
||||
msgid "Cannot remove service {name!s} from run-level {level!s}."
|
||||
msgstr ""
|
||||
"No se puede/n borrar el/los servicio/s {name!s} de los rangos de ejecución "
|
||||
"{level!s}."
|
||||
|
||||
#: src/modules/services-openrc/main.py:70
|
||||
msgid ""
|
||||
"Unknown service-action <code>{arg!s}</code> for service {name!s} in run-"
|
||||
"level {level!s}."
|
||||
msgstr ""
|
||||
"Acción desconocida d/e el/los servicio/s <code>{arg!s}</code> para el/los "
|
||||
"servicio/s {name!s} en el/los rango/s de ejecución {level!s}."
|
||||
|
||||
#: src/modules/services-openrc/main.py:103
|
||||
msgid ""
|
||||
"<code>rc-update {arg!s}</code> call in chroot returned error code {num!s}."
|
||||
msgstr ""
|
||||
"<code>rc-update {arg!s}</code> - orden de actualización - en chroot - raíz "
|
||||
"cambiada - devolvió el código de error {num!s}."
|
||||
|
||||
#: src/modules/services-openrc/main.py:110
|
||||
msgid "Target runlevel does not exist"
|
||||
msgstr ""
|
||||
msgstr "El rango de ejecución objetivo no existe"
|
||||
|
||||
#: src/modules/services-openrc/main.py:111
|
||||
msgid ""
|
||||
"The path for runlevel {level!s} is <code>{path!s}</code>, which does not "
|
||||
"exist."
|
||||
msgstr ""
|
||||
"La ruta hacia el rango de ejecución {level!s} es 1{path!s}1, y no existe."
|
||||
|
||||
#: src/modules/services-openrc/main.py:119
|
||||
msgid "Target service does not exist"
|
||||
msgstr ""
|
||||
msgstr "El servicio objetivo no existe"
|
||||
|
||||
#: src/modules/services-openrc/main.py:120
|
||||
msgid ""
|
||||
"The path for service {name!s} is <code>{path!s}</code>, which does not "
|
||||
"exist."
|
||||
msgstr ""
|
||||
"La ruta hacia el/los servicio/s {name!s} es <code>{path!s}</code>, y no "
|
||||
"existe."
|
||||
|
||||
#: src/modules/plymouthcfg/main.py:36
|
||||
msgid "Configure Plymouth theme"
|
||||
msgstr ""
|
||||
msgstr "Configure el tema de Plymouth - menú de bienvenida."
|
||||
|
||||
#: src/modules/machineid/main.py:36
|
||||
msgid "Generate machine-id."
|
||||
@ -297,39 +319,40 @@ msgstr[1] "Eliminando %(num)d paquetes."
|
||||
|
||||
#: src/modules/bootloader/main.py:51
|
||||
msgid "Install bootloader."
|
||||
msgstr ""
|
||||
msgstr "Instalar gestor de arranque."
|
||||
|
||||
#: src/modules/removeuser/main.py:34
|
||||
msgid "Remove live user from target system"
|
||||
msgstr ""
|
||||
msgstr "Borre el usuario \"en vivo\" del sistema objetivo"
|
||||
|
||||
#: src/modules/hwclock/main.py:35
|
||||
msgid "Setting hardware clock."
|
||||
msgstr ""
|
||||
msgstr "Configurando el reloj de la computadora."
|
||||
|
||||
#: src/modules/dracut/main.py:36
|
||||
msgid "Creating initramfs with dracut."
|
||||
msgstr ""
|
||||
"Creando initramfs - sistema de arranque - con dracut - su constructor -."
|
||||
|
||||
#: src/modules/dracut/main.py:58
|
||||
msgid "Failed to run dracut on the target"
|
||||
msgstr ""
|
||||
msgstr "Falló en ejecutar dracut - constructor de arranques - en el objetivo"
|
||||
|
||||
#: src/modules/dracut/main.py:59
|
||||
msgid "The exit code was {}"
|
||||
msgstr ""
|
||||
msgstr "El código de salida fue {}"
|
||||
|
||||
#: src/modules/initramfscfg/main.py:41
|
||||
msgid "Configuring initramfs."
|
||||
msgstr ""
|
||||
msgstr "Configurando initramfs - sistema de inicio -."
|
||||
|
||||
#: src/modules/openrcdmcryptcfg/main.py:34
|
||||
msgid "Configuring OpenRC dmcrypt service."
|
||||
msgstr ""
|
||||
msgstr "Configurando el servicio - de arranque encriptado -. OpenRC dmcrypt"
|
||||
|
||||
#: src/modules/fstab/main.py:38
|
||||
msgid "Writing fstab."
|
||||
msgstr ""
|
||||
msgstr "Escribiendo la tabla de particiones fstab"
|
||||
|
||||
#: src/modules/dummypython/main.py:44
|
||||
msgid "Dummy python job."
|
||||
@ -341,8 +364,8 @@ msgstr "Paso {} de python ficticio"
|
||||
|
||||
#: src/modules/localecfg/main.py:39
|
||||
msgid "Configuring locales."
|
||||
msgstr ""
|
||||
msgstr "Configurando especificaciones locales o regionales."
|
||||
|
||||
#: src/modules/networkcfg/main.py:37
|
||||
msgid "Saving network configuration."
|
||||
msgstr ""
|
||||
msgstr "Guardando la configuración de red."
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -30,8 +30,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -42,7 +42,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -94,50 +94,50 @@ msgstr "Desmontar sistemas de archivo."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -195,11 +195,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -25,8 +25,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -37,7 +37,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -89,50 +89,50 @@ msgstr ""
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -190,11 +190,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+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"
|
||||
@ -29,8 +29,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -93,50 +93,50 @@ msgstr "Haagi failisüsteemid lahti."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -194,11 +194,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Ander Elortondo, 2019\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n"
|
||||
@ -29,8 +29,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -93,50 +93,50 @@ msgstr "Fitxategi sistemak desmuntatu."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -197,11 +197,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "Pantaila kudeatzaile konfigurazioa osotu gabe"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -25,8 +25,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -37,7 +37,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -89,50 +89,50 @@ msgstr ""
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -190,11 +190,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Kimmo Kujansuu <mrkujansuu@gmail.com>, 2019\n"
|
||||
"Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n"
|
||||
@ -29,8 +29,8 @@ msgstr "Määritä GRUB."
|
||||
msgid "Mounting partitions."
|
||||
msgstr "Yhdistä osiot."
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -41,7 +41,7 @@ msgstr "Yhdistä osiot."
|
||||
msgid "Configuration Error"
|
||||
msgstr "Määritysvirhe"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -95,15 +95,15 @@ msgstr "Irrota tiedostojärjestelmät käytöstä."
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "Paikannetaan tiedostojärjestelmiä."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "rsync epäonnistui virhekoodilla {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "Kuvan purkaminen epäonnistui \"{}\""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
@ -111,36 +111,36 @@ msgstr ""
|
||||
"Ei löytynyt unsquashfs, varmista, että sinulla on squashfs-tools paketti "
|
||||
"asennettuna"
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "Ei liitoskohtaa juuri root-osiolle"
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr "globalstorage ei sisällä \"rootMountPoint\" avainta, eikä tee mitään"
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "Huono kiinnityspiste root-osioon"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "rootMountPoint on \"{}\", jota ei ole, eikä tee mitään"
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "Huono epäpuhdas kokoonpano"
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "Tiedostojärjestelmää \"{}\" ({}) ei tueta"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "Lähde tiedostojärjestelmää \"{}\" ei ole olemassa"
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "Kohdejärjestelmän \"{}\" kohde ei ole hakemisto"
|
||||
|
||||
@ -200,11 +200,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "Näytönhallinnan kokoonpano oli puutteellinen"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr "Määritetään mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -5,7 +5,7 @@
|
||||
#
|
||||
# Translators:
|
||||
# Paul Combal <abonnementspaul@gmail.com>, 2017
|
||||
# Abdallah B <bahassinea@gmail.com>, 2017
|
||||
# Abdellah B <bahassinea@gmail.com>, 2017
|
||||
# Aestan <anthony.margerand@protonmail.com>, 2018
|
||||
# Jeremy Gourmel <jgourmel@free.fr>, 2018
|
||||
# Aurnytoraink <wiiu3dsxl13127@gmail.com>, 2018
|
||||
@ -19,7 +19,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Last-Translator: Arnaud Ferraris <arnaud.ferraris@gmail.com>, 2019\n"
|
||||
"Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n"
|
||||
@ -37,8 +37,8 @@ msgstr "Configuration du GRUB."
|
||||
msgid "Mounting partitions."
|
||||
msgstr "Montage des partitions."
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -49,7 +49,7 @@ msgstr "Montage des partitions."
|
||||
msgid "Configuration Error"
|
||||
msgstr "Erreur de configuration"
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -106,15 +106,15 @@ msgstr "Démonter les systèmes de fichiers"
|
||||
msgid "Filling up filesystems."
|
||||
msgstr "Remplir les systèmes de fichiers."
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr "rsync a échoué avec le code d'erreur {}."
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr "Impossible de décompresser l'image \"{}\""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
@ -122,36 +122,36 @@ msgstr ""
|
||||
"Échec de la recherche de unsquashfs, assurez-vous que le paquetage squashfs-"
|
||||
"tools est installé."
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr "Pas de point de montage pour la partition racine"
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr "globalstorage ne contient pas de clé \"rootMountPoint\", ne fait rien"
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr "Mauvais point de montage pour la partition racine"
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr "rootMountPoint est \"{}\", ce qui n'existe pas, ne fait rien"
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr "Mauvaise configuration unsquash"
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr "Le système de fichiers pour \"{}\" ({}) n'est pas supporté"
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr "Le système de fichiers source \"{}\" n'existe pas"
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr "La destination \"{}\" dans le système cible n'est pas un répertoire"
|
||||
|
||||
@ -213,11 +213,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr "La configuration du gestionnaire d'affichage était incomplète"
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr "Configuration de mkinitcpio."
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-11-28 16:51+0100\n"
|
||||
"POT-Creation-Date: 2020-01-29 11:14+0100\n"
|
||||
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
|
||||
"Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -25,8 +25,8 @@ msgstr ""
|
||||
msgid "Mounting partitions."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:187
|
||||
#: src/modules/initcpiocfg/main.py:191
|
||||
#: src/modules/mount/main.py:145 src/modules/initcpiocfg/main.py:201
|
||||
#: 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
|
||||
@ -37,7 +37,7 @@ msgstr ""
|
||||
msgid "Configuration Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:188
|
||||
#: src/modules/mount/main.py:146 src/modules/initcpiocfg/main.py:202
|
||||
#: src/modules/luksopenswaphookcfg/main.py:96 src/modules/rawfs/main.py:172
|
||||
#: src/modules/initramfscfg/main.py:95 src/modules/openrcdmcryptcfg/main.py:79
|
||||
#: src/modules/fstab/main.py:323
|
||||
@ -89,50 +89,50 @@ msgstr ""
|
||||
msgid "Filling up filesystems."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:180
|
||||
#: src/modules/unpackfs/main.py:184
|
||||
msgid "rsync failed with error code {}."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:241 src/modules/unpackfs/main.py:264
|
||||
#: src/modules/unpackfs/main.py:245 src/modules/unpackfs/main.py:268
|
||||
msgid "Failed to unpack image \"{}\""
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:242
|
||||
#: src/modules/unpackfs/main.py:246
|
||||
msgid ""
|
||||
"Failed to find unsquashfs, make sure you have the squashfs-tools package "
|
||||
"installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:366
|
||||
#: src/modules/unpackfs/main.py:370
|
||||
msgid "No mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:367
|
||||
#: src/modules/unpackfs/main.py:371
|
||||
msgid "globalstorage does not contain a \"rootMountPoint\" key, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:372
|
||||
#: src/modules/unpackfs/main.py:376
|
||||
msgid "Bad mount point for root partition"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:373
|
||||
#: src/modules/unpackfs/main.py:377
|
||||
msgid "rootMountPoint is \"{}\", which does not exist, doing nothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:385 src/modules/unpackfs/main.py:389
|
||||
#: src/modules/unpackfs/main.py:403
|
||||
#: src/modules/unpackfs/main.py:389 src/modules/unpackfs/main.py:393
|
||||
#: src/modules/unpackfs/main.py:407
|
||||
msgid "Bad unsquash configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:386
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
msgid "The filesystem for \"{}\" ({}) is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:390
|
||||
#: src/modules/unpackfs/main.py:394
|
||||
msgid "The source filesystem \"{}\" does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/unpackfs/main.py:404
|
||||
#: src/modules/unpackfs/main.py:408
|
||||
msgid "The destination \"{}\" in the target system is not a directory"
|
||||
msgstr ""
|
||||
|
||||
@ -190,11 +190,11 @@ msgstr ""
|
||||
msgid "Display manager configuration was incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:36
|
||||
#: src/modules/initcpiocfg/main.py:37
|
||||
msgid "Configuring mkinitcpio."
|
||||
msgstr ""
|
||||
|
||||
#: src/modules/initcpiocfg/main.py:192
|
||||
#: 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
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user