From: Arvin Schnell Date: Tue, 15 Oct 2019 09:13:46 +0000 (+0200) Subject: - allow to make snapshot from other snapshot that the current one X-Git-Tag: v0.8.4^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F497%2Fhead;p=thirdparty%2Fsnapper.git - allow to make snapshot from other snapshot that the current one --- diff --git a/VERSION b/VERSION index ee94dd83..b60d7196 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.3 +0.8.4 diff --git a/client/snapper.cc b/client/snapper.cc index 7da1a617..533fa4dd 100644 --- a/client/snapper.cc +++ b/client/snapper.cc @@ -618,6 +618,9 @@ help_create() << _("\t--cleanup-algorithm, -c \tCleanup algorithm for snapshot.") << '\n' << _("\t--userdata, -u \tUserdata for snapshot.") << '\n' << _("\t--command \t\tRun command and create pre and post snapshots.") << endl + << _("\t--read-only\t\t\tCreate read-only snapshot.") << '\n' + << _("\t--read-write\t\t\tCreate read-write snapshot.") << '\n' + << _("\t--from\t\t\t\tCreate a snapshot from the specified snapshot.") << '\n' << endl; } @@ -633,6 +636,9 @@ command_create(ProxySnappers* snappers, ProxySnapper* snapper) { "cleanup-algorithm", required_argument, 0, 'c' }, { "userdata", required_argument, 0, 'u' }, { "command", required_argument, 0, 0 }, + { "read-only", no_argument, 0, 0 }, + { "read-write", no_argument, 0, 0 }, + { "from", required_argument, 0, 0 }, { 0, 0, 0, 0 } }; @@ -653,6 +659,7 @@ command_create(ProxySnappers* snappers, ProxySnapper* snapper) bool print_number = false; SCD scd; string command; + ProxySnapshots::const_iterator parent = snapshots.getCurrent(); GetOpts::parsed_opts::const_iterator opt; @@ -694,6 +701,15 @@ command_create(ProxySnappers* snappers, ProxySnapper* snapper) type = CT_PRE_POST; } + if ((opt = opts.find("read-only")) != opts.end()) + scd.read_only = true; + + if ((opt = opts.find("read-write")) != opts.end()) + scd.read_only = false; + + if ((opt = opts.find("from")) != opts.end()) + parent = snapshots.findNum(opt->second); + if (type == CT_POST && snapshot1 == snapshots.end()) { cerr << _("Missing or invalid pre-number.") << endl; @@ -706,10 +722,22 @@ command_create(ProxySnappers* snappers, ProxySnapper* snapper) exit(EXIT_FAILURE); } + if (type != CT_SINGLE && !scd.read_only) + { + cerr << _("Option --read-write only supported for snapshots of type single.") << endl; + exit(EXIT_FAILURE); + } + + if (type != CT_SINGLE && parent != snapshots.getCurrent()) + { + cerr << _("Option --from only supported for snapshots of type single.") << endl; + exit(EXIT_FAILURE); + } + switch (type) { case CT_SINGLE: { - snapshot1 = snapper->createSingleSnapshot(scd); + snapshot1 = snapper->createSingleSnapshot(parent, scd); if (print_number) cout << snapshot1->getNum() << endl; } break; diff --git a/dists/debian/changelog b/dists/debian/changelog index 7582fe6e..37747174 100644 --- a/dists/debian/changelog +++ b/dists/debian/changelog @@ -1,3 +1,9 @@ +snapper (0.8.4) stable; urgency=low + + * Updated to version 0.8.4 + + -- Arvin Schnell Tue, 15 Oct 2019 11:11:12 +0100 + snapper (0.8.3) stable; urgency=low * Updated to version 0.8.3 diff --git a/doc/snapper.xml.in b/doc/snapper.xml.in index 87942a07..4b5d8487 100644 --- a/doc/snapper.xml.in +++ b/doc/snapper.xml.in @@ -2,13 +2,13 @@ - 2018-10-29 + 2019-10-14 snapper 8 - 2018-10-29 + 2019-10-14 @VERSION@ Filesystem Snapshot Management @@ -443,6 +443,25 @@ Create a pre and post snapshot and run command in between. + + + + Create a read-only snapshot. This is the default. + + + + + + Create a read-write snapshot. + + + + number + + Create a snapshot from the snapshot with the + provided number instead of snapshot 0. + + diff --git a/package/snapper.changes b/package/snapper.changes index 0acc3e9a..c512c939 100644 --- a/package/snapper.changes +++ b/package/snapper.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Oct 15 11:06:51 CEST 2019 - aschnell@suse.com + +- allow to make snapshot from other snapshot that the current one + (jse#SLE-7333) +- version 0.8.4 + ------------------------------------------------------------------- Fri Aug 30 17:29:34 CET 2019 - iforster@suse.com diff --git a/po/af.po b/po/af.po index f137b127..79453957 100644 --- a/po/af.po +++ b/po/af.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: installation\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2006-11-03 14:26\n" "Last-Translator: Novell Language \n" "Language-Team: Novell Language \n" @@ -45,6 +45,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -75,6 +78,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -577,6 +586,12 @@ msgstr "Toelatings geweier" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/ar.po b/po/ar.po index dd3a3045..9a2b6043 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,17 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-03-01 20:28+0000\n" "Last-Translator: George Yacoub \n" -"Language-Team: Arabic " -"\n" +"Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 3.3\n" msgid "\t--all-configs, -a\t\tList snapshots from all accessible configs." @@ -49,6 +47,9 @@ msgstr "\t--disable-used-space\t\tتعطيل عرض المساحة المستخ msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions، -x \tخيارات إضافية تم تمريرها إلى أمر diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tتعيين اسم الملف يدوياً." @@ -79,6 +80,12 @@ msgstr "\t--print-number، -p\t\tطباعة رقم اللقطة عند إنشا msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tوقف الانتاج الطبيعي." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root، -r \t\tالعمل على الجذر الهدف (يعمل فقط بدون DBus)." @@ -538,6 +545,12 @@ msgstr "لا توجد أذونات." msgid "Opening file '%s' failed." msgstr "فتح الملف '%s' فشل." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/be.po b/po/be.po index 492c8987..12ff12de 100644 --- a/po/be.po +++ b/po/be.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: YaST (@memory@)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2006-01-04 08:58+0100\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -46,6 +46,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -76,6 +79,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -547,6 +556,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/bg.po b/po/bg.po index c265a73c..9aafd16f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2017-10-29 20:52+0000\n" "Last-Translator: strahil nikolov \n" "Language-Team: Bulgarian \n" @@ -43,6 +43,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -73,6 +76,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -569,6 +578,12 @@ msgstr "Без VJ компресия" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/bn.po b/po/bn.po index bffc6ccf..d59c2aa7 100644 --- a/po/bn.po +++ b/po/bn.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2004-08-09 10:24+0200\n" "Last-Translator: xxx \n" "Language-Team: Bengali \n" @@ -42,6 +42,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -72,6 +75,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -570,6 +579,12 @@ msgstr "অনুমতি প্রত্যাখ্যাত" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/bs.po b/po/bs.po index d54f3d05..f577f770 100644 --- a/po/bs.po +++ b/po/bs.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2002-07-23 18:27+0200\n" "Last-Translator: Damir Bjelobradic \n" "Language-Team: Bosnian \n" @@ -42,6 +42,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -72,6 +75,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -542,6 +551,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/ca.po b/po/ca.po index 54c0e63c..558aaf2a 100644 --- a/po/ca.po +++ b/po/ca.po @@ -2,11 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-05-28 09:49+0000\n" "Last-Translator: David Medina \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,14 +17,10 @@ msgid "\t--all-configs, -a\t\tList snapshots from all accessible configs." msgstr "\t--all-configs, -a\t\tLlista les instantànies des de totes les configuracions accessibles." msgid "\t--cleanup-algorithm, -c \tCleanup algorithm for snapshot." -msgstr "" -"\t--cleanup-algorithm, -c \tNeteja l'algorisme per a la " -"instantània." +msgstr "\t--cleanup-algorithm, -c \tNeteja l'algorisme per a la instantània." msgid "\t--cleanup-algorithm, -c \tCleanup algorithm for snapshots." -msgstr "" -"\t--cleanup-algorithm, -c \tNeteja l'algorisme per a les " -"instantànies." +msgstr "\t--cleanup-algorithm, -c \tNeteja l'algorisme per a les instantànies." msgid "\t--command \t\tRun command and create pre and post snapshots." msgstr "\t--command \t\tExecuta l'ordre i crea les instantànies pre i post." @@ -48,6 +43,9 @@ msgstr "\t--disable-used-space\t\tInhabilita mostrar l'espai usat." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tOpcions extres passades a l'ordre diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tEstableix el sistema de fitxers manualment." @@ -78,6 +76,12 @@ msgstr "\t--print-number, -p\t\tImprimeix el número de la segona instantània c msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tSuprimeix la sortida normal." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tOpera a l'arrel de destinació (només funciona sense DBus)." @@ -534,6 +538,12 @@ msgstr "Sense permisos." msgid "Opening file '%s' failed." msgstr "Ha fallat l'obertura del fitxer '%s'." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/cs.po b/po/cs.po index e519961e..4a66acc9 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3,11 +3,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-10-30 10:04+0000\n" "Last-Translator: Aleš Kastner \n" -"Language-Team: Czech " -"\n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,6 +46,9 @@ msgstr "\t--disable-used-space\t\tZakázat zobrazení použitého místa." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tJedná se o další možnosti předané příkazu diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tRuční nastavení typu souborového systému." @@ -79,6 +81,12 @@ msgstr "\t--print-number, -p\t\tČíslo druhého vytvořeného snímku pro tisk. msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tPotlačit normální výstup." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tUmožňuje pracovat v cílovém účtu root (funguje pouze bez technologie DBus)." @@ -556,6 +564,12 @@ msgstr "Chybí oprávnění." msgid "Opening file '%s' failed." msgstr "Otevírání souboru '%s' selhalo." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/cy.po b/po/cy.po index 2292b973..d97b7346 100644 --- a/po/cy.po +++ b/po/cy.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2003-09-23 10:33+0200\n" "Last-Translator: Kevin Donnelly \n" "Language-Team: Welsh \n" @@ -42,6 +42,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -72,6 +75,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -536,6 +545,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/da.po b/po/da.po index 1f2fcd08..0c19c07c 100644 --- a/po/da.po +++ b/po/da.po @@ -6,11 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: snapper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-10-30 01:01+0000\n" "Last-Translator: scootergrisen \n" -"Language-Team: Danish " -"\n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,6 +47,9 @@ msgstr "\t--disable-used-space\t\tDeaktivér visning af brugt plads." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tEkstra tilvalg som sendes til diff-kommandoen." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tAngiv type af filsystem manuelt." @@ -78,6 +80,12 @@ msgstr "\t--print-number, -p\t\tSkriv nummer for andet oprettet øjebliksbillede msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tTilbagehold normalt output." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tOperer på målrod (virker kun uden DBus)." @@ -537,6 +545,12 @@ msgstr "Ingen rettigheder." msgid "Opening file '%s' failed." msgstr "Åbning af filen \"%s\" mislykkedes." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/de.po b/po/de.po index 3317a747..a713b2a9 100644 --- a/po/de.po +++ b/po/de.po @@ -6,11 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: snapper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-04-04 18:42+0000\n" "Last-Translator: Sarah Kriesch \n" -"Language-Team: German " -"\n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,9 +45,10 @@ msgid "\t--disable-used-space\t\tDisable showing used space." msgstr "\t--disable-used-space\t\tBenutzten Platz nicht anzeigen." msgid "\t--extensions, -x \tExtra options passed to the diff command." +msgstr "\t--extensions, -x \tExtra Optionen, die an den diff-Befehl übergeben wurden." + +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." msgstr "" -"\t--extensions, -x \tExtra Optionen, die an den diff-Befehl " -"übergeben wurden." msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tDateisystem-Typ manuell setzen." @@ -80,6 +80,12 @@ msgstr "\t--print-number, -p\t\tNummer des zweiten erstellten Schnappschusses au msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tNormale Ausgabe unterdrücken." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tAm Ziel-Root arbeiten (funktioniert nur ohne DBus)." @@ -264,21 +270,15 @@ msgstr "B" #, c-format msgid "Cannot delete snapshot %d since it is the current system." -msgstr "" -"Schnappschuss %d kann nicht gelöscht werden, seitdem es das derzeit laufende " -"System ist." +msgstr "Schnappschuss %d kann nicht gelöscht werden, seitdem es das derzeit laufende System ist." #, c-format msgid "Cannot delete snapshot %d since it is the currently mounted snapshot." -msgstr "" -"Schnappschuss %d kann nicht gelöscht werden, seitdem es der derzeit " -"gemountete Schnappschuss ist." +msgstr "Schnappschuss %d kann nicht gelöscht werden, seitdem es der derzeit gemountete Schnappschuss ist." #, c-format msgid "Cannot delete snapshot %d since it is the next to be mounted snapshot." -msgstr "" -"Schnappschuss %d kann nicht gelöscht werden, seitdem es der nächste zu " -"mountende Schnappschuss ist." +msgstr "Schnappschuss %d kann nicht gelöscht werden, seitdem es der nächste zu mountende Schnappschuss ist." msgid "Cleanup" msgstr "Bereinigen" @@ -386,8 +386,7 @@ msgid "Creating read-only snapshot of default subvolume." msgstr "Nur-Lesen-Schnappschuss des Standard-Subvolumes erstellen." msgid "Creating read-write snapshot of current subvolume." -msgstr "" -"Lesen-Schreiben-Schnappschuss des derzeit laufenden Subvolumes erstellen." +msgstr "Lesen-Schreiben-Schnappschuss des derzeit laufenden Subvolumes erstellen." #, c-format msgid "Creating read-write snapshot of snapshot %d." @@ -542,6 +541,12 @@ msgstr "Keine Berechtigungen." msgid "Opening file '%s' failed." msgstr "Öffnen der Datei '%s' nicht möglich." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/el.po b/po/el.po index aabc1162..0a4112ab 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2016-09-24 16:01+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek \n" @@ -51,6 +51,9 @@ msgstr "\t--disable-filters\t\tΑπενεργοποίηση φίλτρων." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tΟρίσετε είδος συστήματος αρχείων με το χέρι." @@ -82,6 +85,12 @@ msgstr "\t--print-number, -p\t\tΕμφάνιση αριθμού του δευτ msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tΑπόκρυψη κανονικής απόδοσης." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -546,6 +555,12 @@ msgstr "Χωρίς Δικαιώματα." msgid "Opening file '%s' failed." msgstr "Αποτυχία ανοίγματος αρχείου '%s'." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index b047cc01..dc2bd921 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2001-07-17 16:27+0200\n" "Last-Translator: James Ogley \n" "Language-Team: English \n" @@ -42,6 +42,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -72,6 +75,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -588,6 +597,12 @@ msgstr "Permissions denied" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/en_US.po b/po/en_US.po index 53828037..0c0811bb 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-11-08 12:26+8\n" "Last-Translator: Steve Beattie \n" "Language-Team: English\n" @@ -42,6 +42,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -72,6 +75,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -532,6 +541,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/eo.po b/po/eo.po index 242f7a8f..c9db7a6e 100644 --- a/po/eo.po +++ b/po/eo.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: YaST (@memory@)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2012-02-12 09:27+0100\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: Esperanto \n" @@ -45,6 +45,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -75,6 +78,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -530,6 +539,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/es.po b/po/es.po index 58a04095..abbfd48a 100644 --- a/po/es.po +++ b/po/es.po @@ -3,11 +3,10 @@ msgid "" msgstr "" "Project-Id-Version: snapper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-03-01 20:28+0000\n" "Last-Translator: jcsl \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,8 +25,7 @@ msgid "\t--cleanup-algorithm, -c \tCleanup algorithm for snapshots." msgstr "\t--cleanup-algorithm, -c \tAlgoritmo de limpieza para las instantáneas." msgid "\t--command \t\tRun command and create pre and post snapshots." -msgstr "" -"\t--command \t\tEjecuta el comando y crea instantáneas pre y post." +msgstr "\t--command \t\tEjecuta el comando y crea instantáneas pre y post." msgid "\t--config, -c \t\tSet name of config to use." msgstr "\t--config, -c \t\tEstablecer el nombre a usar por la configuración." @@ -48,6 +46,9 @@ msgstr "\t--disable-used-space\t\tDeshabilita el espacio usado que se muestra." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tOpciones adicionales que se pasan al comando diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tConfigurar manualmente el sistema de ficheros." @@ -80,6 +81,12 @@ msgstr "\t--print-number, -p\t\tNúmero de impresión de la segunda instantánea msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tEliminar la salida normal." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tFunciona en la raíz del destino (solo funciona sin DBus)." @@ -274,15 +281,11 @@ msgstr "No se puede borrar la imagen %d porque es el sistema actual." #, c-format msgid "Cannot delete snapshot %d since it is the currently mounted snapshot." -msgstr "" -"No se puede borrar la imagen %d porque es la imagen montada en estos " -"momentos." +msgstr "No se puede borrar la imagen %d porque es la imagen montada en estos momentos." #, c-format msgid "Cannot delete snapshot %d since it is the next to be mounted snapshot." -msgstr "" -"No se puede borrar la imagen %d porque es la siguiente imagen que se va a " -"montar." +msgstr "No se puede borrar la imagen %d porque es la siguiente imagen que se va a montar." msgid "Cleanup" msgstr "Limpieza" @@ -526,9 +529,7 @@ msgid "Listing configs failed (%s)." msgstr "Falló el listado de configuraciones (%s)." msgid "Maybe you forgot the delimiter '..' between the snapshot numbers." -msgstr "" -"Puede que haya olvidado indica el delimitador '..' entre los números de las " -"instantáneas." +msgstr "Puede que haya olvidado indica el delimitador '..' entre los números de las instantáneas." #. TRANSLATORS: symbol for "mebi bytes" (best keep untranslated) msgid "MiB" @@ -561,6 +562,12 @@ msgstr "Sin permisos." msgid "Opening file '%s' failed." msgstr "Falló la apertura del archivo '%s'." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" @@ -704,9 +711,7 @@ msgid "root argument can be used only together with no-dbus." msgstr "El argumento root solo se puede usar junto con no-dbus." msgid "usage: snapper [--global-options] [--command-options] [command-arguments]" -msgstr "" -"uso: snapper [--global-options] [--command-options] [argumentos-" -"comando]" +msgstr "uso: snapper [--global-options] [--command-options] [argumentos-comando]" # SLE12 #~ msgid "Quota failure (%s)." diff --git a/po/et.po b/po/et.po index 9b43f101..a0bcf48b 100644 --- a/po/et.po +++ b/po/et.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: autoinst.fi\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2003-09-22 13:26+0200\n" "Last-Translator: Ain Vagula \n" "Language-Team: Estonian \n" @@ -42,6 +42,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -72,6 +75,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -579,6 +588,12 @@ msgstr "Ligipääs on keelatud" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/eu.po b/po/eu.po index 05285fb9..b26ab814 100644 --- a/po/eu.po +++ b/po/eu.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: YaST (@memory@)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2003-02-12 10:23+0100\n" "Last-Translator: i18n@suse.de\n" "Language-Team: Basque \n" @@ -45,6 +45,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -75,6 +78,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -530,6 +539,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/fa.po b/po/fa.po index d35d35d7..a6f4f995 100644 --- a/po/fa.po +++ b/po/fa.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: opensuse-i 18n\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2016-11-05 14:28+0000\n" "Last-Translator: hayyan rostami \n" "Language-Team: Persian \n" @@ -45,6 +45,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -75,6 +78,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -531,6 +540,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/fi.po b/po/fi.po index f9632932..74e0bcba 100644 --- a/po/fi.po +++ b/po/fi.po @@ -5,11 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-10-03 23:52+0000\n" "Last-Translator: Kimmo Kujansuu \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,9 +17,7 @@ msgstr "" "X-Generator: Weblate 3.6.1\n" msgid "\t--all-configs, -a\t\tList snapshots from all accessible configs." -msgstr "" -"\t--all-configs, -a\t\tLuettele tilannekuvia kaikista käytettävissä olevista " -"kokoonpanoista." +msgstr "\t--all-configs, -a\t\tLuettele tilannekuvia kaikista käytettävissä olevista kokoonpanoista." msgid "\t--cleanup-algorithm, -c \tCleanup algorithm for snapshot." msgstr "\t--cleanup-algorithm, -c \tTilannevedoksen puhdistusalgoritmi." @@ -29,9 +26,7 @@ msgid "\t--cleanup-algorithm, -c \tCleanup algorithm for snapshots." msgstr "\t--cleanup-algorithm, -c \tTilannevedoksen puhdistusalgoritmi." msgid "\t--command \t\tRun command and create pre and post snapshots." -msgstr "" -"\t--command \t\tSuorita komento ja luo ennen- ja jälkeen-" -"tilannevedokset." +msgstr "\t--command \t\tSuorita komento ja luo ennen- ja jälkeen-tilannevedokset." msgid "\t--config, -c \t\tSet name of config to use." msgstr "\t--config, -c \t\tAseta käytettävän määrityksen nimi." @@ -51,6 +46,9 @@ msgstr "\t--disable-used-space\t\tÄlä näytä tilankäyttöä." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tdiff-komennolle välitettävät lisävalinnat." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tAseta tiedostojärjestelmä käsin." @@ -81,6 +79,12 @@ msgstr "\t--print-number, -p\t\tTulosta luodun tilannevedoksen numero." msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tJätä pois tavallinen tuloste." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tToimi asetetussa juuressa (toimii vain ilman DBusia)." @@ -266,20 +270,15 @@ msgstr "B" #, c-format msgid "Cannot delete snapshot %d since it is the current system." -msgstr "" -"Tilannevedosta %d ei voi poistaa, koska se tarkoittaa nykyistä järjestelmää." +msgstr "Tilannevedosta %d ei voi poistaa, koska se tarkoittaa nykyistä järjestelmää." #, c-format msgid "Cannot delete snapshot %d since it is the currently mounted snapshot." -msgstr "" -"Tilannevedosta %d ei voi poistaa, koska se on tällä hetkellä liitettynä " -"oleva tilannevedos." +msgstr "Tilannevedosta %d ei voi poistaa, koska se on tällä hetkellä liitettynä oleva tilannevedos." #, c-format msgid "Cannot delete snapshot %d since it is the next to be mounted snapshot." -msgstr "" -"Tilannevedosta %d ei voi poistaa, koska se on seuraavaksi liitettävä " -"tilannevedos." +msgstr "Tilannevedosta %d ei voi poistaa, koska se on seuraavaksi liitettävä tilannevedos." msgid "Cleanup" msgstr "Puhdistus" @@ -546,6 +545,12 @@ msgstr "Ei käyttöoikeuksia." msgid "Opening file '%s' failed." msgstr "Tiedoston \"%s\" avaaminen epäonnistui." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" @@ -681,9 +686,7 @@ msgid "root argument can be used only together with no-dbus." msgstr "Juuriparametria voi käyttää vain no-dbus-asetuksen kanssa." msgid "usage: snapper [--global-options] [--command-options] [command-arguments]" -msgstr "" -"käyttö: snapper [--yleisvalitsimet] [--komennon-valitsimet] " -"[komennon-parametrit]" +msgstr "käyttö: snapper [--yleisvalitsimet] [--komennon-valitsimet] [komennon-parametrit]" #, fuzzy #~ msgid "Quota failure (%s)." diff --git a/po/fr.po b/po/fr.po index 4ab85bed..e91308d0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,11 +3,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-11-02 09:49+0000\n" "Last-Translator: Antoine Belvire \n" -"Language-Team: French " -"\n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,6 +47,9 @@ msgstr "\t--disable-used-space\t\tDésactive l'affichage de l'espace utilisé." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tOptions supplémentaires transmises à la commande diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tDéfinit manuellement le type de système de fichiers." @@ -80,6 +82,12 @@ msgstr "\t--print-number, -p\t\tAffiche le numéro du deuxième instantané cré msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tSupprime la sortie normale." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tPermet d'intervenir au niveau de la racine cible (fonctionne uniquement sans DBus)." @@ -558,6 +566,12 @@ msgstr "Pas de permissions." msgid "Opening file '%s' failed." msgstr "Échec de l'ouverture du fichier '%s'." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "Pio" diff --git a/po/gl.po b/po/gl.po index b3611844..ebb5a085 100644 --- a/po/gl.po +++ b/po/gl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-06-01 11:02+0000\n" "Last-Translator: Jiri Machalek \n" "Language-Team: Galician \n" @@ -43,6 +43,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -73,6 +76,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -555,6 +564,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/gu.po b/po/gu.po index 3b87c74e..18109e6c 100644 --- a/po/gu.po +++ b/po/gu.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: YaST (@memory@)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-07-29 15:37+0530\n" "Last-Translator: i18n@suse.de\n" "Language-Team: Gujarati \n" @@ -45,6 +45,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -75,6 +78,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -574,6 +583,12 @@ msgstr " મંજૂરીઓ નકારાઇ " msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/he.po b/po/he.po index 4bcc2603..87517d3f 100644 --- a/po/he.po +++ b/po/he.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2004-08-09 10:24+0200\n" "Last-Translator: xxx \n" "Language-Team: Hebrew \n" @@ -42,6 +42,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -72,6 +75,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -533,6 +542,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/hi.po b/po/hi.po index 9abdabd6..f1024700 100644 --- a/po/hi.po +++ b/po/hi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-04-07 16:03+0000\n" "Last-Translator: Anshul Panwar \n" "Language-Team: Hindi \n" @@ -43,6 +43,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -73,6 +76,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -574,6 +583,12 @@ msgstr "अनुमति अस्वीकृत" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/hr.po b/po/hr.po index f707054a..57797cf6 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2011-04-16 18:13+0200\n" "Last-Translator: Krešimir Jozić \n" "Language-Team: Croatian \n" @@ -47,6 +47,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -77,6 +80,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -567,6 +576,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "Otvaranje datoteke '%s' nije uspjelo." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/hu.po b/po/hu.po index 96388848..fc01191e 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,11 +4,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-03-01 20:28+0000\n" "Last-Translator: Robert Taisz \n" -"Language-Team: Hungarian \n" +"Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,9 +26,7 @@ msgid "\t--cleanup-algorithm, -c \tCleanup algorithm for snapshots." msgstr "\t--cleanup-algorithm, -c \tKarbantartási algoritmus a pillanatfelvételekhez." msgid "\t--command \t\tRun command and create pre and post snapshots." -msgstr "" -"\t--command \t\tFuttassa a parancsot, és készítsen pillanatképet " -"előtte, majd utána." +msgstr "\t--command \t\tFuttassa a parancsot, és készítsen pillanatképet előtte, majd utána." msgid "\t--config, -c \t\tSet name of config to use." msgstr "\t--config, -c \t\tFelhasznált beállítás nevének megadása." @@ -45,12 +42,14 @@ msgid "\t--diff-cmd \t\tCommand used for comparing files." msgstr "\t--diff-cmd \t\tA fájlok összehasonlítására használt parancs." msgid "\t--disable-used-space\t\tDisable showing used space." -msgstr "" -"\t--disable-used-space\t\tFelhasznált terület megjelenítésének letiltása." +msgstr "\t--disable-used-space\t\tFelhasznált terület megjelenítésének letiltása." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tA diff parancsnak átadott további beállítások." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tFájlrendszer típusának beállítása kézzel." @@ -84,6 +83,12 @@ msgstr "\t--print-number, -p\t\tA másodiknak létrehozott pillanatfelvétel meg msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tNormál kimenet elhagyása." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tMűvelet elvégzése a cél gyökér elérési úton (csak DBus nélkül működik)." @@ -285,15 +290,11 @@ msgstr "A(z) %d pillanatkép nem törölhető, mivel az aktuális rendszerben va #, c-format msgid "Cannot delete snapshot %d since it is the currently mounted snapshot." -msgstr "" -"A(z) %d pillanatkép nem törölhető, mivel ez az aktuálisan csatlakoztatott " -"pillanatkép." +msgstr "A(z) %d pillanatkép nem törölhető, mivel ez az aktuálisan csatlakoztatott pillanatkép." #, c-format msgid "Cannot delete snapshot %d since it is the next to be mounted snapshot." -msgstr "" -"A(z) %d pillanatkép nem törölhető, mivel ez a következő csatlakoztatandó " -"pillanatkép." +msgstr "A(z) %d pillanatkép nem törölhető, mivel ez a következő csatlakoztatandó pillanatkép." msgid "Cleanup" msgstr "Tisztítás" @@ -576,6 +577,12 @@ msgstr "Nincs hozzáférés." msgid "Opening file '%s' failed." msgstr "A(z) '%s' fájl megnyitása sikertelen." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/id.po b/po/id.po index f583fa31..7a43be65 100644 --- a/po/id.po +++ b/po/id.po @@ -2,11 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-11-02 14:47+0000\n" "Last-Translator: Kukuh Syafaat \n" -"Language-Team: Indonesian " -"\n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,6 +43,9 @@ msgstr "\t--disable-used-space\t\tNonaktifkan menampilkan ruang yang digunakan." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tPilihan ekstra diteruskan untuk perintah diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tSecara manual mengatur jenis sistem berkas." @@ -74,6 +76,12 @@ msgstr "\t--print-number, -p\t\tMencetak jumlah dari snapshot kedua yang dibuat. msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tMenekan keluaran normal." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tBeroperasi pada target root (hanya bekerja tanpa DBus)." @@ -262,15 +270,11 @@ msgstr "Tidak dapat menghapus snapshot %d karena ini adalah sistem saat ini." #, c-format msgid "Cannot delete snapshot %d since it is the currently mounted snapshot." -msgstr "" -"Tidak dapat menghapus snapshot %d karena ini adalah snapshot yang saat ini " -"terpasang." +msgstr "Tidak dapat menghapus snapshot %d karena ini adalah snapshot yang saat ini terpasang." #, c-format msgid "Cannot delete snapshot %d since it is the next to be mounted snapshot." -msgstr "" -"Tidak dapat menghapus snapshot %d karena ini adalah snapshot yang dipasang " -"selanjutnya." +msgstr "Tidak dapat menghapus snapshot %d karena ini adalah snapshot yang dipasang selanjutnya." msgid "Cleanup" msgstr "Pembersihan" @@ -533,6 +537,12 @@ msgstr "Tidak ada izin." msgid "Opening file '%s' failed." msgstr "Membuka berkas '%s' gagal." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/it.po b/po/it.po index dd16745a..1e061410 100644 --- a/po/it.po +++ b/po/it.po @@ -3,11 +3,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-11-11 14:48+0000\n" "Last-Translator: Alessio Adamo \n" -"Language-Team: Italian " -"\n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,6 +44,9 @@ msgstr "\t--disable-used-space\t\tDisabilita la visualizzazione dello spazio uti msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tOpzioni supplementari trasmesse al comando diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tImposta manualmente il tipo di file system." @@ -75,6 +77,12 @@ msgstr "\t--print-number, -p\t\tStampa il numero della seconda istantanea creata msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tSopprime l'output normale." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tOpera su radice di destinazione (funziona solo senza DBus)." @@ -531,6 +539,12 @@ msgstr "Permessi mancanti." msgid "Opening file '%s' failed." msgstr "Apertura del file '%s' fallita." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/ja.po b/po/ja.po index 9b2c4e59..3cbbee34 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: snapper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-10-29 22:35+0000\n" "Last-Translator: Yasuhiko Kamata \n" -"Language-Team: Japanese " -"\n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,6 +49,9 @@ msgstr "\t--disable-used-space\t\t使用済み領域の表示を無効にする msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x <オプション>\tdiffコマンドに渡される追加オプション。" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f <種類>\t\t手動でファイルシステムの種類を指定する。" @@ -80,6 +82,12 @@ msgstr "\t--print-number, -p\t\t作成したスナップショットの数を表 msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\t通常出力される項目を省略する。" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r <パス>\t\t指定したルートに対して操作を行なう (DBus を使用しない場合にのみ動作します)。" @@ -534,6 +542,12 @@ msgstr "許可がありません。" msgid "Opening file '%s' failed." msgstr "ファイル '%s' を開けませんでした。" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/ka.po b/po/ka.po index 4ee9bd80..55e071cf 100644 --- a/po/ka.po +++ b/po/ka.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-05-18 10:33+0200\n" "Last-Translator: Aiet Kolkhi \n" "Language-Team: Georgian \n" @@ -42,6 +42,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -72,6 +75,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -533,6 +542,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/km.po b/po/km.po index 7651e0f1..2ac83f81 100644 --- a/po/km.po +++ b/po/km.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: snapper.km\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2011-10-24 10:40+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -50,6 +50,9 @@ msgstr "\t--disable-filters\t\tបិទ​តម្រង ។" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tកំណត់​ប្រភេទ​ប្រព័ន្ធ​ឯកសារ​ដោយ​ដៃ ។" @@ -82,6 +85,12 @@ msgstr "\t--print-number, -p\t\tបោះពុម្ព​ចំនួន​រ msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tលុប​ទិន្នន័យ​ធម្មតា ។" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -577,6 +586,12 @@ msgstr "(បិទ​សិទ្ធិ​ជា​​ម្ចាស់)" msgid "Opening file '%s' failed." msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បើក​ឯកសារ '%s' ។" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/ko.po b/po/ko.po index d98b0ae8..15b721ad 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,11 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: entries\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-03-01 20:28+0000\n" "Last-Translator: Hwajin Kim \n" -"Language-Team: Korean " -"\n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,6 +49,9 @@ msgstr "\t--disable-used-space\t\t사용된 공간 표시를 비활성화합니 msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tdiff 명령에 전달되는 추가 옵션입니다." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + # SLE12 msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\t파일 시스템 유형을 수동으로 설정합니다." @@ -89,6 +91,12 @@ msgstr "\t--print-number, -p\t\t두 번째로 생성된 스냅샷의 번호를 msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\t정상적인 출력을 억제합니다." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\t대상 루트에서 작업합니다(DBus 없이만 작동)." @@ -662,6 +670,12 @@ msgstr "권한 없음." msgid "Opening file '%s' failed." msgstr "'%s' 파일을 열지 못했습니다." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/ku.po b/po/ku.po index 5cc6e4cd..d05306fd 100644 --- a/po/ku.po +++ b/po/ku.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: memory.ku.po\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-09-23 00:15+0200\n" "Last-Translator: Kurdish Team \n" "Language-Team: Kurdish Team \n" @@ -45,6 +45,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -75,6 +78,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -551,6 +560,12 @@ msgstr "Destûr" msgid "Opening file '%s' failed." msgstr "Pel tê vekirin..." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/lo.po b/po/lo.po index 7c23a39a..86390858 100644 --- a/po/lo.po +++ b/po/lo.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2006-01-04 08:58+0100\n" "Last-Translator: i18n@suse.de\n" "Language-Team: Lao \n" @@ -42,6 +42,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -72,6 +75,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -531,6 +540,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/lt.po b/po/lt.po index 8a88e9be..6cd17050 100644 --- a/po/lt.po +++ b/po/lt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: LCN (@memory@)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2017-06-02 16:57+0000\n" "Last-Translator: Mindaugas Baranauskas \n" "Language-Team: Lithuanian \n" @@ -50,6 +50,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -80,6 +83,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -553,6 +562,12 @@ msgstr "Nėra leidimų." msgid "Opening file '%s' failed." msgstr "Nepavyko atverti rinkmenos „%s“." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/mk.po b/po/mk.po index a4a66796..76d10e56 100644 --- a/po/mk.po +++ b/po/mk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: YaST (@memory@)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2001-07-17 16:12+0200\n" "Last-Translator: Зоран Димовски \n" "Language-Team: Macedonian \n" @@ -46,6 +46,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -76,6 +79,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -536,6 +545,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/mr.po b/po/mr.po index c06e1b97..f0d8dc84 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: YaST (@memory@)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-07-29 15:37+0530\n" "Last-Translator: \"( अमेय पाळंदे ) Ameya Palande\" <2ameya@gmail.com>\n" "Language-Team: Marathi \n" @@ -46,6 +46,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -76,6 +79,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -574,6 +583,12 @@ msgstr "परवानगी नाकारली" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/nb.po b/po/nb.po index a28fcc27..d912d909 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2013-10-04 18:20+0200\n" "Last-Translator: Olav Pettershagen \n" "Language-Team: Norwegian Bokmål \n" @@ -52,6 +52,9 @@ msgstr "\t--disable-filters\t\tDeaktiver filtre." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tAngi filsystemtype manuelt." @@ -84,6 +87,12 @@ msgstr "\t--print-number, -p\t\tVis antall opprettede øyeblikksbilder." msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tUndertrykk vanlig visning." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -564,6 +573,12 @@ msgstr "Ikke autorisert." msgid "Opening file '%s' failed." msgstr "Filen '%s' kunne ikke åpnes." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/nds.po b/po/nds.po index 54a32a7f..9883bb92 100644 --- a/po/nds.po +++ b/po/nds.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: opensuse-i 18n\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2012-11-26 14:24+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -48,6 +48,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -78,6 +81,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -534,6 +543,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/nl.po b/po/nl.po index 5a83e35b..f9249ff7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -9,11 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-10-29 22:36+0000\n" "Last-Translator: Freek de Kruijf \n" -"Language-Team: Dutch " -"\n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,6 +50,9 @@ msgstr "\t--disable-used-space\t\tGebruikte ruimte tonen uitschakelen." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tExtra opties doorgeven aan de opdracht diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tStel handmatig het type bestandssysteem in." @@ -81,6 +83,12 @@ msgstr "\t--print-number, -p\t\tToon nummer van tweede aangemaakte momentopname. msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tOnderdruk normale uitvoer." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tBewerking op targetroot (werkt alleen zonder D-Bus)." @@ -537,6 +545,12 @@ msgstr "Geen toegangsrechten." msgid "Opening file '%s' failed." msgstr "Openen van bestand '%s' is mislukt." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/nn.po b/po/nn.po index ae9ecbf9..1aacbf4e 100644 --- a/po/nn.po +++ b/po/nn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-08-11 20:37+0200\n" "Last-Translator: nynorsk \n" "Language-Team: nn \n" @@ -49,6 +49,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -79,6 +82,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -534,6 +543,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/pa.po b/po/pa.po index 35a14582..e365c43d 100644 --- a/po/pa.po +++ b/po/pa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-08-15 12:20+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -49,6 +49,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -79,6 +82,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -588,6 +597,12 @@ msgstr "ਅਧਿਕਾਰ ਪਾਬੰਦੀ ਹੈ" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/pl.po b/po/pl.po index d1af7aff..8b2c288a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-03-01 20:28+0000\n" "Last-Translator: Ewelina Michalowska \n" -"Language-Team: Polish " -"\n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.3\n" msgid "\t--all-configs, -a\t\tList snapshots from all accessible configs." @@ -32,9 +30,7 @@ msgid "\t--cleanup-algorithm, -c \tCleanup algorithm for snapshots." msgstr "\t--cleanup-algorithm, -c \tAlgorytm czyszczenia migawek." msgid "\t--command \t\tRun command and create pre and post snapshots." -msgstr "" -"\t--command \t\tWykonanie polecenia oraz utworzenie zrzutów typu " -"pre i post." +msgstr "\t--command \t\tWykonanie polecenia oraz utworzenie zrzutów typu pre i post." msgid "\t--config, -c \t\tSet name of config to use." msgstr "\t--config, -c \t\tUstawienie nazwy konfiguracji do użycia." @@ -54,6 +50,9 @@ msgstr "\t--disable-used-space\t\tWyłącz wyświetlanie wykorzystanego miejsca. msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tDodatkowe opcje przekazywane do polecenia diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tRęczne ustawienie typu systemu plików." @@ -84,6 +83,12 @@ msgstr "\t--print-number, -p\t\tWyświetlenie numeru migawki utworzonej jako dru msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tWyłącz normalne wyjście." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r <ścieżka>\t\tDziałanie na katalogu głównym obiektu docelowego (działa tylko bez systemu DBus)." @@ -272,14 +277,11 @@ msgstr "Nie można usunąć migawki %d, ponieważ to jest bieżący system." #, c-format msgid "Cannot delete snapshot %d since it is the currently mounted snapshot." -msgstr "" -"Nie można usunąć migawki %d, ponieważ to jest aktualnie zamontowana migawka." +msgstr "Nie można usunąć migawki %d, ponieważ to jest aktualnie zamontowana migawka." #, c-format msgid "Cannot delete snapshot %d since it is the next to be mounted snapshot." -msgstr "" -"Nie można usunąć migawki %d, ponieważ to jest migawka następna w kolejności " -"do zamontowania." +msgstr "Nie można usunąć migawki %d, ponieważ to jest migawka następna w kolejności do zamontowania." msgid "Cleanup" msgstr "Wyczyszczono" @@ -543,6 +545,12 @@ msgstr "Brak uprawnień." msgid "Opening file '%s' failed." msgstr "Otwieranie pliku '%s' nie powiodło się." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/pt.po b/po/pt.po index 806c4225..7ee596fc 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-06-01 11:05+0000\n" "Last-Translator: Jiri Machalek \n" "Language-Team: Portuguese \n" @@ -49,6 +49,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -79,6 +82,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -589,6 +598,12 @@ msgstr "(permissões do proprietário desligadas)" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 5f5f2ded..73946be7 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-10-31 12:21+0000\n" "Last-Translator: Rodrigo Macedo \n" -"Language-Team: Portuguese (Brazil) " -"\n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,6 +49,9 @@ msgstr "\t--disable-used-space\t\tDesabilitar a exibição do espaço usado." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tOpções adicionais passadas para o comando diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tDefinir o tipo de sistema de arquivos manualmente." @@ -80,6 +82,12 @@ msgstr "\t--print-number, -p\t\tNúmero de impressão do segundo instantâneo cr msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tOcultar saída normal." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tOperar na raiz do destino (apenas funciona sem DBus)." @@ -535,6 +543,12 @@ msgstr "Sem permissões." msgid "Opening file '%s' failed." msgstr "Falha ao abrir o arquivo '%s'." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/ro.po b/po/ro.po index 2d7e3f2a..55644193 100644 --- a/po/ro.po +++ b/po/ro.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenSUSE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2011-11-01 00:08-0700\n" "Last-Translator: Alexandru Szasz \n" "Language-Team: Romanian \n" @@ -55,6 +55,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -85,6 +88,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -585,6 +594,12 @@ msgstr "(permisiunile posesorului dezactivate)" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/ru.po b/po/ru.po index f9e0291b..c69f7d42 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,17 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-02-09 16:10+0000\n" "Last-Translator: Nikita Maynagashev \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.3\n" msgid "\t--all-configs, -a\t\tList snapshots from all accessible configs." @@ -46,6 +44,9 @@ msgstr "\t--disable-used-space\t\tОтключить показ использу msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tДополнительные параметры, переданные в команду diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f <тип ФС>\t\tЗадать тип файловой системы вручную." @@ -76,6 +77,12 @@ msgstr "\t--print-number, -p\t\tВывести номер второго соз msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tПодавить нормальный вывод." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tРабота с целевым корнем (поддерживается только без DBus)." @@ -533,6 +540,12 @@ msgstr "Нет прав." msgid "Opening file '%s' failed." msgstr "Сбой при открытии файла '%s'." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "ПиБ" diff --git a/po/si.po b/po/si.po index 47fcbbb8..785fc163 100644 --- a/po/si.po +++ b/po/si.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: YaST (@memory@)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-07-29 15:37+0530\n" "Last-Translator: i18n@suse.de\n" "Language-Team: Sinhala \n" @@ -45,6 +45,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -75,6 +78,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -534,6 +543,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/sk.po b/po/sk.po index 1ee06041..f7105887 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6,11 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-11-05 12:25+0000\n" "Last-Translator: Ferdinand Galko \n" -"Language-Team: Slovak " -"\n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,6 +47,9 @@ msgstr "\t--disable-used-space\t\tZakázať ukazovanie použitého miesta." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tĎalšie voľby odovzdané príkazu diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tRučne nastaví typ súborového systému." @@ -78,6 +80,12 @@ msgstr "\t--print-number, -p\t\tVypíše číslo druhej vytvorenej snímky." msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tPotlačí normálny výstup." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tBeží na cieľovom správcovi systému root (funguje len bez DBus)." @@ -540,6 +548,12 @@ msgstr "Žiadne práva." msgid "Opening file '%s' failed." msgstr "Otvorenie súboru '%s' zlyhalo." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/sl.po b/po/sl.po index bd8bd524..8fee420b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-08-24 17:37+0200\n" "Last-Translator: Janez Krek \n" "Language-Team: Slovenščina \n" @@ -49,6 +49,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -79,6 +82,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -560,6 +569,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/snapper.pot b/po/snapper.pot index ad1f5732..8539186a 100644 --- a/po/snapper.pot +++ b/po/snapper.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -48,6 +48,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -78,6 +81,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -533,6 +542,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/sr.po b/po/sr.po index 1dd3eaf6..b527ed51 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2005-08-03 21:03+0200\n" "Last-Translator: Данило Шеган \n" "Language-Team: Serbian \n" @@ -48,6 +48,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -78,6 +81,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -547,6 +556,12 @@ msgstr "Нова верзија" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/sv.po b/po/sv.po index c5e9d390..24960aa8 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-03-01 20:28+0000\n" "Last-Translator: Sven Åhr \n" -"Language-Team: Swedish \n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,9 +32,7 @@ msgstr "\t--cleanup-algorithm, -c \tUpprensningsalgoritm för ögonblicksb # SLE12 msgid "\t--command \t\tRun command and create pre and post snapshots." -msgstr "" -"\t--command \t\tKör kommandot och skapa före- och efter-" -"ögonblicksbilder." +msgstr "\t--command \t\tKör kommandot och skapa före- och efter-ögonblicksbilder." # SLE12 msgid "\t--config, -c \t\tSet name of config to use." @@ -58,6 +55,9 @@ msgstr "\t--disable-used-space\t\tInaktivera visning av använt utrymme." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tExtra alternativ skickades till diffkommandot." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + # SLE12 msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tAnge filsystemtyp manuellt." @@ -97,6 +97,12 @@ msgstr "\t--print-number, -p\t\tSkriv ut nummer för den andra skapade ögonblic msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tUtelämna normal utmatning." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tArbeta i målroten (fungerar enbart utan DBus)." @@ -336,8 +342,7 @@ msgstr "B" # SLE12 #, c-format msgid "Cannot delete snapshot %d since it is the current system." -msgstr "" -"Det går inte att ta bort ögonblicksbilden %d eftersom den används i systemet." +msgstr "Det går inte att ta bort ögonblicksbilden %d eftersom den används i systemet." #, c-format msgid "Cannot delete snapshot %d since it is the currently mounted snapshot." @@ -345,9 +350,7 @@ msgstr "Det går inte att radera ögonblicksbilden %d eftersom den är monterad. #, c-format msgid "Cannot delete snapshot %d since it is the next to be mounted snapshot." -msgstr "" -"Det går inte att radera ögonblicksbilden %d eftersom den står på tur att " -"monteras." +msgstr "Det går inte att radera ögonblicksbilden %d eftersom den står på tur att monteras." # SLE12 msgid "Cleanup" @@ -675,6 +678,12 @@ msgstr "Ingen behörighet." msgid "Opening file '%s' failed." msgstr "Det gick inte att öppna filen %s." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/ta.po b/po/ta.po index b62be96d..1f640538 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2003-08-14 10:47+0200\n" "Last-Translator: xxx \n" "Language-Team: Tamil \n" @@ -48,6 +48,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -78,6 +81,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -576,6 +585,12 @@ msgstr "அனுமதிகள் மறுக்கப்படுகின msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/tg.po b/po/tg.po index 7837ad78..7675c68c 100644 --- a/po/tg.po +++ b/po/tg.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Tajik openSUSE Localization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: \n" "Last-Translator: Victor Ibragimov \n" "Language-Team: Tajik KDE & Software Localization - Victor Ibragimov \n" @@ -44,6 +44,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -74,6 +77,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -529,6 +538,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/th.po b/po/th.po index 1f1ebdd9..9cb64c08 100644 --- a/po/th.po +++ b/po/th.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: YaST (@memory@)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2008-01-04 08:58+0100\n" "Last-Translator: i18n@suse.de\n" "Language-Team: Thai \n" @@ -45,6 +45,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -75,6 +78,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -563,6 +572,12 @@ msgstr "สิทธิ์ที่อนุญาตในการบูตร msgid "Opening file '%s' failed." msgstr "การสร้างระบบแฟ้มล้มเหลว" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/tr.po b/po/tr.po index 04e2572f..a5879a67 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-03-01 20:28+0000\n" "Last-Translator: Murat Servan Kahraman \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,9 +23,7 @@ msgid "\t--all-configs, -a\t\tList snapshots from all accessible configs." msgstr "" msgid "\t--cleanup-algorithm, -c \tCleanup algorithm for snapshot." -msgstr "" -"\t--cleanup-algorithm, -c \tAnlık görüntüler için temizleme " -"algoritması." +msgstr "\t--cleanup-algorithm, -c \tAnlık görüntüler için temizleme algoritması." msgid "\t--cleanup-algorithm, -c \tCleanup algorithm for snapshots." msgstr "" @@ -53,14 +50,15 @@ msgstr "\t--filtreleri-gösterme\t\tFiltreleri gösterme." msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f \t\tDosya sistemi türünü elle ayarla." #, fuzzy msgid "\t--input, -i \t\tRead files for which to undo changes from file." -msgstr "" -"\t--giriş, -i \t\tDosyadan değişiklikleri geri almak için dosyaları " -"oku." +msgstr "\t--giriş, -i \t\tDosyadan değişiklikleri geri almak için dosyaları oku." #, fuzzy msgid "\t--input, -i \t\tRead files to diff from file." @@ -88,6 +86,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\tNormal olan çıktıları gizle." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -111,8 +115,7 @@ msgstr "\t--tip, -t \t\tListelemek için anlım görüntü tipleri." #, fuzzy msgid "\t--userdata, -u \tUserdata for snapshot." -msgstr "" -"\t--kullanıcıverisi, -u \tAnlık görüntü için kullanıcı verisi." +msgstr "\t--kullanıcıverisi, -u \tAnlık görüntü için kullanıcı verisi." msgid "\t--userdata, -u \tUserdata for snapshots." msgstr "" @@ -564,7 +567,7 @@ msgstr "Geçersiz anlık görüntüler." msgid "Invalid subvolume." msgstr "Geçersiz arkases." -#, c-format, fuzzy +#, fuzzy, c-format msgid "Invalid table style %d." msgstr "%d geçersiz tablo stili." @@ -594,11 +597,11 @@ msgstr "" msgid "MiB" msgstr "" -#, c-format, fuzzy +#, fuzzy, c-format msgid "Missing argument for command option '%s'." msgstr "'%s' komut seçeneği için eksik argüman." -#, c-format, fuzzy +#, fuzzy, c-format msgid "Missing argument for global option '%s'." msgstr "'%s' küresel seçeneği için eksik argüman." @@ -624,6 +627,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "'%s ' dosyasını açma başarısız oldu." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" @@ -686,7 +695,7 @@ msgstr "Tür" msgid "Unknown cleanup algorithm '%s'." msgstr "Bilinmeyen '%s' temizleme algoritması." -#, c-format, fuzzy +#, fuzzy, c-format msgid "Unknown command '%s'." msgstr "'Bilinmeyen komut '%s'." @@ -698,7 +707,7 @@ msgstr "'Bilinmeyen komut '%s'." msgid "Unknown global option '%s'." msgstr "Bilinmeyen '%s' evrensel seçeneği." -#, c-format, fuzzy +#, fuzzy, c-format msgid "Unknown option '%s' for command '%s'." msgstr "Bilinmeyen '%s' seçeneği; '%s' komutu için." @@ -747,15 +756,15 @@ msgstr "%s oluşturuluyor" msgid "deleting %s" msgstr "%s siliniyor" -#, c-format, fuzzy +#, fuzzy, c-format msgid "failed to create %s" msgstr "%s oluşturma başarısız oldu" -#, c-format, fuzzy +#, fuzzy, c-format msgid "failed to delete %s" msgstr "%s 'i silme başarısız oldu" -#, c-format, fuzzy +#, fuzzy, c-format msgid "failed to modify %s" msgstr "%s 'i değiştirme başarısız oldu" @@ -771,9 +780,7 @@ msgstr "" #, fuzzy msgid "usage: snapper [--global-options] [--command-options] [command-arguments]" -msgstr "" -"kullanım: yakalayıcı [--global-options] [--command-options] " -"[command-arguments]" +msgstr "kullanım: yakalayıcı [--global-options] [--command-options] [command-arguments]" #, fuzzy #~ msgid "Command '%s' does not work without DBus." diff --git a/po/uk.po b/po/uk.po index 75f8ee92..d43e654f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2015-10-17 16:22+0200\n" "Last-Translator: Andriy Bandura \n" "Language-Team: Ukrainian \n" @@ -50,6 +50,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x \tДодаткові параметри, передані у команду diff." +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f <тип ФС>\t\tВказати тип файлової системи вручну." @@ -80,6 +83,12 @@ msgstr "\t--print-number, -p\t\tВивести номер другого ств msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--тихо, -q\t\t\tПоглушити нормальне виведення." +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r \t\tРобота із цільовим коренем (підтримується тільки без DBus)." @@ -544,6 +553,12 @@ msgstr "Немає прав." msgid "Opening file '%s' failed." msgstr "Помилка при відкритті файлу '%s'." +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/vi.po b/po/vi.po index 6f670552..eb647e0e 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2006-07-12 07:32+0200\n" "Last-Translator: Phan Vĩnh Thịnh \n" "Language-Team: Vietnamese \n" @@ -48,6 +48,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -78,6 +81,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -536,6 +545,12 @@ msgstr "" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/wa.po b/po/wa.po index 01c69320..ccee195d 100644 --- a/po/wa.po +++ b/po/wa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: yast memory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2004-04-05 17:37+0200\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" @@ -47,6 +47,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -77,6 +80,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -554,6 +563,12 @@ msgstr "Pont d' rastrindaedje VJ" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/xh.po b/po/xh.po index 58470353..61288e95 100644 --- a/po/xh.po +++ b/po/xh.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: base\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2006-11-03 14:26\n" "Last-Translator: Novell Language \n" "Language-Team: Novell Language \n" @@ -45,6 +45,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -75,6 +78,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -577,6 +586,12 @@ msgstr "Iimvume zaliwe" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index e4922376..4d86a851 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -9,11 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2018-11-03 02:15+0000\n" "Last-Translator: Marguerite Su \n" -"Language-Team: Chinese (China) " -"\n" +"Language-Team: Chinese (China) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,6 +50,9 @@ msgstr "\t--disable-used-space\t\t禁用已用空间的显示。" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x <选项>\t传递到 diff 命令的额外选项。" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f <文件系统类型> \t\t手动设置文件系统类型。" @@ -81,6 +83,12 @@ msgstr "\t--print-number, -p\t\t打印所创建的第二个快照的编号。" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\t静默正常输出。" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r <路径>\t\t在目标根目录上操作(不用 DBus 时才起作用)。" @@ -536,6 +544,12 @@ msgstr "无权限。" msgid "Opening file '%s' failed." msgstr "打开文件 '%s' 失败。" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/zh_TW.po b/po/zh_TW.po index ab9672bf..8fb58483 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2019-03-01 20:28+0000\n" "Last-Translator: Yi-Jyun Pan \n" -"Language-Team: Chinese (Taiwan) \n" +"Language-Team: Chinese (Taiwan) \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,6 +52,9 @@ msgstr "\t--disable-used-space\t\t停用顯示已用空間的功能。" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "\t--extensions, -x <選項>\t傳送到 diff 指令的額外選項。" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "\t--fstype, -f <檔案系統類型>\t\t手動設定檔案系統類型。" @@ -86,6 +88,12 @@ msgstr "\t--print-number、-p\t\t列印第二個建立之快照的編號。" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "\t--quiet, -q\t\t\t減少一般輸出。" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "\t--root, -r <路徑>\t\t在目標根目錄操作 (不使用 DBus 時才起作用)。" @@ -591,6 +599,12 @@ msgstr "無許可權。" msgid "Opening file '%s' failed." msgstr "開啟檔案 '%s' 失敗。" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr "PiB" diff --git a/po/zu.po b/po/zu.po index cd42356b..b6e66593 100644 --- a/po/zu.po +++ b/po/zu.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: installation\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-29 14:27+0100\n" +"POT-Creation-Date: 2019-10-15 11:05+0200\n" "PO-Revision-Date: 2016-04-19 09:51+0000\n" "Last-Translator: Shane Wims \n" "Language-Team: Zulu \n" @@ -47,6 +47,9 @@ msgstr "" msgid "\t--extensions, -x \tExtra options passed to the diff command." msgstr "" +msgid "\t--from\t\t\t\tCreate a snapshot from the specified snapshot." +msgstr "" + msgid "\t--fstype, -f \t\tManually set filesystem type." msgstr "" @@ -77,6 +80,12 @@ msgstr "" msgid "\t--quiet, -q\t\t\tSuppress normal output." msgstr "" +msgid "\t--read-only\t\t\tCreate read-only snapshot." +msgstr "" + +msgid "\t--read-write\t\t\tCreate read-write snapshot." +msgstr "" + msgid "\t--root, -r \t\tOperate on target root (works only without DBus)." msgstr "" @@ -580,6 +589,12 @@ msgstr "Izimvume zinqatshiwe" msgid "Opening file '%s' failed." msgstr "" +msgid "Option --from only supported for snapshots of type single." +msgstr "" + +msgid "Option --read-write only supported for snapshots of type single." +msgstr "" + #. TRANSLATORS: symbol for "pebi bytes" (best keep untranslated) msgid "PiB" msgstr ""