From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550685003221144.29437899392747; Wed, 20 Feb 2019 09:50:03 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D5A36C0F1CEF; Wed, 20 Feb 2019 17:50:00 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 58040183FD; Wed, 20 Feb 2019 17:50:00 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id EB084181A00A; Wed, 20 Feb 2019 17:49:58 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHneop019910 for ; Wed, 20 Feb 2019 12:49:40 -0500 Received: by smtp.corp.redhat.com (Postfix) id 44D7118B85; Wed, 20 Feb 2019 17:49:40 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 10B08607D2; Wed, 20 Feb 2019 17:49:35 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:04 +0000 Message-Id: <20190220174918.24379-2-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 01/15] po: provide custom make rules for po file management X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Wed, 20 Feb 2019 17:50:02 +0000 (UTC) Historically we have relied on intltool to install a standard po/Makefile.in.in which has very limited scope for customization. intltool is deprecated in favour of standard gettextize tools, but these share the same disadvantages. Writing make rules for po file management is no more difficult than any other rules libvirt-glib has, so stop using intltool and don't use gettextize ether. Signed-off-by: Daniel P. Berrang=C3=A9 --- .gitignore | 8 --- autogen.sh | 3 +- configure.ac | 8 ++- libvirt-gconfig/Makefile.am | 1 + libvirt-glib.spec.in | 2 +- libvirt-glib/Makefile.am | 1 + libvirt-gobject/Makefile.am | 1 + m4/virt-gettext.m4 | 5 -- m4/virt-nls.m4 | 45 ++++++++++++++++ mingw-libvirt-glib.spec.in | 2 +- po/Makefile.am | 100 +++++++++++++++++++++++++++++++++++ po/{POTFILES.in =3D> POTFILES} | 0 po/README.md | 38 +++++++++++++ 13 files changed, 192 insertions(+), 22 deletions(-) delete mode 100644 m4/virt-gettext.m4 create mode 100644 m4/virt-nls.m4 create mode 100644 po/Makefile.am rename po/{POTFILES.in =3D> POTFILES} (100%) create mode 100644 po/README.md diff --git a/.gitignore b/.gitignore index 116bb12..10d0157 100644 --- a/.gitignore +++ b/.gitignore @@ -22,7 +22,6 @@ Makefile.in m4/ltsugar.m4 m4/lt~obsolete.m4 m4/libtool.m4 -m4/intltool.m4 m4/ltversion.m4 m4/ltoptions.m4 autom4te.cache @@ -83,14 +82,7 @@ libvirt-gconfig/tests/test-capabilities-parse libvirt-gconfig/tests/test-domain-create libvirt-gconfig/tests/test-domain-parse .tx/ -po/Makefile -po/Makefile.in -po/Makefile.in.in -po/POTFILES -po/libvirt-glib.pot -po/stamp-it po/*.gmo -po/.zanata-cache/ tests/test-events tests/test-gconfig tests/*.log diff --git a/autogen.sh b/autogen.sh index 4f7135f..3b593ce 100755 --- a/autogen.sh +++ b/autogen.sh @@ -10,7 +10,7 @@ cd $srcdir =20 DIE=3D0 =20 -for prog in intltoolize autoreconf automake autoconf libtoolize +for prog in autoreconf automake autoconf libtoolize do ($prog --version) < /dev/null > /dev/null 2>&1 || { echo @@ -35,7 +35,6 @@ fi touch ChangeLog AUTHORS =20 mkdir -p build-aux -intltoolize --force autoreconf -if =20 cd $THEDIR diff --git a/configure.ac b/configure.ac index dc743bb..6b66f5d 100644 --- a/configure.ac +++ b/configure.ac @@ -112,10 +112,8 @@ PKG_CHECK_MODULES(GOBJECT2, gobject-2.0 >=3D $GLIB2_RE= QUIRED) PKG_CHECK_MODULES(GIO2, gio-2.0 >=3D $GLIB2_REQUIRED) PKG_CHECK_MODULES(LIBXML2, libxml-2.0 >=3D $LIBXML2_REQUIRED) =20 -LIBVIRT_GLIB_GETTEXT -dnl Should be in m4/virt-gettext.m4 but intltoolize is too -dnl dumb to find it there -IT_PROG_INTLTOOL([0.35.0]) +LIBVIRT_GLIB_ARG_NLS +LIBVIRT_GLIB_CHECK_NLS =20 =20 GTK_DOC_CHECK([1.10],[--flavour no-tmpl]) @@ -218,7 +216,7 @@ AC_OUTPUT(Makefile docs/libvirt-glib/version.xml docs/libvirt-gobject/Makefile docs/libvirt-gconfig/Makefile - po/Makefile.in + po/Makefile tests/Makefile libvirt-glib-1.0.pc libvirt-gconfig-1.0.pc diff --git a/libvirt-gconfig/Makefile.am b/libvirt-gconfig/Makefile.am index cfcc0e4..b976e4d 100644 --- a/libvirt-gconfig/Makefile.am +++ b/libvirt-gconfig/Makefile.am @@ -201,6 +201,7 @@ libvirt_gconfig_1_0_la_SOURCES =3D \ nodist_libvirt_gconfig_1_0_la_SOURCES =3D \ $(GCONFIG_GENERATED_FILES) libvirt_gconfig_1_0_la_CFLAGS =3D \ + -DGETTEXT_PACKAGE=3D"\"libvirt-glib\"" \ -DG_LOG_DOMAIN=3D"\"Libvirt.GConfig\"" \ -DDATADIR=3D"\"$(datadir)\"" \ -DLIBVIRT_GCONFIG_BUILD \ diff --git a/libvirt-glib.spec.in b/libvirt-glib.spec.in index 7e02c83..877cc2f 100644 --- a/libvirt-glib.spec.in +++ b/libvirt-glib.spec.in @@ -37,7 +37,7 @@ BuildRequires: libtool %if %{with_vala} BuildRequires: vala-tools %endif -BuildRequires: intltool +BuildRequires: gettext =20 %package devel Group: Development/Libraries diff --git a/libvirt-glib/Makefile.am b/libvirt-glib/Makefile.am index 12a390f..fa52352 100644 --- a/libvirt-glib/Makefile.am +++ b/libvirt-glib/Makefile.am @@ -16,6 +16,7 @@ libvirt_glib_1_0_la_SOURCES =3D \ libvirt-glib-main.c libvirt_glib_1_0_la_CFLAGS =3D \ -DLIBVIRT_GLIB_BUILD \ + -DGETTEXT_PACKAGE=3D"\"libvirt-glib\"" \ -DG_LOG_DOMAIN=3D"\"Libvirt.GLib\"" \ -DLOCALEDIR=3D"\"$(datadir)/locale\"" \ $(COVERAGE_CFLAGS) \ diff --git a/libvirt-gobject/Makefile.am b/libvirt-gobject/Makefile.am index 5e130ee..210c753 100644 --- a/libvirt-gobject/Makefile.am +++ b/libvirt-gobject/Makefile.am @@ -66,6 +66,7 @@ libvirt_gobject_1_0_la_SOURCES =3D \ nodist_libvirt_gobject_1_0_la_SOURCES =3D \ $(GOBJECT_GENERATED_FILES) libvirt_gobject_1_0_la_CFLAGS =3D \ + -DGETTEXT_PACKAGE=3D"\"libvirt-glib\"" \ -DG_LOG_DOMAIN=3D"\"Libvirt.GObject\"" \ -DDATADIR=3D"\"$(datadir)\"" \ -DLIBVIRT_GOBJECT_BUILD \ diff --git a/m4/virt-gettext.m4 b/m4/virt-gettext.m4 deleted file mode 100644 index 07c0920..0000000 --- a/m4/virt-gettext.m4 +++ /dev/null @@ -1,5 +0,0 @@ -AC_DEFUN([LIBVIRT_GLIB_GETTEXT],[ - GETTEXT_PACKAGE=3Dlibvirt-glib - AC_SUBST(GETTEXT_PACKAGE) - AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],"$GETTEXT_PACKAGE", [GETTEXT pack= age name]) -]) diff --git a/m4/virt-nls.m4 b/m4/virt-nls.m4 new file mode 100644 index 0000000..9dcba16 --- /dev/null +++ b/m4/virt-nls.m4 @@ -0,0 +1,45 @@ +dnl gettext utilities +dnl +dnl Copyright (C) 2018 Red Hat, Inc. +dnl +dnl This library is free software; you can redistribute it and/or +dnl modify it under the terms of the GNU Lesser General Public +dnl License as published by the Free Software Foundation; either +dnl version 2.1 of the License, or (at your option) any later version. +dnl +dnl This library is distributed in the hope that it will be useful, +dnl but WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +dnl Lesser General Public License for more details. +dnl +dnl You should have received a copy of the GNU Lesser General Public +dnl License along with this library. If not, see +dnl . +dnl + +AC_DEFUN([LIBVIRT_GLIB_ARG_NLS],[ + m4_divert_text([DEFAULTS], [[enable_nls=3Dyes]]) + AC_ARG_ENABLE([nls], + [AS_HELP_STRING([--enable-nls], + [NLS @<:@default=3Dyes@:>@])]) +]) + +AC_DEFUN([LIBVIRT_GLIB_CHECK_NLS],[ + dnl GNU gettext tools (optional). + AC_CHECK_PROG([XGETTEXT], [xgettext], [xgettext], [no]) + AC_CHECK_PROG([MSGFMT], [msgfmt], [msgfmt], [no]) + AC_CHECK_PROG([MSGMERGE], [msgmerge], [msgmerge], [no]) + + dnl Check they are the GNU gettext tools. + AC_MSG_CHECKING([msgfmt is GNU tool]) + if $MSGFMT --version >/dev/null 2>&1 && $MSGFMT --version | grep -q 'GNU= gettext'; then + msgfmt_is_gnu=3Dyes + else + msgfmt_is_gnu=3Dno + fi + AC_MSG_RESULT([$msgfmt_is_gnu]) + AM_CONDITIONAL([ENABLE_NLS], [test "x$enable_nls" =3D "xyes"]) + AM_CONDITIONAL([HAVE_GNU_GETTEXT_TOOLS], + [test "x$XGETTEXT" !=3D "xno" && test "x$MSGFMT" !=3D "xno" && \ + test "x$MSGMERGE" !=3D "xno" && test "x$msgfmt_is_gnu" !=3D "xno"]) +]) diff --git a/mingw-libvirt-glib.spec.in b/mingw-libvirt-glib.spec.in index d87100d..feb4c13 100644 --- a/mingw-libvirt-glib.spec.in +++ b/mingw-libvirt-glib.spec.in @@ -16,7 +16,7 @@ BuildRequires: mingw32-glib2 BuildRequires: mingw64-glib2 BuildRequires: mingw32-libvirt >=3D 0.9.10 BuildRequires: mingw64-libvirt >=3D 0.9.10 -BuildRequires: intltool +BuildRequires: gettext BuildRequires: pkgconfig =20 BuildArch: noarch diff --git a/po/Makefile.am b/po/Makefile.am new file mode 100644 index 0000000..f2818c7 --- /dev/null +++ b/po/Makefile.am @@ -0,0 +1,100 @@ +DOMAIN =3D $(PACKAGE_NAME) +COPYRIGHT_HOLDER =3D The Libvirt authors +MSGID_BUGS_ADDRESS =3D https://libvirt.org/bugs.html + +LANGS :=3D \ + af am anp ar as ast bal be bg bn_IN \ + bn bo br brx bs ca cs cy da de_CH \ + de el en_GB eo es et eu fa fi \ + fr gl gu he hi hr hu ia \ + id ilo is it ja ka kk km kn ko \ + kw_GB kw@kkcor kw kw@uccor ky lt lv mai mk ml \ + mn mr ms nb nds ne nl nn nso \ + or pa pl pt_BR pt ro ru si sk sl \ + sq sr@latin sr sv ta te tg th tr tw \ + uk ur vi wba yo zh_CN zh_HK zh_TW zu + + +POTFILE_DEPS :=3D $(shell $(SED) 's,^,$(top_srcdir)/,' $(srcdir)/POTFILES) +POTFILE :=3D $(srcdir)/$(DOMAIN).pot +POFILES :=3D $(LANGS:%=3D$(srcdir)/%.po) +GMOFILES :=3D $(LANGS:%=3D$(srcdir)/%.gmo) + +EXTRA_DIST =3D \ + POTFILES \ + $(POTFILE) \ + $(POFILES) \ + $(GMOFILES) + +if HAVE_GNU_GETTEXT_TOOLS + +XGETTEXT_ARGS =3D \ + --default-domain=3D$(DOMAIN) \ + --from-code=3Dutf-8 \ + --add-comments=3DTRANSLATORS: \ + --keyword=3D_ --keyword=3DN_ \ + --copyright-holder=3D'$(COPYRIGHT_HOLDER)' \ + --package-name=3D"$(PACKAGE_NAME)" \ + --package-version=3D"$(PACKAGE_VERSION)" \ + --msgid-bugs-address=3D"$(MSGID_BUGS_ADDRESS)" \ + --directory=3D$(top_srcdir) \ + $(NULL) + +SED_PO_FIXUP_ARGS =3D \ + -e "s|text/plain; charset=3DCHARSET|text/plain; charset=3DUTF-8|g" \ + -e "s|SOME DESCRIPTIVE TITLE|Libvirt package strings|g" \ + -e "s|Copyright (C) YEAR|Copyright (C) $$(date +'%Y')|" \ + $(NULL) + + +# Although they're in EXTRA_DIST, we still need to +# copy these again, because update-gmo will change +# their content, and dist-hook runs after the +# things in EXTRA_DIST are copied. +dist-hook: $(GMOFILES) + cp -f $(POTFILE) $(distdir)/ + cp -f $(POFILES) $(distdir)/ + cp -f $(GMOFILES) $(distdir)/ + +update-po: $(POFILES) + +update-gmo: $(GMOFILES) + +$(POTFILE): POTFILES $(POTFILE_DEPS) + $(XGETTEXT) -o $@-t $(XGETTEXT_ARGS) \ + --files-from=3D$(abs_srcdir)/POTFILES + $(SED) $(SED_PO_FIXUP_ARGS) < $@-t > $@ + rm -f $@-t + +%.po: $(POTFILE) + $(MSGMERGE) --backup=3Doff --no-fuzzy-matching --update $@ $(POTFILE) + +$(srcdir)/%.gmo: $(srcdir)/%.po + rm -f $@ $@-t + $(MSGFMT) -c -o $@-t $< + mv $@-t $@ + +.PRECIOUS: $(POTFILE) $(POFILES) + +endif HAVE_GNU_GETTEXT_TOOLS + +if ENABLE_NLS + +# Cannot use 'localedir' since this conflicts with autoconf. +langinstdir =3D $(datadir)/locale + +install-data-hook: $(GMOFILES) + mkdir -p $(DESTDIR)$(langinstdir) + for lang in $(LANGS); do \ + d=3D$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \ + mkdir -p $$d; \ + install -m 0644 $(srcdir)/$$lang.gmo $$d/$(DOMAIN).mo; \ + done + +uninstall-hook: + for lang in $(LANGS); do \ + d=3D$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \ + rm -f $$d/$(DOMAIN).mo; \ + done + +endif ENABLE_NLS diff --git a/po/POTFILES.in b/po/POTFILES similarity index 100% rename from po/POTFILES.in rename to po/POTFILES diff --git a/po/README.md b/po/README.md new file mode 100644 index 0000000..8cbccf8 --- /dev/null +++ b/po/README.md @@ -0,0 +1,38 @@ +Libvirt-Glib Message Translation +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D + +Libvirt-Glib translatable messages are maintained using the GNU Gettext to= ols +and file formats, in combination with the Zanata web service. + +Source repository +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D + +The libvirt-glib GIT repository stores the master "libvirt-glib.pot" file = and +full "po" files for translations. The master "libvirt-glib.pot" file can be +re-generated using + + make libvirt-glib.pot + +The full po files can have their source locations and msgids updated using + + make update-po + +Normally these updates are only done when either refreshing translations f= rom +Zanata, or when creating a new release. + +Zanata web service +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D + +The translation of libvirt-glib messages has been outsourced to the Fedora +translation team using the Zanata web service: + + https://fedora.zanata.org/project/view/libvirt-glib + +As such, changes to translations will generally NOT be accepted as patches +directly to libvirt-glib GIT. Any changes made to "$LANG.mini.po" files in +libvirt-glib GIT will be overwritten and lost the next time content is imp= orted +from Zanata. + +The master "libvirt-glib.pot" file is periodically pushed to Zanata to pro= vide +the translation team with content changes. New translated text is then +periodically pulled down from Zanata to update the po files. --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550843649927596.3394784289117; Fri, 22 Feb 2019 05:54:09 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 456C8300C22E; Fri, 22 Feb 2019 13:54:08 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0AA9860BF1; Fri, 22 Feb 2019 13:54:08 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id B245A247EB; Fri, 22 Feb 2019 13:54:07 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHnkF7019920 for ; Wed, 20 Feb 2019 12:49:46 -0500 Received: by smtp.corp.redhat.com (Postfix) id 041D34F31B; Wed, 20 Feb 2019 17:49:46 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id BBB09607DB; Wed, 20 Feb 2019 17:49:40 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:05 +0000 Message-Id: <20190220174918.24379-3-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 02/15] po: remove language list from zanata configuration X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.47]); Fri, 22 Feb 2019 13:54:08 +0000 (UTC) The element in zanata.xml is no longer relevant as this info is recorded server side. Signed-off-by: Daniel P. Berrang=C3=A9 --- po/zanata.xml | 99 --------------------------------------------------- 1 file changed, 99 deletions(-) diff --git a/po/zanata.xml b/po/zanata.xml index 70cc22a..042c695 100644 --- a/po/zanata.xml +++ b/po/zanata.xml @@ -4,103 +4,4 @@ libvirt-glib master gettext - - - sq - ar - as - ast - bal - eu - bn - bn-IN - brx - bs - br - bg - ca - zh-CN - zh-HK - zh-TW - kw - kw-GB - cs - da - nl - en-GB - eo - et - fi - fr - gl - ka - de - el - gu - he - hi - hu - is - id - ia - it - ja - kn - kk - km - ky - ko - lt - nds - mk - mai - ms - ml - mr - mn - ne - nb - nn - or - pa - fa - pl - pt - pt-BR - ro - ru - sr - sr@latin - si - sk - sl - es - sv - tg - ta - te - bo - tr - uk - ur - wba - cy - lv - kw@uccor - kw@kkcor - af - am - be - hr - de-CH - th - vi - zu - ilo - nso - tw - yo - anp - - --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550685016903938.7258073985241; Wed, 20 Feb 2019 09:50:16 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id ED66B359996; Wed, 20 Feb 2019 17:50:14 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id BC39C1001DC5; Wed, 20 Feb 2019 17:50:14 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 789043FB13; Wed, 20 Feb 2019 17:50:14 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHoDJa019943 for ; Wed, 20 Feb 2019 12:50:13 -0500 Received: by smtp.corp.redhat.com (Postfix) id 397144F31B; Wed, 20 Feb 2019 17:50:13 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1E54B61289; Wed, 20 Feb 2019 17:49:46 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:06 +0000 Message-Id: <20190220174918.24379-4-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 03/15] po: add rules for integration with zanata X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Wed, 20 Feb 2019 17:50:15 +0000 (UTC) Add rules to handle pushing libvirt-glib.pot to zanata, and refreshing .po files with new content from zanata. Signed-off-by: Daniel P. Berrang=C3=A9 --- po/Makefile.am | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/po/Makefile.am b/po/Makefile.am index f2818c7..d66aec7 100644 --- a/po/Makefile.am +++ b/po/Makefile.am @@ -60,6 +60,14 @@ update-po: $(POFILES) =20 update-gmo: $(GMOFILES) =20 +push-pot: $(POTFILE) + zanata push --push-type=3Dsource + +pull-po: $(POTFILE) + zanata pull --create-skeletons + $(MAKE) update-po + $(MAKE) update-gmo + $(POTFILE): POTFILES $(POTFILE_DEPS) $(XGETTEXT) -o $@-t $(XGETTEXT_ARGS) \ --files-from=3D$(abs_srcdir)/POTFILES --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550685034089862.2405896282631; Wed, 20 Feb 2019 09:50:34 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 08CEEADACB; Wed, 20 Feb 2019 17:50:30 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 901274DC56; Wed, 20 Feb 2019 17:50:29 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 5009C3FB14; Wed, 20 Feb 2019 17:50:29 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHoR15019979 for ; Wed, 20 Feb 2019 12:50:27 -0500 Received: by smtp.corp.redhat.com (Postfix) id AD1AA4F9A1; Wed, 20 Feb 2019 17:50:27 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7A1564F31B; Wed, 20 Feb 2019 17:50:13 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:07 +0000 Message-Id: <20190220174918.24379-5-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 04/15] po: minimize & canonicalize translations stored in git X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Wed, 20 Feb 2019 17:50:32 +0000 (UTC) Similar to the libvirt-glib.pot, .po files contain line numbers and file names identifying where in the source a translatable string comes from. The source locations in the .po files are thrown away and replaced with content from the libvirt-glib.pot whenever msgmerge is run, so this is not precious information that needs to be stored in git. When msgmerge processes a .po file, it will add in any msgids from the libvirt-glib.pot that were not already present. Thus, if a particular msgid currently has no translation, it can be considered redundant and again does not need storing in git. When msgmerge processes a .po file and can't find an exact existing translation match, it will try todo fuzzy matching instead, marking such entries with a "# fuzzy" comment to alert the translator to take a look and either discard, edit or accept the match. Looking at the existing fuzzy matches in .po files shows that the quality is awful, with many having a completely different set of printf format specifiers between the msgid and fuzzy msgstr entry. Fortunately when msgfmt generates the .gmo, the fuzzy entries are all ignored anyway. The fuzzy entries could be useful to translators if they were working on the .po files directly from git, but Libvirt-Glib outsourced translation to the Fedora Zanata system, so keeping fuzzy matches in git is not much help. Finally, by default msgids are sorted based on source location. Thus, if a bit of code with translatable text is moved from one file to another, it may shift around in the .po file, despite the msgid not itself changing. If the msgids were sorted alphabetically, the .po files would have stable ordering when code is refactored. This patch takes advantage of the above observations to canonicalize and minimize the content stored for .po files in git. Instead of storing the real .po files, we now store .mini.po files. The .mini.po files are the same file format as .po files, but have no source location comments, are sorted alphabetically, and all fuzzy msgstrs and msgids with no translation are discarded. This cuts the size of content in the po directory. Users working from a libvirt-glib git checkout who need the full .po files can run "make update-po", which merges the libvirt-glib.pot and .mini.po file to create a .po file containing all the content previously stored in git. Conversely if a full .po file has been modified, for example, by downloading new content from Zanata, the .mini.po files can be updated by running "make update-mini-po". The resulting diffs of the .mini.po file will clearly show the changed translations without any of the noise that previously obscured content. Being able to see content changes clearly actually identified a bug in the zanata python client where it was adding bogus "fuzzy" annotations to many messages: https://bugzilla.redhat.com/show_bug.cgi?id=3D1564497 Users working from libvirt-glib releases should not see any difference in behaviour, since the tarballs only contain the full .po files, not the .mini.po files. As an added benefit, generating tarballs with "make dist", will no longer cause creation of dirty files in git, since it won't touch the .mini.po files, only the .po files which are no longer kept in git. The languages are minimized in the following commit since it is a large mechanical process. Signed-off-by: Daniel P. Berrang=C3=A9 --- .gitignore | 3 +++ build-aux/minimize-po.pl | 37 +++++++++++++++++++++++++ po/Makefile.am | 29 +++++++++++--------- po/README.md | 58 +++++++++++++++++++++++++++++++++------- 4 files changed, 104 insertions(+), 23 deletions(-) create mode 100755 build-aux/minimize-po.pl diff --git a/.gitignore b/.gitignore index 10d0157..de89c4d 100644 --- a/.gitignore +++ b/.gitignore @@ -83,6 +83,9 @@ libvirt-gconfig/tests/test-domain-create libvirt-gconfig/tests/test-domain-parse .tx/ po/*.gmo +po/*po +!po/*.mini.po +po/*pot tests/test-events tests/test-gconfig tests/*.log diff --git a/build-aux/minimize-po.pl b/build-aux/minimize-po.pl new file mode 100755 index 0000000..497533a --- /dev/null +++ b/build-aux/minimize-po.pl @@ -0,0 +1,37 @@ +#!/usr/bin/perl + +my @block; +my $msgstr =3D 0; +my $empty =3D 0; +my $unused =3D 0; +my $fuzzy =3D 0; +while (<>) { + if (/^$/) { + if (!$empty && !$unused && !$fuzzy) { + print @block; + } + @block =3D (); + $msgstr =3D 0; + $fuzzy =3D 0; + push @block, $_; + } else { + if (/^msgstr/) { + $msgstr =3D 1; + $empty =3D 1; + } + if (/^#.*fuzzy/) { + $fuzzy =3D 1; + } + if (/^#~ msgstr/) { + $unused =3D 1; + } + if ($msgstr && /".+"/) { + $empty =3D 0; + } + push @block, $_; + } +} + +if (@block && !$empty && !$unused) { + print @block; +} diff --git a/po/Makefile.am b/po/Makefile.am index d66aec7..729de3f 100644 --- a/po/Makefile.am +++ b/po/Makefile.am @@ -20,6 +20,8 @@ POTFILE :=3D $(srcdir)/$(DOMAIN).pot POFILES :=3D $(LANGS:%=3D$(srcdir)/%.po) GMOFILES :=3D $(LANGS:%=3D$(srcdir)/%.gmo) =20 +MAINTAINERCLEANFILES =3D $(POTFILE) $(POFILES) $(GMOFILES) + EXTRA_DIST =3D \ POTFILES \ $(POTFILE) \ @@ -46,26 +48,26 @@ SED_PO_FIXUP_ARGS =3D \ -e "s|Copyright (C) YEAR|Copyright (C) $$(date +'%Y')|" \ $(NULL) =20 - -# Although they're in EXTRA_DIST, we still need to -# copy these again, because update-gmo will change -# their content, and dist-hook runs after the -# things in EXTRA_DIST are copied. -dist-hook: $(GMOFILES) - cp -f $(POTFILE) $(distdir)/ - cp -f $(POFILES) $(distdir)/ - cp -f $(GMOFILES) $(distdir)/ - update-po: $(POFILES) =20 update-gmo: $(GMOFILES) =20 +update-mini-po: $(POTFILE) + for lang in $(LANGS); do \ + echo "Minimizing $$lang content" && \ + $(MSGMERGE) --no-location --no-fuzzy-matching --sort-output \ + $(srcdir)/$$lang.po $(POTFILE) | \ + $(SED) $(SED_PO_FIXUP_ARGS) | \ + $(PERL) $(top_srcdir)/build-aux/minimize-po.pl > \ + $(srcdir)/$$lang.mini.po ; \ + done + push-pot: $(POTFILE) zanata push --push-type=3Dsource =20 pull-po: $(POTFILE) zanata pull --create-skeletons - $(MAKE) update-po + $(MAKE) update-mini-po $(MAKE) update-gmo =20 $(POTFILE): POTFILES $(POTFILE_DEPS) @@ -74,8 +76,9 @@ $(POTFILE): POTFILES $(POTFILE_DEPS) $(SED) $(SED_PO_FIXUP_ARGS) < $@-t > $@ rm -f $@-t =20 -%.po: $(POTFILE) - $(MSGMERGE) --backup=3Doff --no-fuzzy-matching --update $@ $(POTFILE) +$(srcdir)/%.po: $(srcdir)/%.mini.po $(POTFILE) + $(MSGMERGE) --no-fuzzy-matching $< $(POTFILE) | \ + $(SED) $(SED_PO_FIXUP_ARGS) > $@ =20 $(srcdir)/%.gmo: $(srcdir)/%.po rm -f $@ $@-t diff --git a/po/README.md b/po/README.md index 8cbccf8..a7ba98a 100644 --- a/po/README.md +++ b/po/README.md @@ -7,18 +7,39 @@ and file formats, in combination with the Zanata web serv= ice. Source repository =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =20 -The libvirt-glib GIT repository stores the master "libvirt-glib.pot" file = and -full "po" files for translations. The master "libvirt-glib.pot" file can be -re-generated using +The libvirt-glib GIT repository does NOT store the master "libvirt-glib.po= t" +file, nor does it store full "po" files for translations. The master +"libvirt-glib.pot" file can be generated at any time using =20 make libvirt-glib.pot =20 -The full po files can have their source locations and msgids updated using +The translations are kept in minimized files that are the same file format +as normal po files but with all redundant information stripped and messages +re-ordered. The key differences between the ".mini.po" files in GIT and the +full ".po" files are + + - msgids with no current translation are omitted + - msgids are sorted in alphabetical order not source file order + - msgids with a msgstr marked "fuzzy" are discarded + - source file locations are omitted + +The full po files can be created at any time using =20 make update-po =20 -Normally these updates are only done when either refreshing translations f= rom -Zanata, or when creating a new release. +This merges the "libvirt-glib.pot" with the "$LANG.mini.po" for each langu= age, +to create the "$LANG.po" files. These are included in the release archives +created by "make dist". + +When a full po file is updated, changes can be propagated back into the +minimized po files using + + make update-mini-po + +Note, however, that this is generally not something that should be run by +developers normally, as it is triggered by 'make pull-po' when refreshing +content from Zanata. + =20 Zanata web service =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D @@ -30,9 +51,26 @@ translation team using the Zanata web service: =20 As such, changes to translations will generally NOT be accepted as patches directly to libvirt-glib GIT. Any changes made to "$LANG.mini.po" files in -libvirt-glib GIT will be overwritten and lost the next time content is imp= orted -from Zanata. +libvirt-glib GIT will be overwritten and lost the next time content is +imported from Zanata. =20 The master "libvirt-glib.pot" file is periodically pushed to Zanata to pro= vide -the translation team with content changes. New translated text is then -periodically pulled down from Zanata to update the po files. +the translation team with content changes, using + + make push-pot + +New translated text is then periodically pulled down from Zanata to update= the +minimized po files, using + + make pull-po + +Sometimes the translators make mistakes, most commonly with handling printf +format specifiers. The "pull-po" command re-generates the .gmo files to tr= y to +identify such mistakes. If a mistake is made, the broken msgstr should be +deleted in the local "$LANG.mini.po" file, and the Zanata web interface us= ed +to reject the translation so that the broken msgstr isn't pulled down next= time. + +After pulling down new content the diff should be examined to look for any +obvious mistakes that are not caught automatically. There have been bugs in +Zanata tools which caused messges to go missing, so pay particular attenti= on to +diffs showing deletions where the msgid still exists in libvirt-glib.pot --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550843654693843.3753567157393; Fri, 22 Feb 2019 05:54:14 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D717B30A7C9A; Fri, 22 Feb 2019 13:54:12 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id AE82C5D719; Fri, 22 Feb 2019 13:54:12 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 5EDC8181A00B; Fri, 22 Feb 2019 13:54:12 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHoVf1019993 for ; Wed, 20 Feb 2019 12:50:31 -0500 Received: by smtp.corp.redhat.com (Postfix) id 20E75607CB; Wed, 20 Feb 2019 17:50:31 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id C0494607D6; Wed, 20 Feb 2019 17:50:27 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:08 +0000 Message-Id: <20190220174918.24379-6-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 05/15] po: minimize af am anp ar as ast bal be bg bn_IN X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.40]); Fri, 22 Feb 2019 13:54:13 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/af.mini.po | 20 ++++++ po/af.po | 153 ---------------------------------------------- po/am.mini.po | 20 ++++++ po/am.po | 153 ---------------------------------------------- po/anp.mini.po | 19 ++++++ po/anp.po | 152 ---------------------------------------------- po/ar.mini.po | 21 +++++++ po/ar.po | 154 ----------------------------------------------- po/as.mini.po | 20 ++++++ po/as.po | 153 ---------------------------------------------- po/ast.mini.po | 20 ++++++ po/ast.po | 153 ---------------------------------------------- po/bal.mini.po | 20 ++++++ po/bal.po | 153 ---------------------------------------------- po/be.mini.po | 21 +++++++ po/be.po | 154 ----------------------------------------------- po/bg.mini.po | 20 ++++++ po/bg.po | 153 ---------------------------------------------- po/bn_IN.mini.po | 20 ++++++ po/bn_IN.po | 153 ---------------------------------------------- 20 files changed, 201 insertions(+), 1531 deletions(-) create mode 100644 po/af.mini.po delete mode 100644 po/af.po create mode 100644 po/am.mini.po delete mode 100644 po/am.po create mode 100644 po/anp.mini.po delete mode 100644 po/anp.po create mode 100644 po/ar.mini.po delete mode 100644 po/ar.po create mode 100644 po/as.mini.po delete mode 100644 po/as.po create mode 100644 po/ast.mini.po delete mode 100644 po/ast.po create mode 100644 po/bal.mini.po delete mode 100644 po/bal.po create mode 100644 po/be.mini.po delete mode 100644 po/be.po create mode 100644 po/bg.mini.po delete mode 100644 po/bg.po create mode 100644 po/bn_IN.mini.po delete mode 100644 po/bn_IN.po diff --git a/po/af.mini.po b/po/af.mini.po new file mode 100644 index 0000000..4e27273 --- /dev/null +++ b/po/af.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Afrikaans (http://www.transifex.com/projects/p/libvirt-gli= b/" +"language/af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/af.po b/po/af.po deleted file mode 100644 index 9dd2a27..0000000 --- a/po/af.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/libvirt-gli= b/" -"language/af/)\n" -"Language: af\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/am.mini.po b/po/am.mini.po new file mode 100644 index 0000000..1f584bf --- /dev/null +++ b/po/am.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Amharic (http://www.transifex.com/projects/p/libvirt-glib/" +"language/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/am.po b/po/am.po deleted file mode 100644 index 2cccccb..0000000 --- a/po/am.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Amharic (http://www.transifex.com/projects/p/libvirt-glib/" -"language/am/)\n" -"Language: am\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/anp.mini.po b/po/anp.mini.po new file mode 100644 index 0000000..0620c42 --- /dev/null +++ b/po/anp.mini.po @@ -0,0 +1,19 @@ +# Libvirt package strings. +# Copyright (C) 2019 The Libvirt authors +# This file is distributed under the same license as the libvirt-glib pack= age. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: Angika\n" +"Language: anp\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1)\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/anp.po b/po/anp.po deleted file mode 100644 index 2cc1fe5..0000000 --- a/po/anp.po +++ /dev/null @@ -1,152 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: libvirt-glib\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Angika\n" -"Language: anp\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1)\n" -"X-Generator: Zanata 3.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ar.mini.po b/po/ar.mini.po new file mode 100644 index 0000000..d853550 --- /dev/null +++ b/po/ar.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Arabic (http://www.transifex.com/projects/p/libvirt-glib/" +"language/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D6; plural=3Dn=3D=3D0 ? 0 : n=3D=3D1 ? 1 : n=3D= =3D2 ? 2 : n%100>=3D3 " +"&& n%100<=3D10 ? 3 : n%100>=3D11 && n%100<=3D99 ? 4 : 5;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ar.po b/po/ar.po deleted file mode 100644 index d6541cb..0000000 --- a/po/ar.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/libvirt-glib/" -"language/ar/)\n" -"Language: ar\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D6; plural=3Dn=3D=3D0 ? 0 : n=3D=3D1 ? 1 : n=3D= =3D2 ? 2 : n%100>=3D3 " -"&& n%100<=3D10 ? 3 : n%100>=3D11 && n%100<=3D99 ? 4 : 5;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/as.mini.po b/po/as.mini.po new file mode 100644 index 0000000..238ab6d --- /dev/null +++ b/po/as.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Assamese (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/as/)\n" +"Language: as\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/as.po b/po/as.po deleted file mode 100644 index 5eae6b4..0000000 --- a/po/as.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Assamese (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/as/)\n" -"Language: as\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ast.mini.po b/po/ast.mini.po new file mode 100644 index 0000000..0592d9c --- /dev/null +++ b/po/ast.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Asturian (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/ast/)\n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ast.po b/po/ast.po deleted file mode 100644 index 2ccc1a3..0000000 --- a/po/ast.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Asturian (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/ast/)\n" -"Language: ast\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/bal.mini.po b/po/bal.mini.po new file mode 100644 index 0000000..e2c0d70 --- /dev/null +++ b/po/bal.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Balochi (http://www.transifex.com/projects/p/libvirt-glib/" +"language/bal/)\n" +"Language: bal\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/bal.po b/po/bal.po deleted file mode 100644 index 7a0b0fd..0000000 --- a/po/bal.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Balochi (http://www.transifex.com/projects/p/libvirt-glib/" -"language/bal/)\n" -"Language: bal\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/be.mini.po b/po/be.mini.po new file mode 100644 index 0000000..2afca49 --- /dev/null +++ b/po/be.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Belarusian (http://www.transifex.com/projects/p/libvirt-gl= ib/" +"language/be/)\n" +"Language: be\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D4; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" +"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/be.po b/po/be.po deleted file mode 100644 index d6815a5..0000000 --- a/po/be.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Belarusian (http://www.transifex.com/projects/p/libvirt-gl= ib/" -"language/be/)\n" -"Language: be\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D4; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" -"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/bg.mini.po b/po/bg.mini.po new file mode 100644 index 0000000..e30edb9 --- /dev/null +++ b/po/bg.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Bulgarian (http://www.transifex.com/projects/p/libvirt-gli= b/" +"language/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/bg.po b/po/bg.po deleted file mode 100644 index 5c4a4ab..0000000 --- a/po/bg.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Bulgarian (http://www.transifex.com/projects/p/libvirt-gli= b/" -"language/bg/)\n" -"Language: bg\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/bn_IN.mini.po b/po/bn_IN.mini.po new file mode 100644 index 0000000..b882a40 --- /dev/null +++ b/po/bn_IN.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/libvi= rt-" +"glib/language/bn_IN/)\n" +"Language: bn_IN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/bn_IN.po b/po/bn_IN.po deleted file mode 100644 index 672cc19..0000000 --- a/po/bn_IN.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/libvi= rt-" -"glib/language/bn_IN/)\n" -"Language: bn_IN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 155068504019687.21686677698972; Wed, 20 Feb 2019 09:50:40 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B3ED1DF12B; Wed, 20 Feb 2019 17:50:37 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5164565305; Wed, 20 Feb 2019 17:50:36 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id E576A3FAF6; Wed, 20 Feb 2019 17:50:35 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHoXsp020006 for ; Wed, 20 Feb 2019 12:50:33 -0500 Received: by smtp.corp.redhat.com (Postfix) id E1F7D4DC56; Wed, 20 Feb 2019 17:50:33 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7F142607DB; Wed, 20 Feb 2019 17:50:31 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:09 +0000 Message-Id: <20190220174918.24379-7-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 06/15] po: minimize bn bo br brx bs ca cs cy da de_CH X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Wed, 20 Feb 2019 17:50:38 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/bn.mini.po | 20 +++++ po/bn.po | 153 ------------------------------------- po/bo.mini.po | 20 +++++ po/bo.po | 153 ------------------------------------- po/br.mini.po | 20 +++++ po/br.po | 153 ------------------------------------- po/brx.mini.po | 20 +++++ po/brx.po | 153 ------------------------------------- po/bs.mini.po | 21 ++++++ po/bs.po | 154 -------------------------------------- po/{ca.po =3D> ca.mini.po} | 152 ++++++++++++++----------------------- po/{cs.po =3D> cs.mini.po} | 158 +++++++++++++++------------------------ po/cy.mini.po | 21 ++++++ po/cy.po | 154 -------------------------------------- po/da.mini.po | 20 +++++ po/da.po | 153 ------------------------------------- po/de_CH.mini.po | 20 +++++ po/de_CH.po | 153 ------------------------------------- 18 files changed, 281 insertions(+), 1417 deletions(-) create mode 100644 po/bn.mini.po delete mode 100644 po/bn.po create mode 100644 po/bo.mini.po delete mode 100644 po/bo.po create mode 100644 po/br.mini.po delete mode 100644 po/br.po create mode 100644 po/brx.mini.po delete mode 100644 po/brx.po create mode 100644 po/bs.mini.po delete mode 100644 po/bs.po rename po/{ca.po =3D> ca.mini.po} (62%) rename po/{cs.po =3D> cs.mini.po} (57%) create mode 100644 po/cy.mini.po delete mode 100644 po/cy.po create mode 100644 po/da.mini.po delete mode 100644 po/da.po create mode 100644 po/de_CH.mini.po delete mode 100644 po/de_CH.po diff --git a/po/bn.mini.po b/po/bn.mini.po new file mode 100644 index 0000000..3657a5c --- /dev/null +++ b/po/bn.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Bengali (http://www.transifex.com/projects/p/libvirt-glib/" +"language/bn/)\n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/bn.po b/po/bn.po deleted file mode 100644 index b08bf7d..0000000 --- a/po/bn.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Bengali (http://www.transifex.com/projects/p/libvirt-glib/" -"language/bn/)\n" -"Language: bn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/bo.mini.po b/po/bo.mini.po new file mode 100644 index 0000000..de6a227 --- /dev/null +++ b/po/bo.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Tibetan (http://www.transifex.com/projects/p/libvirt-glib/" +"language/bo/)\n" +"Language: bo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/bo.po b/po/bo.po deleted file mode 100644 index 7e69539..0000000 --- a/po/bo.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Tibetan (http://www.transifex.com/projects/p/libvirt-glib/" -"language/bo/)\n" -"Language: bo\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/br.mini.po b/po/br.mini.po new file mode 100644 index 0000000..a260156 --- /dev/null +++ b/po/br.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Breton (http://www.transifex.com/projects/p/libvirt-glib/" +"language/br/)\n" +"Language: br\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/br.po b/po/br.po deleted file mode 100644 index b199030..0000000 --- a/po/br.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Breton (http://www.transifex.com/projects/p/libvirt-glib/" -"language/br/)\n" -"Language: br\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/brx.mini.po b/po/brx.mini.po new file mode 100644 index 0000000..bd16b63 --- /dev/null +++ b/po/brx.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Bodo (http://www.transifex.com/projects/p/libvirt-glib/" +"language/brx/)\n" +"Language: brx\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/brx.po b/po/brx.po deleted file mode 100644 index c073eaf..0000000 --- a/po/brx.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Bodo (http://www.transifex.com/projects/p/libvirt-glib/" -"language/brx/)\n" -"Language: brx\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/bs.mini.po b/po/bs.mini.po new file mode 100644 index 0000000..aa50cdf --- /dev/null +++ b/po/bs.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:19+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Bosnian (http://www.transifex.com/projects/p/libvirt-glib/" +"language/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" +"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/bs.po b/po/bs.po deleted file mode 100644 index 4133fbf..0000000 --- a/po/bs.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:19+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Bosnian (http://www.transifex.com/projects/p/libvirt-glib/" -"language/bs/)\n" -"Language: bs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" -"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ca.po b/po/ca.mini.po similarity index 62% rename from po/ca.po rename to po/ca.mini.po index 0f31d2c..b4aa2df 100644 --- a/po/ca.po +++ b/po/ca.mini.po @@ -1,5 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: @@ -8,9 +8,9 @@ # Robert Antoni Buj Gelonch , 2017. #zanata msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" "PO-Revision-Date: 2017-12-17 03:08+0000\n" "Last-Translator: Robert Antoni Buj Gelonch \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/libvirt-glib/" @@ -22,137 +22,101 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "Cap document XML per analitzar sint=C3=A0cticament" +#, c-format +msgid "Connection %s is already open" +msgstr "La connexi=C3=B3 %s ja est=C3=A0 oberta" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "No es pot analitzar sint=C3=A0cticament" +msgid "Connection is not open" +msgstr "La connexi=C3=B3 no =C3=A9s oberta" + +msgid "Connection is not opened" +msgstr "La connexi=C3=B3 no est=C3=A0 oberta" + +msgid "Failed to create domain" +msgstr "La creaci=C3=B3 del domini ha fallat" + +msgid "Failed to create storage pool" +msgstr "La creaci=C3=B3 de la reserva de l'emmagatzematge ha fallat" + +msgid "Failed to fetch list of domains" +msgstr "No s'ha pogut capturar la llista dels dominis" + +msgid "Failed to fetch list of interfaces" +msgstr "No s'ha pogut capturar la llista de les interf=C3=ADcies" + +msgid "Failed to fetch list of networks" +msgstr "No s'ha pogut capturar la llista de les xarxes" + +msgid "Failed to fetch list of pools" +msgstr "No s'ha pogut capturar la llista de les reserves" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "Les dades del XML no tenen cap node =C2=AB%s=C2=BB" +msgid "Got virStreamRecv error in %s" +msgstr "Es va obtenir un error en virStreamRecv a %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "" "Cap document XML que estigui associat amb aquest objecte de configuraci= =C3=B3" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 +msgid "No XML document to parse" +msgstr "Cap document XML per analitzar sint=C3=A0cticament" + msgid "No XML schema associated with this config object" msgstr "" "Cap esquema XML que estigui associat amb aquest objecte de configuraci=C3= =B3" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "No es pot crear l'analitzador sint=C3=A0ctic RNG per %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "No es pot analitzar sint=C3=A0cticament el RNG %s" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "No es pot crear la validaci=C3=B3 del context del RNG %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "No es pot validar el document" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "La connexi=C3=B3 %s ja est=C3=A0 oberta" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "No es pot obrir %s" +msgid "Unable to get capabilities" +msgstr "No es poden obtenir les capacitats" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "No es pot obtenir la URI de la connexi=C3=B3" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "La connexi=C3=B3 no =C3=A9s oberta" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "No s'ha pogut capturar la llista dels dominis" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "No s'ha pogut capturar la llista de les reserves" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "La connexi=C3=B3 no est=C3=A0 oberta" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "No es pot obtenir el nom de l'hipervisor" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "No es pot obtenir la versi=C3=B3 de l'hipervisor" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "La creaci=C3=B3 del domini ha fallat" +msgid "Unable to get node info" +msgstr "No es pot obtenir la informaci=C3=B3 del node" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "No s'ha pogut capturar la llista de les interf=C3=ADcies" +#, c-format +msgid "Unable to open %s" +msgstr "No es pot obrir %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "No s'ha pogut capturar la llista de les xarxes" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "No es pot analitzar sint=C3=A0cticament el RNG %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "La creaci=C3=B3 de la reserva de l'emmagatzematge ha fallat" +msgid "Unable to parse configuration" +msgstr "No es pot analitzar sint=C3=A0cticament" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "No es pot obtenir la informaci=C3=B3 del node" +msgid "Unable to perform RecvAll" +msgstr "No es pot realitzar RecvAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "No es poden obtenir les capacitats" +msgid "Unable to perform SendAll" +msgstr "No es pot realitzar SendAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "No es pot restaurar el domini" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "La crida a virStreamRecv podria bloquejar" +msgid "Unable to validate doc" +msgstr "No es pot validar el document" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "Es va obtenir un error en virStreamRecv a %s" +msgid "XML data has no '%s' node" +msgstr "Les dades del XML no tenen cap node =C2=AB%s=C2=BB" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "No es pot realitzar RecvAll" +msgid "virStreamRecv call would block" +msgstr "La crida a virStreamRecv podria bloquejar" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "La crida a virStreamSend podria bloquejar" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "No es pot realitzar SendAll" diff --git a/po/cs.po b/po/cs.mini.po similarity index 57% rename from po/cs.po rename to po/cs.mini.po index f87f49e..35389e7 100644 --- a/po/cs.po +++ b/po/cs.mini.po @@ -1,17 +1,17 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Zdenek , 2016. #zanata -# Zdenek , 2018. #zanata +# Pavel Borecki , 2018. #zanata msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2018-02-21 11:08+0000\n" -"Last-Translator: Zdenek \n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2018-11-27 06:44+0000\n" +"Last-Translator: Pavel Borecki \n" "Language-Team: Czech (http://www.transifex.com/projects/p/libvirt-glib/" "language/cs/)\n" "Language: cs\n" @@ -21,135 +21,99 @@ msgstr "" "Plural-Forms: nplurals=3D3; plural=3D(n=3D=3D1) ? 0 : (n>=3D2 && n<=3D4) = ? 1 : 2;\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "=C5=BD=C3=A1dn=C3=BD XML dokument k parsov=C3=A1n=C3=AD" +#, c-format +msgid "Connection %s is already open" +msgstr "Spojen=C3=AD %s je ji=C5=BE nav=C3=A1z=C3=A1no" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "Nelze parsovat konfiguraci" +msgid "Connection is not open" +msgstr "Spojen=C3=AD nen=C3=AD nav=C3=A1z=C3=A1no" + +msgid "Connection is not opened" +msgstr "Spojen=C3=AD nen=C3=AD nav=C3=A1z=C3=A1no" + +msgid "Failed to create domain" +msgstr "Nepoda=C5=99ilo se vytvo=C5=99it dom=C3=A9nu" + +msgid "Failed to create storage pool" +msgstr "Nepoda=C5=99ilo se vytvo=C5=99it =C3=BAlo=C5=BEn=C3=BD prostor" + +msgid "Failed to fetch list of domains" +msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam dom=C3=A9no " + +msgid "Failed to fetch list of interfaces" +msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam rozhran=C3=AD" + +msgid "Failed to fetch list of networks" +msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam s=C3=ADt=C3=AD" + +msgid "Failed to fetch list of pools" +msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam =C3=BAlo=C5=BEi=C5=A1= =C5=A5" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "XML data nemaj=C3=AD uzel '%s'" +msgid "Got virStreamRecv error in %s" +msgstr "M=C3=A1 chybu virStreamRecv v %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "=C5=BD=C3=A1dn=C3=BD XML dokument nen=C3=AD asociov=C3=A1n s t=C3= =ADmto konfigura=C4=8Dn=C3=ADm objektem" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 +msgid "No XML document to parse" +msgstr "=C5=BD=C3=A1dn=C3=BD XML dokument k parsov=C3=A1n=C3=AD" + msgid "No XML schema associated with this config object" msgstr "=C5=BD=C3=A1dn=C3=A9 XML sch=C3=A9ma nen=C3=AD spojeno s t=C3=ADmt= o konfigura=C4=8Dn=C3=ADm objektem" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "Nelze vytvo=C5=99it RNG parser pro %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "Nelze parsovat RNG %s" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "Nelze vytvo=C5=99it ov=C4=9B=C5=99en=C3=AD kontextu RNG %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "Nelze ov=C4=9B=C5=99it dokument" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "Spojen=C3=AD %s je ji=C5=BE nav=C3=A1z=C3=A1no" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "Nelze otev=C5=99=C3=ADt %s" +msgid "Unable to get capabilities" +msgstr "Nepoda=C5=99ilo se z=C3=ADskat schopnosti" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "Nelze z=C3=ADskat URI p=C5=99ipojen=C3=AD" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "Spojen=C3=AD nen=C3=AD nav=C3=A1z=C3=A1no" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam dom=C3=A9no " - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam =C3=BAlo=C5=BEi=C5=A1= =C5=A5" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "Spojen=C3=AD nen=C3=AD nav=C3=A1z=C3=A1no" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "Nezda=C5=99ilo se z=C3=ADskat n=C3=A1zev hypervisoru" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "Nepoda=C5=99ilo se z=C3=ADskat verzi hypervizora" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "Nepoda=C5=99ilo se vytvo=C5=99it dom=C3=A9nu" +msgid "Unable to get node info" +msgstr "Nepoda=C5=99ilo se z=C3=ADskat informace o uzlu" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam rozhran=C3=AD" +#, c-format +msgid "Unable to open %s" +msgstr "Nelze otev=C5=99=C3=ADt %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam s=C3=ADt=C3=AD" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "Nelze parsovat RNG %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "Nepoda=C5=99ilo se vytvo=C5=99it =C3=BAlo=C5=BEn=C3=BD prostor" +msgid "Unable to parse configuration" +msgstr "Nelze parsovat konfiguraci" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "Nepoda=C5=99ilo se z=C3=ADskat informace o uzlu" +msgid "Unable to perform RecvAll" +msgstr "Nepoda=C5=99ilo se prov=C3=A9st RecvAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "Nepoda=C5=99ilo se z=C3=ADskat schopnosti" +msgid "Unable to perform SendAll" +msgstr "Nepoda=C5=99ilo se prov=C3=A9st SendAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "Nepoda=C5=99ilo se obnovit dom=C3=A9nu" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "Vol=C3=A1n=C3=AD virStreamRecv by blokovalo" +msgid "Unable to validate doc" +msgstr "Nelze ov=C4=9B=C5=99it dokument" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "M=C3=A1 chybu virStreamRecv v %s" +msgid "XML data has no '%s' node" +msgstr "XML data nemaj=C3=AD uzel '%s'" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "Nepoda=C5=99ilo se prov=C3=A9st RecvAll" +msgid "virStreamRecv call would block" +msgstr "Vol=C3=A1n=C3=AD virStreamRecv by blokovalo" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "Vol=C3=A1n=C3=AD virStreamSend by blokovalo" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "Nepoda=C5=99ilo se prov=C3=A9st SendAll" diff --git a/po/cy.mini.po b/po/cy.mini.po new file mode 100644 index 0000000..2bfb3cd --- /dev/null +++ b/po/cy.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Welsh (http://www.transifex.com/projects/p/libvirt-glib/" +"language/cy/)\n" +"Language: cy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D4; plural=3D(n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (n= !=3D 8 && n !=3D " +"11) ? 2 : 3;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/cy.po b/po/cy.po deleted file mode 100644 index 90223f4..0000000 --- a/po/cy.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Welsh (http://www.transifex.com/projects/p/libvirt-glib/" -"language/cy/)\n" -"Language: cy\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D4; plural=3D(n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (n= !=3D 8 && n !=3D " -"11) ? 2 : 3;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/da.mini.po b/po/da.mini.po new file mode 100644 index 0000000..a8c77fd --- /dev/null +++ b/po/da.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Danish (http://www.transifex.com/projects/p/libvirt-glib/" +"language/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/da.po b/po/da.po deleted file mode 100644 index dd23eda..0000000 --- a/po/da.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Danish (http://www.transifex.com/projects/p/libvirt-glib/" -"language/da/)\n" -"Language: da\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/de_CH.mini.po b/po/de_CH.mini.po new file mode 100644 index 0000000..5c14532 --- /dev/null +++ b/po/de_CH.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/" +"libvirt-glib/language/de_CH/)\n" +"Language: de_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/de_CH.po b/po/de_CH.po deleted file mode 100644 index 228f1be..0000000 --- a/po/de_CH.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/" -"libvirt-glib/language/de_CH/)\n" -"Language: de_CH\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550843499067239.98458509906652; Fri, 22 Feb 2019 05:51:39 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3F9D8A96E5; Fri, 22 Feb 2019 13:51:37 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 11FC61001E99; Fri, 22 Feb 2019 13:51:37 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id BF2E824C15; Fri, 22 Feb 2019 13:51:36 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHoaeQ020019 for ; Wed, 20 Feb 2019 12:50:36 -0500 Received: by smtp.corp.redhat.com (Postfix) id 5DEBC18BA1; Wed, 20 Feb 2019 17:50:36 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 49FF618E2B; Wed, 20 Feb 2019 17:50:34 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:10 +0000 Message-Id: <20190220174918.24379-8-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 07/15] po: minimize de el en_GB eo es et eu fa fi X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Fri, 22 Feb 2019 13:51:37 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/de.mini.po | 20 +++++ po/de.po | 153 -------------------------------- po/el.mini.po | 20 +++++ po/el.po | 153 -------------------------------- po/{en_GB.po =3D> en_GB.mini.po} | 141 ++++++++++-------------------- po/eo.mini.po | 20 +++++ po/eo.po | 153 -------------------------------- po/{es.po =3D> es.mini.po} | 153 ++++++++++++-------------------- po/et.mini.po | 20 +++++ po/et.po | 153 -------------------------------- po/eu.mini.po | 20 +++++ po/eu.po | 153 -------------------------------- po/fa.mini.po | 20 +++++ po/fa.po | 153 -------------------------------- po/fi.mini.po | 44 ++++++++++ po/fi.po | 154 --------------------------------- 16 files changed, 266 insertions(+), 1264 deletions(-) create mode 100644 po/de.mini.po delete mode 100644 po/de.po create mode 100644 po/el.mini.po delete mode 100644 po/el.po rename po/{en_GB.po =3D> en_GB.mini.po} (51%) create mode 100644 po/eo.mini.po delete mode 100644 po/eo.po rename po/{es.po =3D> es.mini.po} (59%) create mode 100644 po/et.mini.po delete mode 100644 po/et.po create mode 100644 po/eu.mini.po delete mode 100644 po/eu.po create mode 100644 po/fa.mini.po delete mode 100644 po/fa.po create mode 100644 po/fi.mini.po delete mode 100644 po/fi.po diff --git a/po/de.mini.po b/po/de.mini.po new file mode 100644 index 0000000..b231b64 --- /dev/null +++ b/po/de.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: German (http://www.transifex.com/projects/p/libvirt-glib/" +"language/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/de.po b/po/de.po deleted file mode 100644 index 33b3225..0000000 --- a/po/de.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: German (http://www.transifex.com/projects/p/libvirt-glib/" -"language/de/)\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/el.mini.po b/po/el.mini.po new file mode 100644 index 0000000..3f5b89e --- /dev/null +++ b/po/el.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Greek (http://www.transifex.com/projects/p/libvirt-glib/" +"language/el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/el.po b/po/el.po deleted file mode 100644 index 1550b1b..0000000 --- a/po/el.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Greek (http://www.transifex.com/projects/p/libvirt-glib/" -"language/el/)\n" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/en_GB.po b/po/en_GB.mini.po similarity index 51% rename from po/en_GB.po rename to po/en_GB.mini.po index 7bffea2..05ff41d 100644 --- a/po/en_GB.po +++ b/po/en_GB.mini.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Robert Readman , 2013 msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" "PO-Revision-Date: 2014-12-17 12:20+0000\n" "Last-Translator: Copied by Zanata \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/project= s/p/" @@ -20,135 +20,84 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "No XML document to parse" +#, c-format +msgid "Connection %s is already open" +msgstr "Connection %s is already open" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "Unable to parse configuration" +msgid "Connection is not open" +msgstr "Connection is not open" + +msgid "Connection is not opened" +msgstr "Connection is not opened" + +msgid "Failed to create domain" +msgstr "Failed to create domain" + +msgid "Failed to create storage pool" +msgstr "Failed to create storage pool" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "XML data has no '%s' node" +msgid "Got virStreamRecv error in %s" +msgstr "Got virStreamRecv error in %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "No XML document associated with this config object" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" +msgid "No XML document to parse" +msgstr "No XML document to parse" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "Unable to create RNG parser for %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "Unable to parse RNG %s" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "Unable to create RNG validation context %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "Unable to validate doc" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "Connection %s is already open" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "Unable to open %s" +msgid "Unable to get capabilities" +msgstr "Unable to get capabilities" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "Unable to get connection URI" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "Connection is not open" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "Connection is not opened" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "Unable to get hypervisor name" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "Unable to get hypervisor version" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "Failed to create domain" +msgid "Unable to get node info" +msgstr "Unable to get node info" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" +#, c-format +msgid "Unable to open %s" +msgstr "Unable to open %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "Unable to parse RNG %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "Failed to create storage pool" +msgid "Unable to parse configuration" +msgstr "Unable to parse configuration" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "Unable to get node info" +msgid "Unable to perform RecvAll" +msgstr "Unable to perform RecvAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "Unable to get capabilities" +msgid "Unable to perform SendAll" +msgstr "Unable to perform SendAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "Unable to restore domain" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "virStreamRecv call would block" +msgid "Unable to validate doc" +msgstr "Unable to validate doc" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "Got virStreamRecv error in %s" +msgid "XML data has no '%s' node" +msgstr "XML data has no '%s' node" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "Unable to perform RecvAll" +msgid "virStreamRecv call would block" +msgstr "virStreamRecv call would block" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "virStreamSend call would block" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "Unable to perform SendAll" diff --git a/po/eo.mini.po b/po/eo.mini.po new file mode 100644 index 0000000..84fd360 --- /dev/null +++ b/po/eo.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Esperanto (http://www.transifex.com/projects/p/libvirt-gli= b/" +"language/eo/)\n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/eo.po b/po/eo.po deleted file mode 100644 index 4528217..0000000 --- a/po/eo.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Esperanto (http://www.transifex.com/projects/p/libvirt-gli= b/" -"language/eo/)\n" -"Language: eo\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/es.po b/po/es.mini.po similarity index 59% rename from po/es.po rename to po/es.mini.po index 94d9a06..c372400 100644 --- a/po/es.po +++ b/po/es.mini.po @@ -1,5 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: @@ -7,9 +7,9 @@ # M=C3=A1ximo Casta=C3=B1eda Riloba , 2016. #zanata msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" "PO-Revision-Date: 2016-08-07 06:44+0000\n" "Last-Translator: M=C3=A1ximo Casta=C3=B1eda Riloba \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/libvirt-glib/" @@ -21,136 +21,97 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "No hay ning=C3=BAn documento XML que analizar" +#, c-format +msgid "Connection %s is already open" +msgstr "La conexi=C3=B3n %s ya est=C3=A1 abierta" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "No se pudo analizar la configuraci=C3=B3n" +msgid "Connection is not open" +msgstr "La conexi=C3=B3n no est=C3=A1 abierta" + +msgid "Connection is not opened" +msgstr "La conexi=C3=B3n no est=C3=A1 abierta" + +msgid "Failed to create domain" +msgstr "Fall=C3=B3 al crear el dominio" + +msgid "Failed to create storage pool" +msgstr "Fall=C3=B3 al crear el grupo de almacenamiento" + +msgid "Failed to fetch list of domains" +msgstr "No se pudo obtener la lista de dominios" + +msgid "Failed to fetch list of interfaces" +msgstr "No se pudo obtener la lista de interfaces" + +msgid "Failed to fetch list of networks" +msgstr "No se pudo obtener la lista de redes" + +msgid "Failed to fetch list of pools" +msgstr "No se pudo obtener la lista de grupos" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "Los datos XML no tienen un nodo =C2=AB%s=C2=BB" +msgid "Got virStreamRecv error in %s" +msgstr "Se obtuvo el error virStreamRecv en %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "" "No hay ning=C3=BAn documento XML asociado con este objeto de la configura= ci=C3=B3n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" +msgid "No XML document to parse" +msgstr "No hay ning=C3=BAn documento XML que analizar" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "No se pudo crear el analizador RNG para %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "No se pudo analizar el RNG %s" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "No se pudo crear el contexto de validaci=C3=B3n de RNG %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "No se pudo validar el documento" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "La conexi=C3=B3n %s ya est=C3=A1 abierta" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "No se puede abrir %s" +msgid "Unable to get capabilities" +msgstr "No se pudieron obtener las capacidades" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "No se puede obtener el URI de la conexi=C3=B3n" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "La conexi=C3=B3n no est=C3=A1 abierta" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "No se pudo obtener la lista de dominios" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "No se pudo obtener la lista de grupos" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "La conexi=C3=B3n no est=C3=A1 abierta" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "No se puede obtener el nombre del hipervisor" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "No se puede obtener la versi=C3=B3n del hipervisor" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "Fall=C3=B3 al crear el dominio" +msgid "Unable to get node info" +msgstr "No se puede obtener la informaci=C3=B3n del nodo" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "No se pudo obtener la lista de interfaces" +#, c-format +msgid "Unable to open %s" +msgstr "No se puede abrir %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "No se pudo obtener la lista de redes" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "No se pudo analizar el RNG %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "Fall=C3=B3 al crear el grupo de almacenamiento" +msgid "Unable to parse configuration" +msgstr "No se pudo analizar la configuraci=C3=B3n" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "No se puede obtener la informaci=C3=B3n del nodo" +msgid "Unable to perform RecvAll" +msgstr "No se puede realizar RecvAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "No se pudieron obtener las capacidades" +msgid "Unable to perform SendAll" +msgstr "No se puede realizar SendAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "No se puede restaurar el dominio" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "La llamada a virStreamRecv ser=C3=ADa bloqueante" +msgid "Unable to validate doc" +msgstr "No se pudo validar el documento" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "Se obtuvo el error virStreamRecv en %s" +msgid "XML data has no '%s' node" +msgstr "Los datos XML no tienen un nodo =C2=AB%s=C2=BB" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "No se puede realizar RecvAll" +msgid "virStreamRecv call would block" +msgstr "La llamada a virStreamRecv ser=C3=ADa bloqueante" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "La llamada a virStreamSend ser=C3=ADa bloqueante" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "No se puede realizar SendAll" diff --git a/po/et.mini.po b/po/et.mini.po new file mode 100644 index 0000000..357b05c --- /dev/null +++ b/po/et.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Estonian (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/et.po b/po/et.po deleted file mode 100644 index a1c6034..0000000 --- a/po/et.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Estonian (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/et/)\n" -"Language: et\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/eu.mini.po b/po/eu.mini.po new file mode 100644 index 0000000..9960a54 --- /dev/null +++ b/po/eu.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Basque (http://www.transifex.com/projects/p/libvirt-glib/" +"language/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/eu.po b/po/eu.po deleted file mode 100644 index e732e06..0000000 --- a/po/eu.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Basque (http://www.transifex.com/projects/p/libvirt-glib/" -"language/eu/)\n" -"Language: eu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/fa.mini.po b/po/fa.mini.po new file mode 100644 index 0000000..5321a36 --- /dev/null +++ b/po/fa.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Persian (http://www.transifex.com/projects/p/libvirt-glib/" +"language/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/fa.po b/po/fa.po deleted file mode 100644 index 03a2d4c..0000000 --- a/po/fa.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Persian (http://www.transifex.com/projects/p/libvirt-glib/" -"language/fa/)\n" -"Language: fa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/fi.mini.po b/po/fi.mini.po new file mode 100644 index 0000000..b64545c --- /dev/null +++ b/po/fi.mini.po @@ -0,0 +1,44 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jiri Gr=C3=B6nroos , 2017. #zanata +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2017-03-26 10:27+0000\n" +"Last-Translator: Jiri Gr=C3=B6nroos \n" +"Language-Team: Finnish (http://www.transifex.com/projects/p/libvirt-glib/" +"language/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" + +#, c-format +msgid "Connection %s is already open" +msgstr "Yhteys %s on jo avoinna" + +msgid "Connection is not open" +msgstr "Yhteys ei ole avoinna" + +msgid "Connection is not opened" +msgstr "Yhteytt=C3=A4 ei ole avattu" + +msgid "Failed to create domain" +msgstr "Domainin luominen ep=C3=A4onnistui" + +msgid "Unable to get hypervisor name" +msgstr "Ei saatu hypervisorin nime=C3=A4" + +msgid "Unable to get hypervisor version" +msgstr "Ei saatu hypervisorin versiota" + +#, c-format +msgid "Unable to open %s" +msgstr "Ei voida avata %s" diff --git a/po/fi.po b/po/fi.po deleted file mode 100644 index 7f76620..0000000 --- a/po/fi.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jiri Gr=C3=B6nroos , 2017. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2017-03-26 10:27+0000\n" -"Last-Translator: Jiri Gr=C3=B6nroos \n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/libvirt-glib/" -"language/fi/)\n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "Yhteys %s on jo avoinna" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "Ei voida avata %s" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "Yhteys ei ole avoinna" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "Yhteytt=C3=A4 ei ole avattu" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "Ei saatu hypervisorin nime=C3=A4" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "Ei saatu hypervisorin versiota" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "Domainin luominen ep=C3=A4onnistui" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 15506850435241016.6558851266785; Wed, 20 Feb 2019 09:50:43 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B406AC12FD45; Wed, 20 Feb 2019 17:50:40 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4DE7761080; Wed, 20 Feb 2019 17:50:40 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 0A1AF3FA48; Wed, 20 Feb 2019 17:50:40 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHocB5020032 for ; Wed, 20 Feb 2019 12:50:38 -0500 Received: by smtp.corp.redhat.com (Postfix) id 9C59D4F9A1; Wed, 20 Feb 2019 17:50:38 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id E7F3A4DC56; Wed, 20 Feb 2019 17:50:36 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:11 +0000 Message-Id: <20190220174918.24379-9-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 08/15] po: minimize fr gl gu he hi hr hu ia X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Wed, 20 Feb 2019 17:50:41 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/{fr.po =3D> fr.mini.po} | 156 +++++++++++++++------------------------ po/gl.mini.po | 20 +++++ po/gl.po | 153 -------------------------------------- po/gu.mini.po | 20 +++++ po/gu.po | 153 -------------------------------------- po/he.mini.po | 20 +++++ po/he.po | 153 -------------------------------------- po/{hi.po =3D> hi.mini.po} | 141 +++++++++++------------------------ po/hr.mini.po | 21 ++++++ po/hr.po | 154 -------------------------------------- po/hu.mini.po | 20 +++++ po/hu.po | 153 -------------------------------------- po/ia.mini.po | 20 +++++ po/ia.po | 153 -------------------------------------- 14 files changed, 225 insertions(+), 1112 deletions(-) rename po/{fr.po =3D> fr.mini.po} (58%) create mode 100644 po/gl.mini.po delete mode 100644 po/gl.po create mode 100644 po/gu.mini.po delete mode 100644 po/gu.po create mode 100644 po/he.mini.po delete mode 100644 po/he.po rename po/{hi.po =3D> hi.mini.po} (62%) create mode 100644 po/hr.mini.po delete mode 100644 po/hr.po create mode 100644 po/hu.mini.po delete mode 100644 po/hu.po create mode 100644 po/ia.mini.po delete mode 100644 po/ia.po diff --git a/po/fr.po b/po/fr.mini.po similarity index 58% rename from po/fr.po rename to po/fr.mini.po index f5a8978..c61b518 100644 --- a/po/fr.po +++ b/po/fr.mini.po @@ -1,16 +1,17 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # J=C3=A9r=C3=B4me Fenal , 2013 # Jean-Baptiste Holcroft , 2016. #zanata +# Jean-Baptiste Holcroft , 2019. #zanata msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2016-07-15 05:10+0000\n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2019-01-21 08:05+0000\n" "Last-Translator: Jean-Baptiste Holcroft \n" "Language-Team: French (http://www.transifex.com/projects/p/libvirt-glib/" "language/fr/)\n" @@ -21,135 +22,96 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "Aucun document XML =C3=A0 analyser" +#, c-format +msgid "Connection %s is already open" +msgstr "La connexion %s est d=C3=A9j=C3=A0 ouverte" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "Impossible d'analyser la configuration" +msgid "Connection is not open" +msgstr "La connexion n'est pas ouverte" + +msgid "Connection is not opened" +msgstr "La connexion n'est pas ouverte" + +msgid "Failed to create domain" +msgstr "=C3=89chec de la cr=C3=A9ation du domaine" + +msgid "Failed to create storage pool" +msgstr "=C3=89chec de la cr=C3=A9ation du pool de stockage" + +msgid "Failed to fetch list of domains" +msgstr "Impossible de r=C3=A9cup=C3=A9rer la liste des domaines" + +msgid "Failed to fetch list of interfaces" +msgstr "Impossible de r=C3=A9cup=C3=A9rer la liste des interfaces" + +msgid "Failed to fetch list of networks" +msgstr "Impossible de r=C3=A9cup=C3=A9rer la liste des r=C3=A9seaux" + +msgid "Failed to fetch list of pools" +msgstr "Impossible de r=C3=A9cup=C3=A9rer la liste des pools" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "Les donn=C3=A9es XML n'ont pas de n=C5=93ud =C2=AB=C2=A0%s=C2=A0= =C2=BB" +msgid "Got virStreamRecv error in %s" +msgstr "Erreur virStreamRecv survenue dans %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "Aucun document XML associ=C3=A9 avec cet objet de configuration" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" +msgid "No XML document to parse" +msgstr "Aucun document XML =C3=A0 analyser" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "Impossible de cr=C3=A9er l'analyseur RNG pour %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "Impossible d'analyser le RNG %s" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "Impossible de cr=C3=A9er un contexte de validation RNG %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "Impossible de valider le document" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "La connexion %s est d=C3=A9j=C3=A0 ouverte" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "Impossible d'ouvrir %s" +msgid "Unable to get capabilities" +msgstr "Impossible d'obtenir les capacit=C3=A9s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "Impossible d'obtenir l'URI de connexion" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "La connexion n'est pas ouverte" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "Impossible de r=C3=A9cup=C3=A9rer la liste des domaines" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "Impossible de r=C3=A9cup=C3=A9rer la liste des pools" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "La connexion n'est pas ouverte" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "Impossible d'obtenir le nom de l'hyperviseur" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "Impossible d'obtenir la version de l'hyperviseur" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "=C3=89chec de la cr=C3=A9ation du domaine" +msgid "Unable to get node info" +msgstr "Impossible d'obtenir les informations sur le n=C5=93ud" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "Impossible de r=C3=A9cup=C3=A9rer la liste des interfaces" +#, c-format +msgid "Unable to open %s" +msgstr "Impossible d'ouvrir %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "Impossible de r=C3=A9cup=C3=A9rer la liste des r=C3=A9seaux" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "Impossible d'analyser le RNG %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "=C3=89chec de la cr=C3=A9ation du pool de stockage" +msgid "Unable to parse configuration" +msgstr "Impossible d'analyser la configuration" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "Impossible d'obtenir les informations sur le n=C5=93ud" +msgid "Unable to perform RecvAll" +msgstr "Impossible d'ex=C3=A9cuter RecvAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "Impossible d'obtenir les capacit=C3=A9s" +msgid "Unable to perform SendAll" +msgstr "Impossible d'ex=C3=A9cuter SendAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "Impossible de restaurer le domaine" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "L'appel =C3=A0 virStreamRecv serait bloquant" +msgid "Unable to validate doc" +msgstr "Impossible de valider le document" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "Erreur virStreamRecv survenue dans %s" +msgid "XML data has no '%s' node" +msgstr "Les donn=C3=A9es XML n'ont pas de n=C5=93ud =C2=AB=C2=A0%s=C2=A0= =C2=BB" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "Impossible d'ex=C3=A9cuter RecvAll" +msgid "virStreamRecv call would block" +msgstr "L'appel =C3=A0 virStreamRecv serait bloquant" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "L'appel =C3=A0 virStreamSend serait bloquant" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "Impossible d'ex=C3=A9cuter SendAll" diff --git a/po/gl.mini.po b/po/gl.mini.po new file mode 100644 index 0000000..93f07d2 --- /dev/null +++ b/po/gl.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Galician (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/gl.po b/po/gl.po deleted file mode 100644 index c077303..0000000 --- a/po/gl.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Galician (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/gl/)\n" -"Language: gl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/gu.mini.po b/po/gu.mini.po new file mode 100644 index 0000000..e6b5802 --- /dev/null +++ b/po/gu.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Gujarati (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/gu/)\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/gu.po b/po/gu.po deleted file mode 100644 index f859c06..0000000 --- a/po/gu.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Gujarati (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/gu/)\n" -"Language: gu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/he.mini.po b/po/he.mini.po new file mode 100644 index 0000000..c31820b --- /dev/null +++ b/po/he.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Hebrew (http://www.transifex.com/projects/p/libvirt-glib/" +"language/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/he.po b/po/he.po deleted file mode 100644 index 036847b..0000000 --- a/po/he.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Hebrew (http://www.transifex.com/projects/p/libvirt-glib/" -"language/he/)\n" -"Language: he\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/hi.po b/po/hi.mini.po similarity index 62% rename from po/hi.po rename to po/hi.mini.po index 67e2db8..62da10e 100644 --- a/po/hi.po +++ b/po/hi.mini.po @@ -1,5 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: @@ -7,9 +7,9 @@ # Rajesh Ranjan , 2014 msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" "PO-Revision-Date: 2014-12-17 12:20+0000\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/libvirt-glib/" @@ -21,135 +21,84 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "=E0=A4=B5=E0=A4=BF=E0=A4=B6=E0=A5=8D=E0=A4=B2=E0=A5=87=E0=A4=B7=E0= =A4=A3 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=95=E0=A5=87 =E0=A4=B2=E0= =A4=BF=E0=A4=8F =E0=A4=95=E0=A5=8B=E0=A4=88 XML =E0=A4=A6=E0=A4=B8=E0=A5=8D= =E0=A4=A4=E0=A4=BE=E0=A4=B5=E0=A5=87=E0=A4=9C=E0=A4=BC =E0=A4=89=E0=A4=AA= =E0=A4=B2=E0=A5=8D=E0=A4=AC=E0=A4=A7 =E0=A4=A8=E0=A4=B9=E0=A5=80=E0=A4=82 " +#, c-format +msgid "Connection %s is already open" +msgstr "=E0=A4=95=E0=A4=A8=E0=A5=87=E0=A4=95=E0=A5=8D=E0=A4=B6=E0=A4=A8 %s= =E0=A4=AA=E0=A4=B9=E0=A4=B2=E0=A5=87 =E0=A4=B8=E0=A5=87 =E0=A4=B9=E0=A5=80= =E0=A4=96=E0=A5=81=E0=A4=B2=E0=A4=BE =E0=A4=B9=E0=A5=88" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "=E0=A4=B5=E0=A4=BF=E0=A4=A8=E0=A5=8D=E0=A4=AF=E0=A4=BE=E0=A4=B8 = =E0=A4=95=E0=A5=87 =E0=A4=B5=E0=A4=BF=E0=A4=B6=E0=A5=8D=E0=A4=B2=E0=A5=87= =E0=A4=B7=E0=A4=A3 =E0=A4=95=E0=A4=B0 =E0=A4=AA=E0=A4=BE=E0=A4=A8=E0=A5=87 = =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D= =E0=A4=A5" +msgid "Connection is not open" +msgstr "=E0=A4=95=E0=A4=A8=E0=A5=87=E0=A4=95=E0=A5=8D=E0=A4=B6=E0=A4=A8 = =E0=A4=96=E0=A5=81=E0=A4=B2=E0=A4=BE =E0=A4=A8=E0=A4=B9=E0=A5=80=E0=A4=82 = =E0=A4=B9=E0=A5=88" + +msgid "Connection is not opened" +msgstr "=E0=A4=95=E0=A4=A8=E0=A5=87=E0=A4=95=E0=A5=8D=E0=A4=B6=E0=A4=A8 = =E0=A4=95=E0=A5=8B =E0=A4=96=E0=A5=8B=E0=A4=B2=E0=A4=BE =E0=A4=A8=E0=A4=B9= =E0=A5=80=E0=A4=82 =E0=A4=97=E0=A4=AF=E0=A4=BE =E0=A4=B9=E0=A5=88" + +msgid "Failed to create domain" +msgstr "=E0=A4=A1=E0=A5=8B=E0=A4=AE=E0=A5=87=E0=A4=A8 =E0=A4=95=E0=A4=BE = =E0=A4=A8=E0=A4=BF=E0=A4=B0=E0=A5=8D=E0=A4=AE=E0=A4=BE=E0=A4=A3 =E0=A4=95= =E0=A4=B0 =E0=A4=AA=E0=A4=BE=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 = =E0=A4=85=E0=A4=B8=E0=A4=AB=E0=A4=B2" + +msgid "Failed to create storage pool" +msgstr "=E0=A4=B8=E0=A4=82=E0=A4=97=E0=A5=8D=E0=A4=B0=E0=A4=B9=E0=A4=A3 = =E0=A4=AA=E0=A5=82=E0=A4=B2 =E0=A4=95=E0=A4=BE =E0=A4=A8=E0=A4=BF=E0=A4=B0= =E0=A5=8D=E0=A4=AE=E0=A4=BE=E0=A4=A3 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 = =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AB=E0=A4=B2" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "XML data =E0=A4=95=E0=A4=BE =E0=A4=95=E0=A5=8B=E0=A4=88 '%s' =E0= =A4=A8=E0=A5=8B=E0=A4=A1 =E0=A4=A8=E0=A4=B9=E0=A5=80=E0=A4=82 =E0=A4=B9=E0= =A5=88" +msgid "Got virStreamRecv error in %s" +msgstr "%s =E0=A4=AE=E0=A5=87=E0=A4=82 virStreamRecv =E0=A4=A4=E0=A5=8D=E0= =A4=B0=E0=A5=81=E0=A4=9F=E0=A4=BF =E0=A4=AA=E0=A4=BE=E0=A4=AF=E0=A4=BE" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "=E0=A4=87=E0=A4=B8 XML =E0=A4=A6=E0=A4=B8=E0=A5=8D=E0=A4=A4=E0=A4= =BE=E0=A4=B5=E0=A5=87=E0=A4=9C=E0=A4=BC =E0=A4=95=E0=A5=87 =E0=A4=B8=E0=A4= =BE=E0=A4=A5 =E0=A4=95=E0=A5=8B=E0=A4=88 =E0=A4=95=E0=A5=89=E0=A4=A8=E0=A5= =8D=E0=A4=AB=E0=A4=BC=E0=A4=BF=E0=A4=82=E0=A4=97 =E0=A4=91=E0=A4=AC=E0=A5= =8D=E0=A4=9C=E0=A5=87=E0=A4=95=E0=A5=8D=E0=A4=9F =E0=A4=A8=E0=A4=B9=E0=A5= =80=E0=A4=82 =E0=A4=B9=E0=A5=88" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" +msgid "No XML document to parse" +msgstr "=E0=A4=B5=E0=A4=BF=E0=A4=B6=E0=A5=8D=E0=A4=B2=E0=A5=87=E0=A4=B7=E0= =A4=A3 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=95=E0=A5=87 =E0=A4=B2=E0= =A4=BF=E0=A4=8F =E0=A4=95=E0=A5=8B=E0=A4=88 XML =E0=A4=A6=E0=A4=B8=E0=A5=8D= =E0=A4=A4=E0=A4=BE=E0=A4=B5=E0=A5=87=E0=A4=9C=E0=A4=BC =E0=A4=89=E0=A4=AA= =E0=A4=B2=E0=A5=8D=E0=A4=AC=E0=A4=A7 =E0=A4=A8=E0=A4=B9=E0=A5=80=E0=A4=82 " =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "%s =E0=A4=95=E0=A5=87 =E0=A4=B2=E0=A4=BF=E0=A4=8F RNG =E0=A4=B5=E0= =A4=BF=E0=A4=B6=E0=A5=8D=E0=A4=B2=E0=A5=87=E0=A4=B7=E0=A4=95 =E0=A4=95=E0= =A4=BE =E0=A4=A8=E0=A4=BF=E0=A4=B0=E0=A5=8D=E0=A4=AE=E0=A4=BE=E0=A4=A3 =E0= =A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0= =A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "RNG %s =E0=A4=95=E0=A5=8B =E0=A4=B5=E0=A4=BF=E0=A4=B6=E0=A5=8D=E0= =A4=B2=E0=A5=87=E0=A4=B7=E0=A4=A3 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0= =A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0= =A4=A5" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "RNG =E0=A4=85=E0=A4=AD=E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=B0=E0=A4= =AE=E0=A4=BE=E0=A4=A3=E0=A4=BF=E0=A4=A4 =E0=A4=B8=E0=A4=A8=E0=A5=8D=E0=A4= =A6=E0=A4=B0=E0=A5=8D=E0=A4=AD %s =E0=A4=95=E0=A4=BE =E0=A4=A8=E0=A4=BF=E0= =A4=B0=E0=A5=8D=E0=A4=AE=E0=A4=BE=E0=A4=A3 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0= =A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0= =A5=8D=E0=A4=A5" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "=E0=A4=A1=E0=A5=89=E0=A4=95 =E0=A4=95=E0=A5=8B =E0=A4=85=E0=A4=AD= =E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=B0=E0=A4=AE=E0=A4=BE=E0=A4=A3=E0=A4=BF=E0= =A4=A4 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0= =A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "=E0=A4=95=E0=A4=A8=E0=A5=87=E0=A4=95=E0=A5=8D=E0=A4=B6=E0=A4=A8 %s= =E0=A4=AA=E0=A4=B9=E0=A4=B2=E0=A5=87 =E0=A4=B8=E0=A5=87 =E0=A4=B9=E0=A5=80= =E0=A4=96=E0=A5=81=E0=A4=B2=E0=A4=BE =E0=A4=B9=E0=A5=88" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "%s =E0=A4=95=E0=A5=8B =E0=A4=96=E0=A5=8B=E0=A4=B2 =E0=A4=AA=E0=A4= =BE=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4= =AE=E0=A4=B0=E0=A5=8D=E0=A4=A5 " +msgid "Unable to get capabilities" +msgstr "=E0=A4=B8=E0=A4=95=E0=A5=8D=E0=A4=B7=E0=A4=AE=E0=A4=A4=E0=A4=BE = =E0=A4=AA=E0=A5=8D=E0=A4=B0=E0=A4=BE=E0=A4=AA=E0=A5=8D=E0=A4=A4 =E0=A4=95= =E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8= =E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "URI =E0=A4=95=E0=A4=A8=E0=A5=87=E0=A4=95=E0=A5=8D=E0=A4=B6=E0=A4= =A8 =E0=A4=AA=E0=A5=8D=E0=A4=B0=E0=A4=BE=E0=A4=AA=E0=A5=8D=E0=A4=A4 =E0=A4= =95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4= =B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5 " =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "=E0=A4=95=E0=A4=A8=E0=A5=87=E0=A4=95=E0=A5=8D=E0=A4=B6=E0=A4=A8 = =E0=A4=96=E0=A5=81=E0=A4=B2=E0=A4=BE =E0=A4=A8=E0=A4=B9=E0=A5=80=E0=A4=82 = =E0=A4=B9=E0=A5=88" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "=E0=A4=95=E0=A4=A8=E0=A5=87=E0=A4=95=E0=A5=8D=E0=A4=B6=E0=A4=A8 = =E0=A4=95=E0=A5=8B =E0=A4=96=E0=A5=8B=E0=A4=B2=E0=A4=BE =E0=A4=A8=E0=A4=B9= =E0=A5=80=E0=A4=82 =E0=A4=97=E0=A4=AF=E0=A4=BE =E0=A4=B9=E0=A5=88" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "=E0=A4=B9=E0=A4=BE=E0=A4=87=E0=A4=AA=E0=A4=B0=E0=A4=B5=E0=A4=BF=E0= =A4=9C=E0=A4=BC=E0=A4=B0 =E0=A4=95=E0=A4=BE =E0=A4=A8=E0=A4=BE=E0=A4=AE =E0= =A4=AA=E0=A5=8D=E0=A4=B0=E0=A4=BE=E0=A4=AA=E0=A5=8D=E0=A4=A4 =E0=A4=95=E0= =A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0= =A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "=E0=A4=B9=E0=A4=BE=E0=A4=87=E0=A4=AA=E0=A4=B0=E0=A4=B5=E0=A4=BF=E0= =A4=9C=E0=A4=BC=E0=A4=B0 =E0=A4=95=E0=A4=BE =E0=A4=B8=E0=A4=A8=E0=A5=8D=E0= =A4=B8=E0=A4=95=E0=A4=B0=E0=A4=A3 =E0=A4=AA=E0=A5=8D=E0=A4=B0=E0=A4=BE=E0= =A4=AA=E0=A5=8D=E0=A4=A4 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0= =A5=87 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "=E0=A4=A1=E0=A5=8B=E0=A4=AE=E0=A5=87=E0=A4=A8 =E0=A4=95=E0=A4=BE = =E0=A4=A8=E0=A4=BF=E0=A4=B0=E0=A5=8D=E0=A4=AE=E0=A4=BE=E0=A4=A3 =E0=A4=95= =E0=A4=B0 =E0=A4=AA=E0=A4=BE=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 = =E0=A4=85=E0=A4=B8=E0=A4=AB=E0=A4=B2" +msgid "Unable to get node info" +msgstr "=E0=A4=A8=E0=A5=8B=E0=A4=A1 =E0=A4=95=E0=A5=80 =E0=A4=9C=E0=A4=BE= =E0=A4=A8=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A5=80 =E0=A4=AA=E0=A5=8D=E0=A4=B0= =E0=A4=BE=E0=A4=AA=E0=A5=8D=E0=A4=A4 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 = =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D= =E0=A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" +#, c-format +msgid "Unable to open %s" +msgstr "%s =E0=A4=95=E0=A5=8B =E0=A4=96=E0=A5=8B=E0=A4=B2 =E0=A4=AA=E0=A4= =BE=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4= =AE=E0=A4=B0=E0=A5=8D=E0=A4=A5 " =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "RNG %s =E0=A4=95=E0=A5=8B =E0=A4=B5=E0=A4=BF=E0=A4=B6=E0=A5=8D=E0= =A4=B2=E0=A5=87=E0=A4=B7=E0=A4=A3 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0= =A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0= =A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "=E0=A4=B8=E0=A4=82=E0=A4=97=E0=A5=8D=E0=A4=B0=E0=A4=B9=E0=A4=A3 = =E0=A4=AA=E0=A5=82=E0=A4=B2 =E0=A4=95=E0=A4=BE =E0=A4=A8=E0=A4=BF=E0=A4=B0= =E0=A5=8D=E0=A4=AE=E0=A4=BE=E0=A4=A3 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 = =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AB=E0=A4=B2" +msgid "Unable to parse configuration" +msgstr "=E0=A4=B5=E0=A4=BF=E0=A4=A8=E0=A5=8D=E0=A4=AF=E0=A4=BE=E0=A4=B8 = =E0=A4=95=E0=A5=87 =E0=A4=B5=E0=A4=BF=E0=A4=B6=E0=A5=8D=E0=A4=B2=E0=A5=87= =E0=A4=B7=E0=A4=A3 =E0=A4=95=E0=A4=B0 =E0=A4=AA=E0=A4=BE=E0=A4=A8=E0=A5=87 = =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D= =E0=A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "=E0=A4=A8=E0=A5=8B=E0=A4=A1 =E0=A4=95=E0=A5=80 =E0=A4=9C=E0=A4=BE= =E0=A4=A8=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A5=80 =E0=A4=AA=E0=A5=8D=E0=A4=B0= =E0=A4=BE=E0=A4=AA=E0=A5=8D=E0=A4=A4 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 = =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D= =E0=A4=A5" +msgid "Unable to perform RecvAll" +msgstr "RecvAll =E0=A4=95=E0=A5=87 =E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A5=8D=E0= =A4=AF=E0=A4=BE=E0=A4=A8=E0=A5=8D=E0=A4=B5=E0=A4=AF=E0=A4=A8 =E0=A4=AE=E0= =A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "=E0=A4=B8=E0=A4=95=E0=A5=8D=E0=A4=B7=E0=A4=AE=E0=A4=A4=E0=A4=BE = =E0=A4=AA=E0=A5=8D=E0=A4=B0=E0=A4=BE=E0=A4=AA=E0=A5=8D=E0=A4=A4 =E0=A4=95= =E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8= =E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" +msgid "Unable to perform SendAll" +msgstr "SendAll =E0=A4=95=E0=A5=87 =E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A5=8D=E0= =A4=AF=E0=A4=BE=E0=A4=A8=E0=A5=8D=E0=A4=B5=E0=A4=AF=E0=A4=A8 =E0=A4=AE=E0= =A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "=E0=A4=A1=E0=A5=8B=E0=A4=AE=E0=A5=87=E0=A4=A8 =E0=A4=AA=E0=A5=81= =E0=A4=A8: =E0=A4=B8=E0=A5=8D=E0=A4=A5=E0=A4=BE=E0=A4=AA=E0=A4=BF=E0=A4=A4 = =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0=A4=85= =E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "virStreamRecv =E0=A4=95=E0=A4=BE =E0=A4=95=E0=A5=89=E0=A4=B2 =E0= =A4=B0=E0=A5=8B=E0=A4=95 =E0=A4=A6=E0=A5=87=E0=A4=A4=E0=A4=BE" +msgid "Unable to validate doc" +msgstr "=E0=A4=A1=E0=A5=89=E0=A4=95 =E0=A4=95=E0=A5=8B =E0=A4=85=E0=A4=AD= =E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=B0=E0=A4=AE=E0=A4=BE=E0=A4=A3=E0=A4=BF=E0= =A4=A4 =E0=A4=95=E0=A4=B0=E0=A4=A8=E0=A5=87 =E0=A4=AE=E0=A5=87=E0=A4=82 =E0= =A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "%s =E0=A4=AE=E0=A5=87=E0=A4=82 virStreamRecv =E0=A4=A4=E0=A5=8D=E0= =A4=B0=E0=A5=81=E0=A4=9F=E0=A4=BF =E0=A4=AA=E0=A4=BE=E0=A4=AF=E0=A4=BE" +msgid "XML data has no '%s' node" +msgstr "XML data =E0=A4=95=E0=A4=BE =E0=A4=95=E0=A5=8B=E0=A4=88 '%s' =E0= =A4=A8=E0=A5=8B=E0=A4=A1 =E0=A4=A8=E0=A4=B9=E0=A5=80=E0=A4=82 =E0=A4=B9=E0= =A5=88" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "RecvAll =E0=A4=95=E0=A5=87 =E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A5=8D=E0= =A4=AF=E0=A4=BE=E0=A4=A8=E0=A5=8D=E0=A4=B5=E0=A4=AF=E0=A4=A8 =E0=A4=AE=E0= =A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" +msgid "virStreamRecv call would block" +msgstr "virStreamRecv =E0=A4=95=E0=A4=BE =E0=A4=95=E0=A5=89=E0=A4=B2 =E0= =A4=B0=E0=A5=8B=E0=A4=95 =E0=A4=A6=E0=A5=87=E0=A4=A4=E0=A4=BE" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "virStreamSend =E0=A4=95=E0=A4=BE =E0=A4=95=E0=A5=89=E0=A4=B2 =E0= =A4=B0=E0=A5=8B=E0=A4=95 =E0=A4=A6=E0=A5=87=E0=A4=A4=E0=A4=BE" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "SendAll =E0=A4=95=E0=A5=87 =E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A5=8D=E0= =A4=AF=E0=A4=BE=E0=A4=A8=E0=A5=8D=E0=A4=B5=E0=A4=AF=E0=A4=A8 =E0=A4=AE=E0= =A5=87=E0=A4=82 =E0=A4=85=E0=A4=B8=E0=A4=AE=E0=A4=B0=E0=A5=8D=E0=A4=A5" diff --git a/po/hr.mini.po b/po/hr.mini.po new file mode 100644 index 0000000..507eaa6 --- /dev/null +++ b/po/hr.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:20+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Croatian (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D3; plural=3Dn%10=3D=3D1 && n%100!=3D11 ? 0 : n%1= 0>=3D2 && n" +"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/hr.po b/po/hr.po deleted file mode 100644 index 9f44ad1..0000000 --- a/po/hr.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:20+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/hr/)\n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3Dn%10=3D=3D1 && n%100!=3D11 ? 0 : n%1= 0>=3D2 && n" -"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/hu.mini.po b/po/hu.mini.po new file mode 100644 index 0000000..ac7726f --- /dev/null +++ b/po/hu.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/libvirt-gli= b/" +"language/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/hu.po b/po/hu.po deleted file mode 100644 index daba024..0000000 --- a/po/hu.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Hungarian (http://www.transifex.com/projects/p/libvirt-gli= b/" -"language/hu/)\n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ia.mini.po b/po/ia.mini.po new file mode 100644 index 0000000..ad77f06 --- /dev/null +++ b/po/ia.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Interlingua (http://www.transifex.com/projects/p/libvirt-g= lib/" +"language/ia/)\n" +"Language: ia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ia.po b/po/ia.po deleted file mode 100644 index 150dfe2..0000000 --- a/po/ia.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/libvirt-g= lib/" -"language/ia/)\n" -"Language: ia\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550685046263603.6227059319991; Wed, 20 Feb 2019 09:50:46 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 91681C12FD5A; Wed, 20 Feb 2019 17:50:43 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5876C171A3; Wed, 20 Feb 2019 17:50:43 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 0CF643FA49; Wed, 20 Feb 2019 17:50:43 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHofdR020062 for ; Wed, 20 Feb 2019 12:50:41 -0500 Received: by smtp.corp.redhat.com (Postfix) id 441C34DC56; Wed, 20 Feb 2019 17:50:41 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 02D7918E2B; Wed, 20 Feb 2019 17:50:38 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:12 +0000 Message-Id: <20190220174918.24379-10-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 09/15] po: minimize id ilo is it ja ka kk km kn ko X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Wed, 20 Feb 2019 17:50:45 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/id.mini.po | 20 +++++ po/id.po | 153 --------------------------------------- po/ilo.mini.po | 20 +++++ po/ilo.po | 153 --------------------------------------- po/is.mini.po | 20 +++++ po/is.po | 153 --------------------------------------- po/it.mini.po | 20 +++++ po/it.po | 153 --------------------------------------- po/{ja.po =3D> ja.mini.po} | 141 ++++++++++++------------------------ po/ka.mini.po | 20 +++++ po/ka.po | 153 --------------------------------------- po/kk.mini.po | 20 +++++ po/kk.po | 153 --------------------------------------- po/km.mini.po | 20 +++++ po/km.po | 153 --------------------------------------- po/kn.mini.po | 20 +++++ po/kn.po | 153 --------------------------------------- po/ko.mini.po | 20 +++++ po/ko.po | 153 --------------------------------------- 19 files changed, 225 insertions(+), 1473 deletions(-) create mode 100644 po/id.mini.po delete mode 100644 po/id.po create mode 100644 po/ilo.mini.po delete mode 100644 po/ilo.po create mode 100644 po/is.mini.po delete mode 100644 po/is.po create mode 100644 po/it.mini.po delete mode 100644 po/it.po rename po/{ja.po =3D> ja.mini.po} (55%) create mode 100644 po/ka.mini.po delete mode 100644 po/ka.po create mode 100644 po/kk.mini.po delete mode 100644 po/kk.po create mode 100644 po/km.mini.po delete mode 100644 po/km.po create mode 100644 po/kn.mini.po delete mode 100644 po/kn.po create mode 100644 po/ko.mini.po delete mode 100644 po/ko.po diff --git a/po/id.mini.po b/po/id.mini.po new file mode 100644 index 0000000..66423de --- /dev/null +++ b/po/id.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Indonesian (http://www.transifex.com/projects/p/libvirt-gl= ib/" +"language/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/id.po b/po/id.po deleted file mode 100644 index 314ff45..0000000 --- a/po/id.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/libvirt-gl= ib/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ilo.mini.po b/po/ilo.mini.po new file mode 100644 index 0000000..f285df5 --- /dev/null +++ b/po/ilo.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Iloko (http://www.transifex.com/projects/p/libvirt-glib/" +"language/ilo/)\n" +"Language: ilo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ilo.po b/po/ilo.po deleted file mode 100644 index df1c4d7..0000000 --- a/po/ilo.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Iloko (http://www.transifex.com/projects/p/libvirt-glib/" -"language/ilo/)\n" -"Language: ilo\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/is.mini.po b/po/is.mini.po new file mode 100644 index 0000000..5ec1236 --- /dev/null +++ b/po/is.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Icelandic (http://www.transifex.com/projects/p/libvirt-gli= b/" +"language/is/)\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/is.po b/po/is.po deleted file mode 100644 index 8947917..0000000 --- a/po/is.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Icelandic (http://www.transifex.com/projects/p/libvirt-gli= b/" -"language/is/)\n" -"Language: is\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/it.mini.po b/po/it.mini.po new file mode 100644 index 0000000..3be08d3 --- /dev/null +++ b/po/it.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Italian (http://www.transifex.com/projects/p/libvirt-glib/" +"language/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/it.po b/po/it.po deleted file mode 100644 index c3e756b..0000000 --- a/po/it.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/libvirt-glib/" -"language/it/)\n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ja.po b/po/ja.mini.po similarity index 55% rename from po/ja.po rename to po/ja.mini.po index 0cd5c63..bebfd04 100644 --- a/po/ja.po +++ b/po/ja.mini.po @@ -1,5 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: @@ -7,9 +7,9 @@ # Tomoyuki KATO , 2013 msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" "PO-Revision-Date: 2014-12-17 12:21+0000\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Japanese (http://www.transifex.com/projects/p/libvirt-glib= /" @@ -21,135 +21,84 @@ msgstr "" "Plural-Forms: nplurals=3D1; plural=3D0;\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "=E6=A7=8B=E6=96=87=E8=A7=A3=E6=9E=90=E3=81=99=E3=82=8B XML =E3=83= =89=E3=82=AD=E3=83=A5=E3=83=A1=E3=83=B3=E3=83=88=E3=81=8C=E3=81=82=E3=82=8A= =E3=81=BE=E3=81=9B=E3=82=93" +#, c-format +msgid "Connection %s is already open" +msgstr "=E3=81=99=E3=81=A7=E3=81=AB=E6=8E=A5=E7=B6=9A %s =E3=81=8C=E9=96= =8B=E3=81=8B=E3=82=8C=E3=81=A6=E3=81=84=E3=81=BE=E3=81=99" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "=E8=A8=AD=E5=AE=9A=E3=82=92=E6=A7=8B=E6=96=87=E8=A7=A3=E6=9E=90=E3= =81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" +msgid "Connection is not open" +msgstr "=E6=8E=A5=E7=B6=9A=E3=81=95=E3=82=8C=E3=81=A6=E3=81=84=E3=81=BE=E3= =81=9B=E3=82=93" + +msgid "Connection is not opened" +msgstr "=E6=8E=A5=E7=B6=9A=E3=81=95=E3=82=8C=E3=81=A6=E3=81=84=E3=81=BE=E3= =81=9B=E3=82=93" + +msgid "Failed to create domain" +msgstr "=E3=83=89=E3=83=A1=E3=82=A4=E3=83=B3=E3=81=AE=E4=BD=9C=E6=88=90=E3= =81=AB=E5=A4=B1=E6=95=97=E3=81=97=E3=81=BE=E3=81=97=E3=81=9F" + +msgid "Failed to create storage pool" +msgstr "=E3=82=B9=E3=83=88=E3=83=AC=E3=83=BC=E3=82=B8=E3=83=97=E3=83=BC=E3= =83=AB=E3=81=AE=E4=BD=9C=E6=88=90=E3=81=AB=E5=A4=B1=E6=95=97=E3=81=97=E3=81= =BE=E3=81=97=E3=81=9F" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "XML =E3=83=87=E3=83=BC=E3=82=BF=E3=81=AB '%s' =E3=83=8E=E3=83=BC= =E3=83=89=E3=81=8C=E3=81=82=E3=82=8A=E3=81=BE=E3=81=9B=E3=82=93" +msgid "Got virStreamRecv error in %s" +msgstr "%s =E3=81=AB=E3=81=8A=E3=81=84=E3=81=A6 virStreamRecv =E3=82=A8=E3= =83=A9=E3=83=BC=E3=81=8C=E7=99=BA=E7=94=9F=E3=81=97=E3=81=BE=E3=81=97=E3=81= =9F" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "=E3=81=93=E3=81=AE=E8=A8=AD=E5=AE=9A=E3=82=AA=E3=83=96=E3=82=B8=E3= =82=A7=E3=82=AF=E3=83=88=E3=81=A8=E9=96=A2=E9=80=A3=E4=BB=98=E3=81=91=E3=82= =89=E3=82=8C=E3=81=9F XML =E3=83=89=E3=82=AD=E3=83=A5=E3=83=A1=E3=83=B3=E3= =83=88=E3=81=8C=E3=81=82=E3=82=8A=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" +msgid "No XML document to parse" +msgstr "=E6=A7=8B=E6=96=87=E8=A7=A3=E6=9E=90=E3=81=99=E3=82=8B XML =E3=83= =89=E3=82=AD=E3=83=A5=E3=83=A1=E3=83=B3=E3=83=88=E3=81=8C=E3=81=82=E3=82=8A= =E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "%s =E3=81=AE RNG =E3=83=91=E3=83=BC=E3=82=B5=E3=83=BC=E3=82=92=E4= =BD=9C=E6=88=90=E3=81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "RNG %s =E3=82=92=E6=A7=8B=E6=96=87=E8=A7=A3=E6=9E=90=E3=81=A7=E3= =81=8D=E3=81=BE=E3=81=9B=E3=82=93" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "RNG =E6=A4=9C=E8=A8=BC=E3=82=B3=E3=83=B3=E3=83=86=E3=82=AD=E3=82= =B9=E3=83=88 %s =E3=82=92=E4=BD=9C=E6=88=90=E3=81=A7=E3=81=8D=E3=81=BE=E3= =81=9B=E3=82=93" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "=E3=83=89=E3=82=AD=E3=83=A5=E3=83=A1=E3=83=B3=E3=83=88=E3=82=92=E6= =A4=9C=E8=A8=BC=E3=81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "=E3=81=99=E3=81=A7=E3=81=AB=E6=8E=A5=E7=B6=9A %s =E3=81=8C=E9=96= =8B=E3=81=8B=E3=82=8C=E3=81=A6=E3=81=84=E3=81=BE=E3=81=99" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "%s =E3=82=92=E9=96=8B=E3=81=91=E3=81=BE=E3=81=9B=E3=82=93" +msgid "Unable to get capabilities" +msgstr "=E3=82=B1=E3=82=A4=E3=83=91=E3=83=93=E3=83=AA=E3=83=86=E3=82=A3=E3= =82=92=E5=8F=96=E5=BE=97=E3=81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "=E6=8E=A5=E7=B6=9A URI =E3=82=92=E5=8F=96=E5=BE=97=E3=81=A7=E3=81= =8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "=E6=8E=A5=E7=B6=9A=E3=81=95=E3=82=8C=E3=81=A6=E3=81=84=E3=81=BE=E3= =81=9B=E3=82=93" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "=E6=8E=A5=E7=B6=9A=E3=81=95=E3=82=8C=E3=81=A6=E3=81=84=E3=81=BE=E3= =81=9B=E3=82=93" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "=E3=83=8F=E3=82=A4=E3=83=91=E3=83=BC=E3=83=90=E3=82=A4=E3=82=B6=E3= =83=BC=E3=81=AE=E5=90=8D=E5=89=8D=E3=82=92=E5=8F=96=E5=BE=97=E3=81=A7=E3=81= =8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "=E3=83=8F=E3=82=A4=E3=83=91=E3=83=BC=E3=83=90=E3=82=A4=E3=82=B6=E3= =83=BC=E3=81=AE=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3=E3=82=92=E5=8F= =96=E5=BE=97=E3=81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "=E3=83=89=E3=83=A1=E3=82=A4=E3=83=B3=E3=81=AE=E4=BD=9C=E6=88=90=E3= =81=AB=E5=A4=B1=E6=95=97=E3=81=97=E3=81=BE=E3=81=97=E3=81=9F" +msgid "Unable to get node info" +msgstr "=E3=83=8E=E3=83=BC=E3=83=89=E6=83=85=E5=A0=B1=E3=82=92=E5=8F=96=E5= =BE=97=E3=81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" +#, c-format +msgid "Unable to open %s" +msgstr "%s =E3=82=92=E9=96=8B=E3=81=91=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "RNG %s =E3=82=92=E6=A7=8B=E6=96=87=E8=A7=A3=E6=9E=90=E3=81=A7=E3= =81=8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "=E3=82=B9=E3=83=88=E3=83=AC=E3=83=BC=E3=82=B8=E3=83=97=E3=83=BC=E3= =83=AB=E3=81=AE=E4=BD=9C=E6=88=90=E3=81=AB=E5=A4=B1=E6=95=97=E3=81=97=E3=81= =BE=E3=81=97=E3=81=9F" +msgid "Unable to parse configuration" +msgstr "=E8=A8=AD=E5=AE=9A=E3=82=92=E6=A7=8B=E6=96=87=E8=A7=A3=E6=9E=90=E3= =81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "=E3=83=8E=E3=83=BC=E3=83=89=E6=83=85=E5=A0=B1=E3=82=92=E5=8F=96=E5= =BE=97=E3=81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" +msgid "Unable to perform RecvAll" +msgstr "RecvAll =E3=82=92=E5=AE=9F=E8=A1=8C=E3=81=A7=E3=81=8D=E3=81=BE=E3= =81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "=E3=82=B1=E3=82=A4=E3=83=91=E3=83=93=E3=83=AA=E3=83=86=E3=82=A3=E3= =82=92=E5=8F=96=E5=BE=97=E3=81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" +msgid "Unable to perform SendAll" +msgstr "SendAll =E3=82=92=E5=AE=9F=E8=A1=8C=E3=81=A7=E3=81=8D=E3=81=BE=E3= =81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "=E3=83=89=E3=83=A1=E3=82=A4=E3=83=B3=E3=82=92=E5=BE=A9=E5=85=83=E3= =81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "virStreamRecv =E3=81=AE=E5=91=BC=E3=81=B3=E5=87=BA=E3=81=97=E3=81= =8C=E3=83=96=E3=83=AD=E3=83=83=E3=82=AF=E3=81=95=E3=82=8C=E3=81=BE=E3=81=99" +msgid "Unable to validate doc" +msgstr "=E3=83=89=E3=82=AD=E3=83=A5=E3=83=A1=E3=83=B3=E3=83=88=E3=82=92=E6= =A4=9C=E8=A8=BC=E3=81=A7=E3=81=8D=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "%s =E3=81=AB=E3=81=8A=E3=81=84=E3=81=A6 virStreamRecv =E3=82=A8=E3= =83=A9=E3=83=BC=E3=81=8C=E7=99=BA=E7=94=9F=E3=81=97=E3=81=BE=E3=81=97=E3=81= =9F" +msgid "XML data has no '%s' node" +msgstr "XML =E3=83=87=E3=83=BC=E3=82=BF=E3=81=AB '%s' =E3=83=8E=E3=83=BC= =E3=83=89=E3=81=8C=E3=81=82=E3=82=8A=E3=81=BE=E3=81=9B=E3=82=93" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "RecvAll =E3=82=92=E5=AE=9F=E8=A1=8C=E3=81=A7=E3=81=8D=E3=81=BE=E3= =81=9B=E3=82=93" +msgid "virStreamRecv call would block" +msgstr "virStreamRecv =E3=81=AE=E5=91=BC=E3=81=B3=E5=87=BA=E3=81=97=E3=81= =8C=E3=83=96=E3=83=AD=E3=83=83=E3=82=AF=E3=81=95=E3=82=8C=E3=81=BE=E3=81=99" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "virStreamSend =E3=81=AE=E5=91=BC=E3=81=B3=E5=87=BA=E3=81=97=E3=81= =8C=E3=83=96=E3=83=AD=E3=83=83=E3=82=AF=E3=81=95=E3=82=8C=E3=81=BE=E3=81=99" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "SendAll =E3=82=92=E5=AE=9F=E8=A1=8C=E3=81=A7=E3=81=8D=E3=81=BE=E3= =81=9B=E3=82=93" diff --git a/po/ka.mini.po b/po/ka.mini.po new file mode 100644 index 0000000..44730f1 --- /dev/null +++ b/po/ka.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Georgian (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/ka/)\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ka.po b/po/ka.po deleted file mode 100644 index 772842c..0000000 --- a/po/ka.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Georgian (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/ka/)\n" -"Language: ka\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/kk.mini.po b/po/kk.mini.po new file mode 100644 index 0000000..4e6c79b --- /dev/null +++ b/po/kk.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Kazakh (http://www.transifex.com/projects/p/libvirt-glib/" +"language/kk/)\n" +"Language: kk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/kk.po b/po/kk.po deleted file mode 100644 index 1f243d9..0000000 --- a/po/kk.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Kazakh (http://www.transifex.com/projects/p/libvirt-glib/" -"language/kk/)\n" -"Language: kk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/km.mini.po b/po/km.mini.po new file mode 100644 index 0000000..d2bc319 --- /dev/null +++ b/po/km.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Khmer (http://www.transifex.com/projects/p/libvirt-glib/" +"language/km/)\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/km.po b/po/km.po deleted file mode 100644 index c18995a..0000000 --- a/po/km.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Khmer (http://www.transifex.com/projects/p/libvirt-glib/" -"language/km/)\n" -"Language: km\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/kn.mini.po b/po/kn.mini.po new file mode 100644 index 0000000..64c008a --- /dev/null +++ b/po/kn.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/libvirt-glib/" +"language/kn/)\n" +"Language: kn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/kn.po b/po/kn.po deleted file mode 100644 index 6f698fc..0000000 --- a/po/kn.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Kannada (http://www.transifex.com/projects/p/libvirt-glib/" -"language/kn/)\n" -"Language: kn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ko.mini.po b/po/ko.mini.po new file mode 100644 index 0000000..e2456bc --- /dev/null +++ b/po/ko.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Korean (http://www.transifex.com/projects/p/libvirt-glib/" +"language/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ko.po b/po/ko.po deleted file mode 100644 index d0fb895..0000000 --- a/po/ko.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Korean (http://www.transifex.com/projects/p/libvirt-glib/" -"language/ko/)\n" -"Language: ko\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550843659795694.5411041795255; Fri, 22 Feb 2019 05:54:19 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C9F0D30A7C9B; Fri, 22 Feb 2019 13:54:17 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id A3D385D9E1; Fri, 22 Feb 2019 13:54:17 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 25CCE181A048; Fri, 22 Feb 2019 13:54:17 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHomQv020088 for ; Wed, 20 Feb 2019 12:50:48 -0500 Received: by smtp.corp.redhat.com (Postfix) id 6D8522A33E; Wed, 20 Feb 2019 17:50:48 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6CB6E18BA1; Wed, 20 Feb 2019 17:50:41 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:13 +0000 Message-Id: <20190220174918.24379-11-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 10/15] po: minimize kw_GB kw@kkcor kw kw@uccor ky lt lv mai mk ml X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.40]); Fri, 22 Feb 2019 13:54:18 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/kw.mini.po | 20 ++++++ po/kw.po | 153 ------------------------------------------- po/kw@kkcor.mini.po | 20 ++++++ po/kw@kkcor.po | 153 ------------------------------------------- po/kw@uccor.mini.po | 20 ++++++ po/kw@uccor.po | 153 ------------------------------------------- po/kw_GB.mini.po | 20 ++++++ po/kw_GB.po | 153 ------------------------------------------- po/ky.mini.po | 20 ++++++ po/ky.po | 153 ------------------------------------------- po/lt.mini.po | 21 ++++++ po/lt.po | 154 -------------------------------------------- po/lv.mini.po | 21 ++++++ po/lv.po | 154 -------------------------------------------- po/mai.mini.po | 20 ++++++ po/mai.po | 153 ------------------------------------------- po/mk.mini.po | 20 ++++++ po/mk.po | 153 ------------------------------------------- po/ml.mini.po | 20 ++++++ po/ml.po | 153 ------------------------------------------- 20 files changed, 202 insertions(+), 1532 deletions(-) create mode 100644 po/kw.mini.po delete mode 100644 po/kw.po create mode 100644 po/kw@kkcor.mini.po delete mode 100644 po/kw@kkcor.po create mode 100644 po/kw@uccor.mini.po delete mode 100644 po/kw@uccor.po create mode 100644 po/kw_GB.mini.po delete mode 100644 po/kw_GB.po create mode 100644 po/ky.mini.po delete mode 100644 po/ky.po create mode 100644 po/lt.mini.po delete mode 100644 po/lt.po create mode 100644 po/lv.mini.po delete mode 100644 po/lv.po create mode 100644 po/mai.mini.po delete mode 100644 po/mai.po create mode 100644 po/mk.mini.po delete mode 100644 po/mk.po create mode 100644 po/ml.mini.po delete mode 100644 po/ml.po diff --git a/po/kw.mini.po b/po/kw.mini.po new file mode 100644 index 0000000..819d9ad --- /dev/null +++ b/po/kw.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 The Libvirt authors +# This file is distributed under the same license as the libvirt-glib pack= age. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: Cornish\n" +"Language: kw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D4; plural=3D (n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (= n =3D=3D 3) ? 2 : " +"3\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/kw.po b/po/kw.po deleted file mode 100644 index 6c5755a..0000000 --- a/po/kw.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: libvirt-glib\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Cornish\n" -"Language: kw\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D4; plural=3D (n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (= n =3D=3D 3) ? 2 : " -"3\n" -"X-Generator: Zanata 3.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/kw@kkcor.mini.po b/po/kw@kkcor.mini.po new file mode 100644 index 0000000..6c03421 --- /dev/null +++ b/po/kw@kkcor.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 The Libvirt authors +# This file is distributed under the same license as the libvirt-glib pack= age. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: Cornish (Common Orthography)\n" +"Language: kw@kkcor\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D4; plural=3D (n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (= n =3D=3D 3) ? 2 : " +"3\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/kw@kkcor.po b/po/kw@kkcor.po deleted file mode 100644 index 5a7bee3..0000000 --- a/po/kw@kkcor.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: libvirt-glib\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Cornish (Common Orthography)\n" -"Language: kw@kkcor\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D4; plural=3D (n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (= n =3D=3D 3) ? 2 : " -"3\n" -"X-Generator: Zanata 3.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/kw@uccor.mini.po b/po/kw@uccor.mini.po new file mode 100644 index 0000000..1d5323b --- /dev/null +++ b/po/kw@uccor.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 The Libvirt authors +# This file is distributed under the same license as the libvirt-glib pack= age. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: Cornish (Unified Orthography)\n" +"Language: kw@uccor\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D4; plural=3D (n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (= n =3D=3D 3) ? 2 : " +"3\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/kw@uccor.po b/po/kw@uccor.po deleted file mode 100644 index 939eee2..0000000 --- a/po/kw@uccor.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: libvirt-glib\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Cornish (Unified Orthography)\n" -"Language: kw@uccor\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D4; plural=3D (n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (= n =3D=3D 3) ? 2 : " -"3\n" -"X-Generator: Zanata 3.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/kw_GB.mini.po b/po/kw_GB.mini.po new file mode 100644 index 0000000..17a31f8 --- /dev/null +++ b/po/kw_GB.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 The Libvirt authors +# This file is distributed under the same license as the libvirt-glib pack= age. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: Cornish (United Kingdom)\n" +"Language: kw_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D4; plural=3D (n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (= n =3D=3D 3) ? 2 : " +"3\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/kw_GB.po b/po/kw_GB.po deleted file mode 100644 index 295c291..0000000 --- a/po/kw_GB.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: libvirt-glib\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Cornish (United Kingdom)\n" -"Language: kw-GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D4; plural=3D (n=3D=3D1) ? 0 : (n=3D=3D2) ? 1 : (= n =3D=3D 3) ? 2 : " -"3\n" -"X-Generator: Zanata 3.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ky.mini.po b/po/ky.mini.po new file mode 100644 index 0000000..34acbef --- /dev/null +++ b/po/ky.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Kirgyz (http://www.transifex.com/projects/p/libvirt-glib/" +"language/ky/)\n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ky.po b/po/ky.po deleted file mode 100644 index 115f6f5..0000000 --- a/po/ky.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Kirgyz (http://www.transifex.com/projects/p/libvirt-glib/" -"language/ky/)\n" -"Language: ky\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/lt.mini.po b/po/lt.mini.po new file mode 100644 index 0000000..bac6fd4 --- /dev/null +++ b/po/lt.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Lithuanian (http://www.transifex.com/projects/p/libvirt-gl= ib/" +"language/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && (n" +"%100<10 || n%100>=3D20) ? 1 : 2);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/lt.po b/po/lt.po deleted file mode 100644 index 63c318a..0000000 --- a/po/lt.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Lithuanian (http://www.transifex.com/projects/p/libvirt-gl= ib/" -"language/lt/)\n" -"Language: lt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && (n" -"%100<10 || n%100>=3D20) ? 1 : 2);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/lv.mini.po b/po/lv.mini.po new file mode 100644 index 0000000..7946832 --- /dev/null +++ b/po/lv.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Latvian (http://www.transifex.com/projects/p/libvirt-glib/" +"language/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n = !=3D 0 ? 1 : " +"2);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/lv.po b/po/lv.po deleted file mode 100644 index 1005787..0000000 --- a/po/lv.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/libvirt-glib/" -"language/lv/)\n" -"Language: lv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n = !=3D 0 ? 1 : " -"2);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/mai.mini.po b/po/mai.mini.po new file mode 100644 index 0000000..6ca5fc3 --- /dev/null +++ b/po/mai.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:21+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Maithili (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/mai/)\n" +"Language: mai\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/mai.po b/po/mai.po deleted file mode 100644 index 34df6e5..0000000 --- a/po/mai.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:21+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Maithili (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/mai/)\n" -"Language: mai\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/mk.mini.po b/po/mk.mini.po new file mode 100644 index 0000000..3febde7 --- /dev/null +++ b/po/mk.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Macedonian (http://www.transifex.com/projects/p/libvirt-gl= ib/" +"language/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n % 10 =3D=3D 1 && n % 100 !=3D 11)= ? 0 : 1;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/mk.po b/po/mk.po deleted file mode 100644 index 3fbfb3b..0000000 --- a/po/mk.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/libvirt-gl= ib/" -"language/mk/)\n" -"Language: mk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n % 10 =3D=3D 1 && n % 100 !=3D 11)= ? 0 : 1;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ml.mini.po b/po/ml.mini.po new file mode 100644 index 0000000..338f665 --- /dev/null +++ b/po/ml.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/libvirt-gli= b/" +"language/ml/)\n" +"Language: ml\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ml.po b/po/ml.po deleted file mode 100644 index a8c8114..0000000 --- a/po/ml.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Malayalam (http://www.transifex.com/projects/p/libvirt-gli= b/" -"language/ml/)\n" -"Language: ml\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550843664857275.7055522420774; Fri, 22 Feb 2019 05:54:24 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 32D37C057F5D; Fri, 22 Feb 2019 13:54:23 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0D25260BE6; Fri, 22 Feb 2019 13:54:23 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id BAADB181A135; Fri, 22 Feb 2019 13:54:22 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHopIa020103 for ; Wed, 20 Feb 2019 12:50:51 -0500 Received: by smtp.corp.redhat.com (Postfix) id 1295918B8E; Wed, 20 Feb 2019 17:50:51 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id E137B18BA1; Wed, 20 Feb 2019 17:50:48 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:14 +0000 Message-Id: <20190220174918.24379-12-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 11/15] po: minimize mn mr ms nb nds ne nl nn nso X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Fri, 22 Feb 2019 13:54:23 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/mn.mini.po | 20 +++++++ po/mn.po | 153 ------------------------------------------------- po/mr.mini.po | 20 +++++++ po/mr.po | 153 ------------------------------------------------- po/ms.mini.po | 20 +++++++ po/ms.po | 153 ------------------------------------------------- po/nb.mini.po | 20 +++++++ po/nb.po | 153 ------------------------------------------------- po/nds.mini.po | 20 +++++++ po/nds.po | 153 ------------------------------------------------- po/ne.mini.po | 20 +++++++ po/ne.po | 153 ------------------------------------------------- po/nl.mini.po | 20 +++++++ po/nl.po | 153 ------------------------------------------------- po/nn.mini.po | 20 +++++++ po/nn.po | 153 ------------------------------------------------- po/nso.mini.po | 20 +++++++ po/nso.po | 153 ------------------------------------------------- 18 files changed, 180 insertions(+), 1377 deletions(-) create mode 100644 po/mn.mini.po delete mode 100644 po/mn.po create mode 100644 po/mr.mini.po delete mode 100644 po/mr.po create mode 100644 po/ms.mini.po delete mode 100644 po/ms.po create mode 100644 po/nb.mini.po delete mode 100644 po/nb.po create mode 100644 po/nds.mini.po delete mode 100644 po/nds.po create mode 100644 po/ne.mini.po delete mode 100644 po/ne.po create mode 100644 po/nl.mini.po delete mode 100644 po/nl.po create mode 100644 po/nn.mini.po delete mode 100644 po/nn.po create mode 100644 po/nso.mini.po delete mode 100644 po/nso.po diff --git a/po/mn.mini.po b/po/mn.mini.po new file mode 100644 index 0000000..be36862 --- /dev/null +++ b/po/mn.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/libvirt-gli= b/" +"language/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/mn.po b/po/mn.po deleted file mode 100644 index 9d6a13b..0000000 --- a/po/mn.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Mongolian (http://www.transifex.com/projects/p/libvirt-gli= b/" -"language/mn/)\n" -"Language: mn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/mr.mini.po b/po/mr.mini.po new file mode 100644 index 0000000..a449bc8 --- /dev/null +++ b/po/mr.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Marathi (http://www.transifex.com/projects/p/libvirt-glib/" +"language/mr/)\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/mr.po b/po/mr.po deleted file mode 100644 index 17fb3f1..0000000 --- a/po/mr.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Marathi (http://www.transifex.com/projects/p/libvirt-glib/" -"language/mr/)\n" -"Language: mr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ms.mini.po b/po/ms.mini.po new file mode 100644 index 0000000..73c4aff --- /dev/null +++ b/po/ms.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Malay (http://www.transifex.com/projects/p/libvirt-glib/" +"language/ms/)\n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ms.po b/po/ms.po deleted file mode 100644 index 0552c6e..0000000 --- a/po/ms.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Malay (http://www.transifex.com/projects/p/libvirt-glib/" -"language/ms/)\n" -"Language: ms\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/nb.mini.po b/po/nb.mini.po new file mode 100644 index 0000000..18482bc --- /dev/null +++ b/po/nb.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Norwegian Bokm=C3=A5l (http://www.transifex.com/projects/p= /libvirt-" +"glib/language/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/nb.po b/po/nb.po deleted file mode 100644 index baa33e8..0000000 --- a/po/nb.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Norwegian Bokm=C3=A5l (http://www.transifex.com/projects/p= /libvirt-" -"glib/language/nb/)\n" -"Language: nb\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/nds.mini.po b/po/nds.mini.po new file mode 100644 index 0000000..785495f --- /dev/null +++ b/po/nds.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Low German (http://www.transifex.com/projects/p/libvirt-gl= ib/" +"language/nds/)\n" +"Language: nds\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/nds.po b/po/nds.po deleted file mode 100644 index 8333566..0000000 --- a/po/nds.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Low German (http://www.transifex.com/projects/p/libvirt-gl= ib/" -"language/nds/)\n" -"Language: nds\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ne.mini.po b/po/ne.mini.po new file mode 100644 index 0000000..34e0690 --- /dev/null +++ b/po/ne.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Nepali (http://www.transifex.com/projects/p/libvirt-glib/" +"language/ne/)\n" +"Language: ne\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ne.po b/po/ne.po deleted file mode 100644 index b66dedc..0000000 --- a/po/ne.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Nepali (http://www.transifex.com/projects/p/libvirt-glib/" -"language/ne/)\n" -"Language: ne\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/nl.mini.po b/po/nl.mini.po new file mode 100644 index 0000000..fa3ed54 --- /dev/null +++ b/po/nl.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Dutch (http://www.transifex.com/projects/p/libvirt-glib/" +"language/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/nl.po b/po/nl.po deleted file mode 100644 index aa5a999..0000000 --- a/po/nl.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/libvirt-glib/" -"language/nl/)\n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/nn.mini.po b/po/nn.mini.po new file mode 100644 index 0000000..6c72bf7 --- /dev/null +++ b/po/nn.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/" +"libvirt-glib/language/nn/)\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/nn.po b/po/nn.po deleted file mode 100644 index d1b31b0..0000000 --- a/po/nn.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/" -"libvirt-glib/language/nn/)\n" -"Language: nn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/nso.mini.po b/po/nso.mini.po new file mode 100644 index 0000000..2e06ac8 --- /dev/null +++ b/po/nso.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Northern Sotho (http://www.transifex.com/projects/p/libvir= t-" +"glib/language/nso/)\n" +"Language: nso\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/nso.po b/po/nso.po deleted file mode 100644 index 15d1740..0000000 --- a/po/nso.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Northern Sotho (http://www.transifex.com/projects/p/libvir= t-" -"glib/language/nso/)\n" -"Language: nso\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 155084366912620.60231448408922; Fri, 22 Feb 2019 05:54:29 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6CAF830BC107; Fri, 22 Feb 2019 13:54:27 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 45CF3611D1; Fri, 22 Feb 2019 13:54:27 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 024C8247E4; Fri, 22 Feb 2019 13:54:27 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHosWB020119 for ; Wed, 20 Feb 2019 12:50:54 -0500 Received: by smtp.corp.redhat.com (Postfix) id 5010618B8E; Wed, 20 Feb 2019 17:50:54 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 71A7E5ED52; Wed, 20 Feb 2019 17:50:51 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:15 +0000 Message-Id: <20190220174918.24379-13-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 12/15] po: minimize or pa pl pt_BR pt ro ru si sk sl X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.42]); Fri, 22 Feb 2019 13:54:27 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/or.mini.po | 20 +++++ po/or.po | 153 -------------------------------- po/pa.mini.po | 20 +++++ po/pa.po | 153 -------------------------------- po/{pl.po =3D> pl.mini.po} | 152 ++++++++++++-------------------- po/pt.mini.po | 20 +++++ po/pt.po | 153 -------------------------------- po/{pt_BR.po =3D> pt_BR.mini.po} | 141 ++++++++++-------------------- po/ro.mini.po | 21 +++++ po/ro.po | 154 -------------------------------- po/ru.mini.po | 26 ++++++ po/ru.po | 155 --------------------------------- po/si.mini.po | 20 +++++ po/si.po | 153 -------------------------------- po/sk.mini.po | 20 +++++ po/sk.po | 153 -------------------------------- po/sl.mini.po | 21 +++++ po/sl.po | 154 -------------------------------- 18 files changed, 271 insertions(+), 1418 deletions(-) create mode 100644 po/or.mini.po delete mode 100644 po/or.po create mode 100644 po/pa.mini.po delete mode 100644 po/pa.po rename po/{pl.po =3D> pl.mini.po} (62%) create mode 100644 po/pt.mini.po delete mode 100644 po/pt.po rename po/{pt_BR.po =3D> pt_BR.mini.po} (54%) create mode 100644 po/ro.mini.po delete mode 100644 po/ro.po create mode 100644 po/ru.mini.po delete mode 100644 po/ru.po create mode 100644 po/si.mini.po delete mode 100644 po/si.po create mode 100644 po/sk.mini.po delete mode 100644 po/sk.po create mode 100644 po/sl.mini.po delete mode 100644 po/sl.po diff --git a/po/or.mini.po b/po/or.mini.po new file mode 100644 index 0000000..a07a167 --- /dev/null +++ b/po/or.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Oriya (http://www.transifex.com/projects/p/libvirt-glib/" +"language/or/)\n" +"Language: or\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/or.po b/po/or.po deleted file mode 100644 index 7eba353..0000000 --- a/po/or.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Oriya (http://www.transifex.com/projects/p/libvirt-glib/" -"language/or/)\n" -"Language: or\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/pa.mini.po b/po/pa.mini.po new file mode 100644 index 0000000..775e754 --- /dev/null +++ b/po/pa.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/" +"libvirt-glib/language/pa/)\n" +"Language: pa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/pa.po b/po/pa.po deleted file mode 100644 index c4e5849..0000000 --- a/po/pa.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/" -"libvirt-glib/language/pa/)\n" -"Language: pa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/pl.po b/po/pl.mini.po similarity index 62% rename from po/pl.po rename to po/pl.mini.po index 7ac3ce2..4db5e56 100644 --- a/po/pl.po +++ b/po/pl.mini.po @@ -1,5 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: @@ -11,9 +11,9 @@ # Piotr Dr=C4=85g , 2017. #zanata msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" "PO-Revision-Date: 2017-12-05 12:29+0000\n" "Last-Translator: Piotr Dr=C4=85g \n" "Language-Team: Polish (http://www.transifex.com/projects/p/libvirt-glib/" @@ -26,135 +26,99 @@ msgstr "" "|| n%100>=3D20) ? 1 : 2);\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "Brak dokumentu XML do przetworzenia" +#, c-format +msgid "Connection %s is already open" +msgstr "Po=C5=82=C4=85czenie %s jest ju=C5=BC otwarte" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "Nie mo=C5=BCna przetworzy=C4=87 konfiguracji" +msgid "Connection is not open" +msgstr "Po=C5=82=C4=85czenie nie jest otwarte" + +msgid "Connection is not opened" +msgstr "Po=C5=82=C4=85czenie nie jest otwarte" + +msgid "Failed to create domain" +msgstr "Utworzenie domeny si=C4=99 nie powiod=C5=82o" + +msgid "Failed to create storage pool" +msgstr "Utworzenie puli pami=C4=99ci masowej si=C4=99 nie powiod=C5=82o" + +msgid "Failed to fetch list of domains" +msgstr "Pobranie listy domen si=C4=99 nie powiod=C5=82o" + +msgid "Failed to fetch list of interfaces" +msgstr "Pobranie listy interfejs=C3=B3w si=C4=99 nie powiod=C5=82o" + +msgid "Failed to fetch list of networks" +msgstr "Pobranie listy sieci si=C4=99 nie powiod=C5=82o" + +msgid "Failed to fetch list of pools" +msgstr "Pobranie listy pul si=C4=99 nie powiod=C5=82o" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "Dane XML nie maj=C4=85 w=C4=99z=C5=82a =E2=80=9E%s=E2=80=9D" +msgid "Got virStreamRecv error in %s" +msgstr "Wyst=C4=85pi=C5=82 b=C5=82=C4=85d virStreamRecv w=C2=A0%s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "Brak dokumentu XML powi=C4=85zanego z=C2=A0tym obiektem konfigurac= ji" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 +msgid "No XML document to parse" +msgstr "Brak dokumentu XML do przetworzenia" + msgid "No XML schema associated with this config object" msgstr "Brak schematu XML powi=C4=85zanego z=C2=A0tym obiektem konfiguracj= i" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "Nie mo=C5=BCna utworzy=C4=87 parsera RNG dla %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "Nie mo=C5=BCna przetworzy=C4=87 RNG %s" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "Nie mo=C5=BCna utworzy=C4=87 kontekst sprawdzania RNG %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "Nie mo=C5=BCna sprawdzi=C4=87 dokumentu" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "Po=C5=82=C4=85czenie %s jest ju=C5=BC otwarte" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "Nie mo=C5=BCna otworzy=C4=87 %s" +msgid "Unable to get capabilities" +msgstr "Nie mo=C5=BCna uzyska=C4=87 mo=C5=BCliwo=C5=9Bci" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "Nie mo=C5=BCna uzyska=C4=87 adresu URI po=C5=82=C4=85czenia" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "Po=C5=82=C4=85czenie nie jest otwarte" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "Pobranie listy domen si=C4=99 nie powiod=C5=82o" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "Pobranie listy pul si=C4=99 nie powiod=C5=82o" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "Po=C5=82=C4=85czenie nie jest otwarte" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "Nie mo=C5=BCna uzyska=C4=87 nazwy nadzorcy" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "Nie mo=C5=BCna uzyska=C4=87 wersji nadzorcy" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "Utworzenie domeny si=C4=99 nie powiod=C5=82o" +msgid "Unable to get node info" +msgstr "Nie mo=C5=BCna uzyska=C4=87 informacji o=C2=A0w=C4=99=C5=BAle" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "Pobranie listy interfejs=C3=B3w si=C4=99 nie powiod=C5=82o" +#, c-format +msgid "Unable to open %s" +msgstr "Nie mo=C5=BCna otworzy=C4=87 %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "Pobranie listy sieci si=C4=99 nie powiod=C5=82o" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "Nie mo=C5=BCna przetworzy=C4=87 RNG %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "Utworzenie puli pami=C4=99ci masowej si=C4=99 nie powiod=C5=82o" +msgid "Unable to parse configuration" +msgstr "Nie mo=C5=BCna przetworzy=C4=87 konfiguracji" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "Nie mo=C5=BCna uzyska=C4=87 informacji o=C2=A0w=C4=99=C5=BAle" +msgid "Unable to perform RecvAll" +msgstr "Nie mo=C5=BCna wykona=C4=87 RecvAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "Nie mo=C5=BCna uzyska=C4=87 mo=C5=BCliwo=C5=9Bci" +msgid "Unable to perform SendAll" +msgstr "Nie mo=C5=BCna wykona=C4=87 SendAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "Nie mo=C5=BCna przywr=C3=B3ci=C4=87 domeny" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "Wywo=C5=82anie virStreamRecv spowodowa=C5=82oby zablokowanie" +msgid "Unable to validate doc" +msgstr "Nie mo=C5=BCna sprawdzi=C4=87 dokumentu" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "Wyst=C4=85pi=C5=82 b=C5=82=C4=85d virStreamRecv w=C2=A0%s" +msgid "XML data has no '%s' node" +msgstr "Dane XML nie maj=C4=85 w=C4=99z=C5=82a =E2=80=9E%s=E2=80=9D" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "Nie mo=C5=BCna wykona=C4=87 RecvAll" +msgid "virStreamRecv call would block" +msgstr "Wywo=C5=82anie virStreamRecv spowodowa=C5=82oby zablokowanie" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "Wywo=C5=82anie virStreamSend spowodowa=C5=82oby zablokowanie" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "Nie mo=C5=BCna wykona=C4=87 SendAll" diff --git a/po/pt.mini.po b/po/pt.mini.po new file mode 100644 index 0000000..16de0ab --- /dev/null +++ b/po/pt.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:22+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Portuguese (http://www.transifex.com/projects/p/libvirt-gl= ib/" +"language/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/pt.po b/po/pt.po deleted file mode 100644 index f8943b4..0000000 --- a/po/pt.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:22+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Portuguese (http://www.transifex.com/projects/p/libvirt-gl= ib/" -"language/pt/)\n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.mini.po similarity index 54% rename from po/pt_BR.po rename to po/pt_BR.mini.po index e4333de..dbe1b04 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.mini.po @@ -1,14 +1,14 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # F=C3=A1bio Oliv=C3=A9 Leite , 2013 msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" "PO-Revision-Date: 2014-12-17 12:23+0000\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" @@ -20,135 +20,84 @@ msgstr "" "Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "Nenhum documento XML para analisar" +#, c-format +msgid "Connection %s is already open" +msgstr "Conex=C3=A3o %s j=C3=A1 est=C3=A1 aberta" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "N=C3=A3o foi poss=C3=ADvel ler a configura=C3=A7=C3=A3o" +msgid "Connection is not open" +msgstr "A conex=C3=A3o n=C3=A3o est=C3=A1 aberta" + +msgid "Connection is not opened" +msgstr "A conex=C3=A3o n=C3=A3o est=C3=A1 aberta" + +msgid "Failed to create domain" +msgstr "Falha na cria=C3=A7=C3=A3o do dom=C3=ADnio" + +msgid "Failed to create storage pool" +msgstr "Falha na cria=C3=A7=C3=A3o do storage pool" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "Dados XML n=C3=A3o possuem um n=C3=B3 '%s'" +msgid "Got virStreamRecv error in %s" +msgstr "Erro virStreamRecv em %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "Nenhum documento XML associado a este objeto de configura=C3=A7=C3= =A3o" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" +msgid "No XML document to parse" +msgstr "Nenhum documento XML para analisar" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "N=C3=A3o foi poss=C3=ADvel criar um analisador RNG para %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "N=C3=A3o foi poss=C3=ADvel analisar o RNG %s" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "N=C3=A3o foi poss=C3=ADvel criar o contexto de valida=C3=A7=C3=A3o= RNG %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "N=C3=A3o foi poss=C3=ADvel validar o documento" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "Conex=C3=A3o %s j=C3=A1 est=C3=A1 aberta" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "N=C3=A3o foi poss=C3=ADvel abrir %s" +msgid "Unable to get capabilities" +msgstr "N=C3=A3o foi poss=C3=ADvel buscar as capacidades" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "N=C3=A3o foi poss=C3=ADvel encontrar a URI da conex=C3=A3o" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "A conex=C3=A3o n=C3=A3o est=C3=A1 aberta" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "A conex=C3=A3o n=C3=A3o est=C3=A1 aberta" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "N=C3=A3o foi poss=C3=ADvel encontrar o nome do hypervisor" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "N=C3=A3o foi poss=C3=ADvel encontrar a vers=C3=A3o do hypervisor" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "Falha na cria=C3=A7=C3=A3o do dom=C3=ADnio" +msgid "Unable to get node info" +msgstr "N=C3=A3o foi poss=C3=ADvel buscar informa=C3=A7=C3=B5es do n=C3=B3" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" +#, c-format +msgid "Unable to open %s" +msgstr "N=C3=A3o foi poss=C3=ADvel abrir %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "N=C3=A3o foi poss=C3=ADvel analisar o RNG %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "Falha na cria=C3=A7=C3=A3o do storage pool" +msgid "Unable to parse configuration" +msgstr "N=C3=A3o foi poss=C3=ADvel ler a configura=C3=A7=C3=A3o" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "N=C3=A3o foi poss=C3=ADvel buscar informa=C3=A7=C3=B5es do n=C3=B3" +msgid "Unable to perform RecvAll" +msgstr "N=C3=A3o foi poss=C3=ADvel realizar um RecvAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "N=C3=A3o foi poss=C3=ADvel buscar as capacidades" +msgid "Unable to perform SendAll" +msgstr "N=C3=A3o foi poss=C3=ADvel realizar um SendAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "N=C3=A3o foi poss=C3=ADvel restaurar o dom=C3=ADnio" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "A chamada a virStreamRecv bloquearia" +msgid "Unable to validate doc" +msgstr "N=C3=A3o foi poss=C3=ADvel validar o documento" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "Erro virStreamRecv em %s" +msgid "XML data has no '%s' node" +msgstr "Dados XML n=C3=A3o possuem um n=C3=B3 '%s'" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "N=C3=A3o foi poss=C3=ADvel realizar um RecvAll" +msgid "virStreamRecv call would block" +msgstr "A chamada a virStreamRecv bloquearia" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "A chamada a virStreamSend bloquearia" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "N=C3=A3o foi poss=C3=ADvel realizar um SendAll" diff --git a/po/ro.mini.po b/po/ro.mini.po new file mode 100644 index 0000000..ece6549 --- /dev/null +++ b/po/ro.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Romanian (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D3; plural=3D(n=3D=3D1?0:(((n%100>19)||((n%100=3D= =3D0)&&(n!=3D0)))?" +"2:1));\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ro.po b/po/ro.po deleted file mode 100644 index dba9b7f..0000000 --- a/po/ro.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/ro/)\n" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n=3D=3D1?0:(((n%100>19)||((n%100=3D= =3D0)&&(n!=3D0)))?" -"2:1));\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ru.mini.po b/po/ru.mini.po new file mode 100644 index 0000000..4100766 --- /dev/null +++ b/po/ru.mini.po @@ -0,0 +1,26 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Alexander Savchenko, 2014 +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Russian (http://www.transifex.com/projects/p/libvirt-glib/" +"language/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" +"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" +"X-Generator: Zanata 4.6.2\n" + +#, c-format +msgid "Unable to open %s" +msgstr "=D0=9D=D0=B5=D0=B2=D0=BE=D0=B7=D0=BC=D0=BE=D0=B6=D0=BD=D0=BE =D0= =BE=D1=82=D0=BA=D1=80=D1=8B=D1=82=D1=8C %s" diff --git a/po/ru.po b/po/ru.po deleted file mode 100644 index 4ecb86d..0000000 --- a/po/ru.po +++ /dev/null @@ -1,155 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Alexander Savchenko, 2014 -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Russian (http://www.transifex.com/projects/p/libvirt-glib/" -"language/ru/)\n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" -"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "=D0=9D=D0=B5=D0=B2=D0=BE=D0=B7=D0=BC=D0=BE=D0=B6=D0=BD=D0=BE =D0= =BE=D1=82=D0=BA=D1=80=D1=8B=D1=82=D1=8C %s" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/si.mini.po b/po/si.mini.po new file mode 100644 index 0000000..63a258c --- /dev/null +++ b/po/si.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Sinhala (http://www.transifex.com/projects/p/libvirt-glib/" +"language/si/)\n" +"Language: si\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/si.po b/po/si.po deleted file mode 100644 index 3909fc1..0000000 --- a/po/si.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Sinhala (http://www.transifex.com/projects/p/libvirt-glib/" -"language/si/)\n" -"Language: si\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/sk.mini.po b/po/sk.mini.po new file mode 100644 index 0000000..5937057 --- /dev/null +++ b/po/sk.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/libvirt-glib/" +"language/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D3; plural=3D(n=3D=3D1) ? 0 : (n>=3D2 && n<=3D4) = ? 1 : 2;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/sk.po b/po/sk.po deleted file mode 100644 index 4af0d2a..0000000 --- a/po/sk.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Slovak (http://www.transifex.com/projects/p/libvirt-glib/" -"language/sk/)\n" -"Language: sk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n=3D=3D1) ? 0 : (n>=3D2 && n<=3D4) = ? 1 : 2;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/sl.mini.po b/po/sl.mini.po new file mode 100644 index 0000000..64fdb2b --- /dev/null +++ b/po/sl.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Slovenian (http://www.transifex.com/projects/p/libvirt-gli= b/" +"language/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D4; plural=3D(n%100=3D=3D1 ? 0 : n%100=3D=3D2 ? 1= : n%100=3D=3D3 || n" +"%100=3D=3D4 ? 2 : 3);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/sl.po b/po/sl.po deleted file mode 100644 index 85a17b3..0000000 --- a/po/sl.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/libvirt-gli= b/" -"language/sl/)\n" -"Language: sl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D4; plural=3D(n%100=3D=3D1 ? 0 : n%100=3D=3D2 ? 1= : n%100=3D=3D3 || n" -"%100=3D=3D4 ? 2 : 3);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550843673211447.94247222015497; Fri, 22 Feb 2019 05:54:33 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5875781E1B; Fri, 22 Feb 2019 13:54:31 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2BC6166080; Fri, 22 Feb 2019 13:54:31 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id DCDBE247EB; Fri, 22 Feb 2019 13:54:30 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHouPt020131 for ; Wed, 20 Feb 2019 12:50:56 -0500 Received: by smtp.corp.redhat.com (Postfix) id E63F618BA1; Wed, 20 Feb 2019 17:50:56 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id BAEC218B96; Wed, 20 Feb 2019 17:50:54 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:16 +0000 Message-Id: <20190220174918.24379-14-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 13/15] po: minimize sq sr@latin sr sv ta te tg th tr tw X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Fri, 22 Feb 2019 13:54:32 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/sq.mini.po | 20 ++++++ po/sq.po | 153 ------------------------------------------- po/sr.mini.po | 21 ++++++ po/sr.po | 154 -------------------------------------------- po/sr@latin.mini.po | 21 ++++++ po/sr@latin.po | 154 -------------------------------------------- po/sv.mini.po | 20 ++++++ po/sv.po | 153 ------------------------------------------- po/ta.mini.po | 20 ++++++ po/ta.po | 153 ------------------------------------------- po/te.mini.po | 20 ++++++ po/te.po | 153 ------------------------------------------- po/tg.mini.po | 20 ++++++ po/tg.po | 153 ------------------------------------------- po/th.mini.po | 20 ++++++ po/th.po | 153 ------------------------------------------- po/tr.mini.po | 20 ++++++ po/tr.po | 153 ------------------------------------------- po/tw.mini.po | 19 ++++++ po/tw.po | 152 ------------------------------------------- 20 files changed, 201 insertions(+), 1531 deletions(-) create mode 100644 po/sq.mini.po delete mode 100644 po/sq.po create mode 100644 po/sr.mini.po delete mode 100644 po/sr.po create mode 100644 po/sr@latin.mini.po delete mode 100644 po/sr@latin.po create mode 100644 po/sv.mini.po delete mode 100644 po/sv.po create mode 100644 po/ta.mini.po delete mode 100644 po/ta.po create mode 100644 po/te.mini.po delete mode 100644 po/te.po create mode 100644 po/tg.mini.po delete mode 100644 po/tg.po create mode 100644 po/th.mini.po delete mode 100644 po/th.po create mode 100644 po/tr.mini.po delete mode 100644 po/tr.po create mode 100644 po/tw.mini.po delete mode 100644 po/tw.po diff --git a/po/sq.mini.po b/po/sq.mini.po new file mode 100644 index 0000000..86e21c7 --- /dev/null +++ b/po/sq.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Albanian (http://www.transifex.com/projects/p/libvirt-glib= /" +"language/sq/)\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/sq.po b/po/sq.po deleted file mode 100644 index 515c763..0000000 --- a/po/sq.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Albanian (http://www.transifex.com/projects/p/libvirt-glib= /" -"language/sq/)\n" -"Language: sq\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/sr.mini.po b/po/sr.mini.po new file mode 100644 index 0000000..90e4cdf --- /dev/null +++ b/po/sr.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Serbian (http://www.transifex.com/projects/p/libvirt-glib/" +"language/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" +"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/sr.po b/po/sr.po deleted file mode 100644 index 71f7439..0000000 --- a/po/sr.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/libvirt-glib/" -"language/sr/)\n" -"Language: sr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" -"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/sr@latin.mini.po b/po/sr@latin.mini.po new file mode 100644 index 0000000..7406444 --- /dev/null +++ b/po/sr@latin.mini.po @@ -0,0 +1,21 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/libvi= rt-" +"glib/language/sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" +"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/sr@latin.po b/po/sr@latin.po deleted file mode 100644 index 0082928..0000000 --- a/po/sr@latin.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/libvi= rt-" -"glib/language/sr@latin/)\n" -"Language: sr@latin\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D3; plural=3D(n%10=3D=3D1 && n%100!=3D11 ? 0 : n%= 10>=3D2 && n" -"%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/sv.mini.po b/po/sv.mini.po new file mode 100644 index 0000000..21b3a29 --- /dev/null +++ b/po/sv.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Swedish (http://www.transifex.com/projects/p/libvirt-glib/" +"language/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/sv.po b/po/sv.po deleted file mode 100644 index 5d79c83..0000000 --- a/po/sv.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/libvirt-glib/" -"language/sv/)\n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/ta.mini.po b/po/ta.mini.po new file mode 100644 index 0000000..a443bba --- /dev/null +++ b/po/ta.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:23+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Tamil (http://www.transifex.com/projects/p/libvirt-glib/" +"language/ta/)\n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ta.po b/po/ta.po deleted file mode 100644 index a47d5a0..0000000 --- a/po/ta.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:23+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Tamil (http://www.transifex.com/projects/p/libvirt-glib/" -"language/ta/)\n" -"Language: ta\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/te.mini.po b/po/te.mini.po new file mode 100644 index 0000000..8275520 --- /dev/null +++ b/po/te.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:24+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Telugu (http://www.transifex.com/projects/p/libvirt-glib/" +"language/te/)\n" +"Language: te\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/te.po b/po/te.po deleted file mode 100644 index 9ce04a5..0000000 --- a/po/te.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:24+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Telugu (http://www.transifex.com/projects/p/libvirt-glib/" -"language/te/)\n" -"Language: te\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/tg.mini.po b/po/tg.mini.po new file mode 100644 index 0000000..a13170f --- /dev/null +++ b/po/tg.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:24+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Tajik (http://www.transifex.com/projects/p/libvirt-glib/" +"language/tg/)\n" +"Language: tg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/tg.po b/po/tg.po deleted file mode 100644 index d2a1cf6..0000000 --- a/po/tg.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:24+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Tajik (http://www.transifex.com/projects/p/libvirt-glib/" -"language/tg/)\n" -"Language: tg\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/th.mini.po b/po/th.mini.po new file mode 100644 index 0000000..4ebdbc8 --- /dev/null +++ b/po/th.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:24+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Thai (http://www.transifex.com/projects/p/libvirt-glib/" +"language/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/th.po b/po/th.po deleted file mode 100644 index 54cd4ed..0000000 --- a/po/th.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:24+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Thai (http://www.transifex.com/projects/p/libvirt-glib/" -"language/th/)\n" -"Language: th\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/tr.mini.po b/po/tr.mini.po new file mode 100644 index 0000000..d228f3b --- /dev/null +++ b/po/tr.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:24+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Turkish (http://www.transifex.com/projects/p/libvirt-glib/" +"language/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/tr.po b/po/tr.po deleted file mode 100644 index b638820..0000000 --- a/po/tr.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:24+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/libvirt-glib/" -"language/tr/)\n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n > 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/tw.mini.po b/po/tw.mini.po new file mode 100644 index 0000000..669a5c5 --- /dev/null +++ b/po/tw.mini.po @@ -0,0 +1,19 @@ +# Libvirt package strings. +# Copyright (C) 2019 The Libvirt authors +# This file is distributed under the same license as the libvirt-glib pack= age. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: Twi\n" +"Language: tw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/tw.po b/po/tw.po deleted file mode 100644 index bdc7710..0000000 --- a/po/tw.po +++ /dev/null @@ -1,152 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: libvirt-glib\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Twi\n" -"Language: tw\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0\n" -"X-Generator: Zanata 3.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 155068506363837.204928485568416; Wed, 20 Feb 2019 09:51:03 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id BEB29347A55; Wed, 20 Feb 2019 17:51:01 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8875A5D717; Wed, 20 Feb 2019 17:51:01 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 30AE43FA48; Wed, 20 Feb 2019 17:51:01 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHoxU8020151 for ; Wed, 20 Feb 2019 12:50:59 -0500 Received: by smtp.corp.redhat.com (Postfix) id 7D0C0607CB; Wed, 20 Feb 2019 17:50:59 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4DC015ED52; Wed, 20 Feb 2019 17:50:57 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:17 +0000 Message-Id: <20190220174918.24379-15-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 14/15] po: minimize uk ur vi wba yo zh_CN zh_HK zh_TW zu X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Wed, 20 Feb 2019 17:51:02 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/{uk.po =3D> uk.mini.po} | 152 +++++++++++++++----------------------- po/ur.mini.po | 20 +++++ po/ur.po | 153 --------------------------------------- po/vi.mini.po | 20 +++++ po/vi.po | 153 --------------------------------------- po/wba.mini.po | 19 +++++ po/wba.po | 152 -------------------------------------- po/yo.mini.po | 19 +++++ po/yo.po | 152 -------------------------------------- po/zh_CN.mini.po | 20 +++++ po/zh_CN.po | 153 --------------------------------------- po/zh_HK.mini.po | 20 +++++ po/zh_HK.po | 153 --------------------------------------- po/zh_TW.mini.po | 20 +++++ po/zh_TW.po | 153 --------------------------------------- po/zu.mini.po | 20 +++++ po/zu.po | 153 --------------------------------------- 17 files changed, 216 insertions(+), 1316 deletions(-) rename po/{uk.po =3D> uk.mini.po} (65%) create mode 100644 po/ur.mini.po delete mode 100644 po/ur.po create mode 100644 po/vi.mini.po delete mode 100644 po/vi.po create mode 100644 po/wba.mini.po delete mode 100644 po/wba.po create mode 100644 po/yo.mini.po delete mode 100644 po/yo.po create mode 100644 po/zh_CN.mini.po delete mode 100644 po/zh_CN.po create mode 100644 po/zh_HK.mini.po delete mode 100644 po/zh_HK.po create mode 100644 po/zh_TW.mini.po delete mode 100644 po/zh_TW.po create mode 100644 po/zu.mini.po delete mode 100644 po/zu.po diff --git a/po/uk.po b/po/uk.mini.po similarity index 65% rename from po/uk.po rename to po/uk.mini.po index bd37f63..a0ab0ff 100644 --- a/po/uk.po +++ b/po/uk.mini.po @@ -1,5 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: @@ -8,9 +8,9 @@ # Yuri Chornoivan , 2017. #zanata msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" "PO-Revision-Date: 2017-12-06 12:39+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/libvirt-gli= b/" @@ -23,135 +23,99 @@ msgstr "" "%10<=3D4 && (n%100<10 || n%100>=3D20) ? 1 : 2);\n" "X-Generator: Zanata 4.6.2\n" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "=D0=9D=D0=B5=D0=BC=D0=B0=D1=94 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0= =B5=D0=BD=D1=82=D0=B0 XML =D0=B4=D0=BB=D1=8F =D0=BE=D0=B1=D1=80=D0=BE=D0=B1= =D0=BA=D0=B8" +#, c-format +msgid "Connection %s is already open" +msgstr "=D0=97=E2=80=99=D1=94=D0=B4=D0=BD=D0=B0=D0=BD=D0=BD=D1=8F %s =D0= =B2=D0=B6=D0=B5 =D0=B2=D1=96=D0=B4=D0=BA=D1=80=D0=B8=D1=82=D0=BE" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D0= =B1=D1=80=D0=BE=D0=B1=D0=B8=D1=82=D0=B8 =D0=BD=D0=B0=D0=BB=D0=B0=D1=88=D1= =82=D1=83=D0=B2=D0=B0=D0=BD=D0=BD=D1=8F" +msgid "Connection is not open" +msgstr "=D0=97'=D1=94=D0=B4=D0=BD=D0=B0=D0=BD=D0=BD=D1=8F =D0=BD=D0=B5 =D0= =B2=D1=96=D0=B4=D0=BA=D1=80=D0=B8=D1=82=D0=BE" + +msgid "Connection is not opened" +msgstr "=D0=97=E2=80=99=D1=94=D0=B4=D0=BD=D0=B0=D0=BD=D0=BD=D1=8F =D0=BD= =D0=B5 =D0=B2=D1=96=D0=B4=D0=BA=D1=80=D0=B8=D1=82=D0=BE" + +msgid "Failed to create domain" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D1=81=D1= =82=D0=B2=D0=BE=D1=80=D0=B8=D1=82=D0=B8 =D0=B4=D0=BE=D0=BC=D0=B5=D0=BD" + +msgid "Failed to create storage pool" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D1=81=D1= =82=D0=B2=D0=BE=D1=80=D0=B8=D1=82=D0=B8 =D1=80=D0=B5=D0=B7=D0=B5=D1=80=D0= =B2=D0=BD=D0=B5 =D1=81=D1=85=D0=BE=D0=B2=D0=B8=D1=89=D0=B5" + +msgid "Failed to fetch list of domains" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D0=B4=D0=BE=D0=BC=D0=B5=D0=BD=D1=96=D0=B2" + +msgid "Failed to fetch list of interfaces" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D1=96=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5=D0=B9=D1=81=D1=96=D0=B2" + +msgid "Failed to fetch list of networks" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D0=BC=D0=B5=D1=80=D0=B5=D0=B6" + +msgid "Failed to fetch list of pools" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D0=B1=D1=83=D1=84=D0=B5=D1=80=D1=96=D0=B2" =20 -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 #, c-format -msgid "XML data has no '%s' node" -msgstr "=D0=A3 =D0=B4=D0=B0=D0=BD=D0=B8=D1=85 XML =D0=BD=D0=B5=D0=BC=D0=B0= =D1=94 =D0=B2=D1=83=D0=B7=D0=BB=D0=B0 =C2=AB%s=C2=BB" +msgid "Got virStreamRecv error in %s" +msgstr "=D0=9E=D1=82=D1=80=D0=B8=D0=BC=D0=B0=D0=BD=D0=BE =D0=BF=D0=BE=D0= =B2=D1=96=D0=B4=D0=BE=D0=BC=D0=BB=D0=B5=D0=BD=D0=BD=D1=8F =D0=BF=D1=80=D0= =BE =D0=BF=D0=BE=D0=BC=D0=B8=D0=BB=D0=BA=D1=83 virStreamRecv =D1=83 %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 msgid "No XML document associated with this config object" msgstr "=D0=97 =D1=86=D0=B8=D0=BC =D0=BE=D0=B1=E2=80=99=D1=94=D0=BA=D1=82= =D0=BE=D0=BC =D0=BD=D0=B0=D0=BB=D0=B0=D1=88=D1=82=D1=83=D0=B2=D0=B0=D0=BD= =D0=BD=D1=8F =D0=BD=D0=B5 =D0=BF=D0=BE=D0=B2=E2=80=99=D1=8F=D0=B7=D0=B0=D0= =BD=D0=BE =D0=B6=D0=BE=D0=B4=D0=BD=D0=BE=D0=B3=D0=BE =D0=B4=D0=BE=D0=BA=D1= =83=D0=BC=D0=B5=D0=BD=D1=82=D0=B0 XML" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 +msgid "No XML document to parse" +msgstr "=D0=9D=D0=B5=D0=BC=D0=B0=D1=94 =D0=B4=D0=BE=D0=BA=D1=83=D0=BC=D0= =B5=D0=BD=D1=82=D0=B0 XML =D0=B4=D0=BB=D1=8F =D0=BE=D0=B1=D1=80=D0=BE=D0=B1= =D0=BA=D0=B8" + msgid "No XML schema associated with this config object" msgstr "=D0=97 =D1=86=D0=B8=D0=BC =D0=BE=D0=B1=E2=80=99=D1=94=D0=BA=D1=82= =D0=BE=D0=BC =D0=BD=D0=B0=D0=BB=D0=B0=D1=88=D1=82=D1=83=D0=B2=D0=B0=D0=BD= =D0=BD=D1=8F =D0=BD=D0=B5 =D0=BF=D0=BE=D0=B2=E2=80=99=D1=8F=D0=B7=D0=B0=D0= =BD=D0=BE =D0=B6=D0=BE=D0=B4=D0=BD=D0=BE=D1=97 =D1=81=D1=85=D0=B5=D0=BC=D0= =B8 XML" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 #, c-format msgid "Unable to create RNG parser for %s" msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D1=81=D1= =82=D0=B2=D0=BE=D1=80=D0=B8=D1=82=D0=B8 =D0=BE=D0=B1=D1=80=D0=BE=D0=B1=D0= =BD=D0=B8=D0=BA RNG =D0=B4=D0=BB=D1=8F %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D0= =B1=D1=80=D0=BE=D0=B1=D0=B8=D1=82=D0=B8 RNG, %s" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 #, c-format msgid "Unable to create RNG validation context %s" msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D1=81=D1= =82=D0=B2=D0=BE=D1=80=D0=B8=D1=82=D0=B8 =D0=BA=D0=BE=D0=BD=D1=82=D0=B5=D0= =BA=D1=81=D1=82 =D0=BF=D0=B5=D1=80=D0=B5=D0=B2=D1=96=D1=80=D0=BA=D0=B8 RNG,= %s" =20 -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BF=D0= =B5=D1=80=D0=B5=D0=B2=D1=96=D1=80=D0=B8=D1=82=D0=B8 =D0=B4=D0=BE=D0=BA=D1= =83=D0=BC=D0=B5=D0=BD=D1=82=D0=B8" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "=D0=97=E2=80=99=D1=94=D0=B4=D0=BD=D0=B0=D0=BD=D0=BD=D1=8F %s =D0= =B2=D0=B6=D0=B5 =D0=B2=D1=96=D0=B4=D0=BA=D1=80=D0=B8=D1=82=D0=BE" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=B2=D1= =96=D0=B4=D0=BA=D1=80=D0=B8=D1=82=D0=B8 %s" +msgid "Unable to get capabilities" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D0=BC=D0=BE=D0=B6=D0=BB=D0=B8=D0=B2=D0=BE=D1=81=D1=82=D0=B5=D0=B9" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 msgid "Unable to get connection URI" msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D0=B0=D0=B4=D1=80=D0=B5=D1=81=D1= =83 =D0=B7=E2=80=99=D1=94=D0=B4=D0=BD=D0=B0=D0=BD=D0=BD=D1=8F" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "=D0=97'=D1=94=D0=B4=D0=BD=D0=B0=D0=BD=D0=BD=D1=8F =D0=BD=D0=B5 =D0= =B2=D1=96=D0=B4=D0=BA=D1=80=D0=B8=D1=82=D0=BE" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D0=B4=D0=BE=D0=BC=D0=B5=D0=BD=D1=96=D0=B2" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D0=B1=D1=83=D1=84=D0=B5=D1=80=D1=96=D0=B2" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "=D0=97=E2=80=99=D1=94=D0=B4=D0=BD=D0=B0=D0=BD=D0=BD=D1=8F =D0=BD= =D0=B5 =D0=B2=D1=96=D0=B4=D0=BA=D1=80=D0=B8=D1=82=D0=BE" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 msgid "Unable to get hypervisor name" msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D0=BD=D0=B0=D0=B7=D0=B2=D1=83 =D0= =B3=D1=96=D0=BF=D0=B5=D1=80=D0=B2=D1=96=D0=B7=D0=BE=D1=80=D0=B0" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 msgid "Unable to get hypervisor version" msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D0=B2=D0=B5=D1=80=D1=81=D1=96=D1= =8E =D0=B3=D1=96=D0=BF=D0=B5=D1=80=D0=B2=D1=96=D0=B7=D0=BE=D1=80=D0=B0" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D1=81=D1= =82=D0=B2=D0=BE=D1=80=D0=B8=D1=82=D0=B8 =D0=B4=D0=BE=D0=BC=D0=B5=D0=BD" +msgid "Unable to get node info" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D0=B4=D0=B0=D0=BD=D1=96 =D1=89=D0= =BE=D0=B4=D0=BE =D0=B2=D1=83=D0=B7=D0=BB=D0=B0" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D1=96=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5=D0=B9=D1=81=D1=96=D0=B2" +#, c-format +msgid "Unable to open %s" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=B2=D1= =96=D0=B4=D0=BA=D1=80=D0=B8=D1=82=D0=B8 %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D0=BC=D0=B5=D1=80=D0=B5=D0=B6" +#, c-format +msgid "Unable to parse RNG %s" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D0= =B1=D1=80=D0=BE=D0=B1=D0=B8=D1=82=D0=B8 RNG, %s" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D1=81=D1= =82=D0=B2=D0=BE=D1=80=D0=B8=D1=82=D0=B8 =D1=80=D0=B5=D0=B7=D0=B5=D1=80=D0= =B2=D0=BD=D0=B5 =D1=81=D1=85=D0=BE=D0=B2=D0=B8=D1=89=D0=B5" +msgid "Unable to parse configuration" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D0= =B1=D1=80=D0=BE=D0=B1=D0=B8=D1=82=D0=B8 =D0=BD=D0=B0=D0=BB=D0=B0=D1=88=D1= =82=D1=83=D0=B2=D0=B0=D0=BD=D0=BD=D1=8F" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D0=B4=D0=B0=D0=BD=D1=96 =D1=89=D0= =BE=D0=B4=D0=BE =D0=B2=D1=83=D0=B7=D0=BB=D0=B0" +msgid "Unable to perform RecvAll" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=B2=D0= =B8=D0=BA=D0=BE=D0=BD=D0=B0=D1=82=D0=B8 RecvAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BE=D1= =82=D1=80=D0=B8=D0=BC=D0=B0=D1=82=D0=B8 =D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0= =BA =D0=BC=D0=BE=D0=B6=D0=BB=D0=B8=D0=B2=D0=BE=D1=81=D1=82=D0=B5=D0=B9" +msgid "Unable to perform SendAll" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=B2=D0= =B8=D0=BA=D0=BE=D0=BD=D0=B0=D1=82=D0=B8 SendAll" =20 -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 msgid "Unable to restore domain" msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=B2=D1= =96=D0=B4=D0=BD=D0=BE=D0=B2=D0=B8=D1=82=D0=B8 =D0=B4=D0=BE=D0=BC=D0=B5=D0= =BD" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "=D0=92=D0=B8=D0=BA=D0=BB=D0=B8=D0=BA virStreamRecv =D0=B7=D0=B0=D0= =B1=D0=BB=D0=BE=D0=BA=D1=83=D1=94=D1=82=D1=8C=D1=81=D1=8F" +msgid "Unable to validate doc" +msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=BF=D0= =B5=D1=80=D0=B5=D0=B2=D1=96=D1=80=D0=B8=D1=82=D0=B8 =D0=B4=D0=BE=D0=BA=D1= =83=D0=BC=D0=B5=D0=BD=D1=82=D0=B8" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 #, c-format -msgid "Got virStreamRecv error in %s" -msgstr "=D0=9E=D1=82=D1=80=D0=B8=D0=BC=D0=B0=D0=BD=D0=BE =D0=BF=D0=BE=D0= =B2=D1=96=D0=B4=D0=BE=D0=BC=D0=BB=D0=B5=D0=BD=D0=BD=D1=8F =D0=BF=D1=80=D0= =BE =D0=BF=D0=BE=D0=BC=D0=B8=D0=BB=D0=BA=D1=83 virStreamRecv =D1=83 %s" +msgid "XML data has no '%s' node" +msgstr "=D0=A3 =D0=B4=D0=B0=D0=BD=D0=B8=D1=85 XML =D0=BD=D0=B5=D0=BC=D0=B0= =D1=94 =D0=B2=D1=83=D0=B7=D0=BB=D0=B0 =C2=AB%s=C2=BB" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=B2=D0= =B8=D0=BA=D0=BE=D0=BD=D0=B0=D1=82=D0=B8 RecvAll" +msgid "virStreamRecv call would block" +msgstr "=D0=92=D0=B8=D0=BA=D0=BB=D0=B8=D0=BA virStreamRecv =D0=B7=D0=B0=D0= =B1=D0=BB=D0=BE=D0=BA=D1=83=D1=94=D1=82=D1=8C=D1=81=D1=8F" =20 -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 msgid "virStreamSend call would block" msgstr "=D0=92=D0=B8=D0=BA=D0=BB=D0=B8=D0=BA virStreamSend =D0=B7=D0=B0=D0= =B1=D0=BB=D0=BE=D0=BA=D1=83=D1=94=D1=82=D1=8C=D1=81=D1=8F" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "=D0=9D=D0=B5 =D0=B2=D0=B4=D0=B0=D0=BB=D0=BE=D1=81=D1=8F =D0=B2=D0= =B8=D0=BA=D0=BE=D0=BD=D0=B0=D1=82=D0=B8 SendAll" diff --git a/po/ur.mini.po b/po/ur.mini.po new file mode 100644 index 0000000..0fcb551 --- /dev/null +++ b/po/ur.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:24+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/libvirt-glib/" +"language/ur/)\n" +"Language: ur\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/ur.po b/po/ur.po deleted file mode 100644 index 0a5ad02..0000000 --- a/po/ur.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:24+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Urdu (http://www.transifex.com/projects/p/libvirt-glib/" -"language/ur/)\n" -"Language: ur\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/vi.mini.po b/po/vi.mini.po new file mode 100644 index 0000000..f1ebeed --- /dev/null +++ b/po/vi.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:24+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/libvirt-gl= ib/" +"language/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/vi.po b/po/vi.po deleted file mode 100644 index c37c9d8..0000000 --- a/po/vi.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:24+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/libvirt-gl= ib/" -"language/vi/)\n" -"Language: vi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/wba.mini.po b/po/wba.mini.po new file mode 100644 index 0000000..f409817 --- /dev/null +++ b/po/wba.mini.po @@ -0,0 +1,19 @@ +# Libvirt package strings. +# Copyright (C) 2019 The Libvirt authors +# This file is distributed under the same license as the libvirt-glib pack= age. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: Warao\n" +"Language: wba\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/wba.po b/po/wba.po deleted file mode 100644 index 552d513..0000000 --- a/po/wba.po +++ /dev/null @@ -1,152 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: libvirt-glib\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: wba\n" -"Language: wba\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0\n" -"X-Generator: Zanata 3.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/yo.mini.po b/po/yo.mini.po new file mode 100644 index 0000000..e1ada07 --- /dev/null +++ b/po/yo.mini.po @@ -0,0 +1,19 @@ +# Libvirt package strings. +# Copyright (C) 2019 The Libvirt authors +# This file is distributed under the same license as the libvirt-glib pack= age. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: Yoruba\n" +"Language: yo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1)\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/yo.po b/po/yo.po deleted file mode 100644 index 0b6c0b7..0000000 --- a/po/yo.po +++ /dev/null @@ -1,152 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: libvirt-glib\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Yoruba\n" -"Language: yo\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1)\n" -"X-Generator: Zanata 3.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/zh_CN.mini.po b/po/zh_CN.mini.po new file mode 100644 index 0000000..791f047 --- /dev/null +++ b/po/zh_CN.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:24+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/libvi= rt-" +"glib/language/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/zh_CN.po b/po/zh_CN.po deleted file mode 100644 index 318fca5..0000000 --- a/po/zh_CN.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:24+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/libvi= rt-" -"glib/language/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/zh_HK.mini.po b/po/zh_HK.mini.po new file mode 100644 index 0000000..139a917 --- /dev/null +++ b/po/zh_HK.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:24+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/" +"libvirt-glib/language/zh_HK/)\n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/zh_HK.po b/po/zh_HK.po deleted file mode 100644 index e295ce6..0000000 --- a/po/zh_HK.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:24+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/" -"libvirt-glib/language/zh_HK/)\n" -"Language: zh_HK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/zh_TW.mini.po b/po/zh_TW.mini.po new file mode 100644 index 0000000..36a4ba6 --- /dev/null +++ b/po/zh_TW.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:24+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/libv= irt-" +"glib/language/zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D1; plural=3D0;\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/zh_TW.po b/po/zh_TW.po deleted file mode 100644 index 5518788..0000000 --- a/po/zh_TW.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:24+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/libv= irt-" -"glib/language/zh_TW/)\n" -"Language: zh_TW\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D1; plural=3D0;\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" diff --git a/po/zu.mini.po b/po/zu.mini.po new file mode 100644 index 0000000..df9b304 --- /dev/null +++ b/po/zu.mini.po @@ -0,0 +1,20 @@ +# Libvirt package strings. +# Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: libvirt-glib 2.0.0\n" +"Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n" +"POT-Creation-Date: 2019-02-19 18:35+0000\n" +"PO-Revision-Date: 2014-12-17 12:25+0000\n" +"Last-Translator: Copied by Zanata \n" +"Language-Team: Zulu (http://www.transifex.com/projects/p/libvirt-glib/" +"language/zu/)\n" +"Language: zu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=3DUTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" +"X-Generator: Zanata 4.6.2\n" diff --git a/po/zu.po b/po/zu.po deleted file mode 100644 index b793fa2..0000000 --- a/po/zu.po +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 10:55+0100\n" -"PO-Revision-Date: 2014-12-17 12:25+0000\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Zulu (http://www.transifex.com/projects/p/libvirt-glib/" -"language/zu/)\n" -"Language: zu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=3DUTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3D2; plural=3D(n !=3D 1);\n" -"X-Generator: Zanata 4.6.2\n" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141 -msgid "No XML document to parse" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149 -msgid "Unable to parse configuration" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157 -#, c-format -msgid "XML data has no '%s' node" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:206 -msgid "No XML document associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:214 -msgid "No XML schema associated with this config object" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:223 -#, c-format -msgid "Unable to create RNG parser for %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:233 -#, c-format -msgid "Unable to parse RNG %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:245 -#, c-format -msgid "Unable to create RNG validation context %s" -msgstr "" - -#: ../libvirt-gconfig/libvirt-gconfig-object.c:255 -msgid "Unable to validate doc" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:438 -#, c-format -msgid "Connection %s is already open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:453 -#, c-format -msgid "Unable to open %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:464 -msgid "Unable to get connection URI" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:729 -#: ../libvirt-gobject/libvirt-gobject-connection.c:817 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1504 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1761 -msgid "Connection is not open" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:742 -msgid "Failed to fetch list of domains" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:833 -msgid "Failed to fetch list of pools" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1034 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1073 -msgid "Connection is not opened" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1041 -msgid "Unable to get hypervisor name" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1079 -msgid "Unable to get hypervisor version" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1394 -#: ../libvirt-gobject/libvirt-gobject-connection.c:1449 -msgid "Failed to create domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1520 -msgid "Failed to fetch list of interfaces" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:1777 -msgid "Failed to fetch list of networks" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2018 -msgid "Failed to create storage pool" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2061 -msgid "Unable to get node info" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2101 -msgid "Unable to get capabilities" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-connection.c:2225 -msgid "Unable to restore domain" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:347 -msgid "virStreamRecv call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:350 -#: ../libvirt-gobject/libvirt-gobject-stream.c:466 -#, c-format -msgid "Got virStreamRecv error in %s" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:415 -msgid "Unable to perform RecvAll" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:463 -msgid "virStreamSend call would block" -msgstr "" - -#: ../libvirt-gobject/libvirt-gobject-stream.c:531 -msgid "Unable to perform SendAll" -msgstr "" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Tue Apr 30 04:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1550843676769152.1888262375885; Fri, 22 Feb 2019 05:54:36 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 27E6830B258B; Fri, 22 Feb 2019 13:54:35 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E8CD7282E4; Fri, 22 Feb 2019 13:54:34 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 9FC88247EC; Fri, 22 Feb 2019 13:54:34 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x1KHp0v1020168 for ; Wed, 20 Feb 2019 12:51:00 -0500 Received: by smtp.corp.redhat.com (Postfix) id E1F1618B96; Wed, 20 Feb 2019 17:51:00 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-112-26.ams2.redhat.com [10.36.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id D84F518BA1; Wed, 20 Feb 2019 17:50:59 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Wed, 20 Feb 2019 17:49:18 +0000 Message-Id: <20190220174918.24379-16-berrange@redhat.com> In-Reply-To: <20190220174918.24379-1-berrange@redhat.com> References: <20190220174918.24379-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-loop: libvir-list@redhat.com Subject: [libvirt] [glib PATCH v2 15/15] po: refresh translations from zanata X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.41]); Fri, 22 Feb 2019 13:54:35 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 --- po/cs.mini.po | 34 +++++++++++++++++----------------- po/fr.mini.po | 3 +++ 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/po/cs.mini.po b/po/cs.mini.po index 35389e7..4481728 100644 --- a/po/cs.mini.po +++ b/po/cs.mini.po @@ -23,7 +23,7 @@ msgstr "" =20 #, c-format msgid "Connection %s is already open" -msgstr "Spojen=C3=AD %s je ji=C5=BE nav=C3=A1z=C3=A1no" +msgstr "Spojen=C3=AD %s u=C5=BE je nav=C3=A1z=C3=A1no" =20 msgid "Connection is not open" msgstr "Spojen=C3=AD nen=C3=AD nav=C3=A1z=C3=A1no" @@ -35,10 +35,10 @@ msgid "Failed to create domain" msgstr "Nepoda=C5=99ilo se vytvo=C5=99it dom=C3=A9nu" =20 msgid "Failed to create storage pool" -msgstr "Nepoda=C5=99ilo se vytvo=C5=99it =C3=BAlo=C5=BEn=C3=BD prostor" +msgstr "Nepoda=C5=99ilo se vytvo=C5=99it fond =C3=BAlo=C5=BEi=C5=A1=C5=A5" =20 msgid "Failed to fetch list of domains" -msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam dom=C3=A9no " +msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam dom=C3=A9n" =20 msgid "Failed to fetch list of interfaces" msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam rozhran=C3=AD" @@ -51,50 +51,50 @@ msgstr "Nepoda=C5=99ilo se na=C4=8D=C3=ADst seznam =C3= =BAlo=C5=BEi=C5=A1=C5=A5" =20 #, c-format msgid "Got virStreamRecv error in %s" -msgstr "M=C3=A1 chybu virStreamRecv v %s" +msgstr "Obdr=C5=BEena chyba virStreamRecv v %s" =20 msgid "No XML document associated with this config object" -msgstr "=C5=BD=C3=A1dn=C3=BD XML dokument nen=C3=AD asociov=C3=A1n s t=C3= =ADmto konfigura=C4=8Dn=C3=ADm objektem" +msgstr "S t=C3=ADmto objektem nastaven=C3=AD nen=C3=AD spojen =C5=BE=C3=A1= dn=C3=BD XML dokument" =20 msgid "No XML document to parse" -msgstr "=C5=BD=C3=A1dn=C3=BD XML dokument k parsov=C3=A1n=C3=AD" +msgstr "=C5=BD=C3=A1dn=C3=BD XML dokument ke zpracov=C3=A1n=C3=AD" =20 msgid "No XML schema associated with this config object" -msgstr "=C5=BD=C3=A1dn=C3=A9 XML sch=C3=A9ma nen=C3=AD spojeno s t=C3=ADmt= o konfigura=C4=8Dn=C3=ADm objektem" +msgstr "S t=C3=ADmto objektem nastaven=C3=AD nen=C3=AD spojen =C5=BE=C3=A1= dn=C3=A9 XML schema" =20 #, c-format msgid "Unable to create RNG parser for %s" -msgstr "Nelze vytvo=C5=99it RNG parser pro %s" +msgstr "Neda=C5=99=C3=AD se vytvo=C5=99it RNG parser pro %s" =20 #, c-format msgid "Unable to create RNG validation context %s" -msgstr "Nelze vytvo=C5=99it ov=C4=9B=C5=99en=C3=AD kontextu RNG %s" +msgstr "Neda=C5=99=C3=AD se vytvo=C5=99it ov=C4=9B=C5=99en=C3=AD kontextu = RNG %s" =20 msgid "Unable to get capabilities" -msgstr "Nepoda=C5=99ilo se z=C3=ADskat schopnosti" +msgstr "Nepoda=C5=99ilo se z=C3=ADskat mo=C5=BEnosti" =20 msgid "Unable to get connection URI" -msgstr "Nelze z=C3=ADskat URI p=C5=99ipojen=C3=AD" +msgstr "Neda=C5=99=C3=AD se z=C3=ADskat URI p=C5=99ipojen=C3=AD" =20 msgid "Unable to get hypervisor name" msgstr "Nezda=C5=99ilo se z=C3=ADskat n=C3=A1zev hypervisoru" =20 msgid "Unable to get hypervisor version" -msgstr "Nepoda=C5=99ilo se z=C3=ADskat verzi hypervizora" +msgstr "Nepoda=C5=99ilo se z=C3=ADskat verzi hypervizoru" =20 msgid "Unable to get node info" msgstr "Nepoda=C5=99ilo se z=C3=ADskat informace o uzlu" =20 #, c-format msgid "Unable to open %s" -msgstr "Nelze otev=C5=99=C3=ADt %s" +msgstr "Neda=C5=99=C3=AD se otev=C5=99=C3=ADt %s" =20 #, c-format msgid "Unable to parse RNG %s" -msgstr "Nelze parsovat RNG %s" +msgstr "Neda=C5=99=C3=AD se zpracovat RNG %s" =20 msgid "Unable to parse configuration" -msgstr "Nelze parsovat konfiguraci" +msgstr "Neda=C5=99=C3=AD se zpracovat nastaven=C3=AD" =20 msgid "Unable to perform RecvAll" msgstr "Nepoda=C5=99ilo se prov=C3=A9st RecvAll" @@ -106,11 +106,11 @@ msgid "Unable to restore domain" msgstr "Nepoda=C5=99ilo se obnovit dom=C3=A9nu" =20 msgid "Unable to validate doc" -msgstr "Nelze ov=C4=9B=C5=99it dokument" +msgstr "Dokument se neda=C5=99=C3=AD ov=C4=9B=C5=99it" =20 #, c-format msgid "XML data has no '%s' node" -msgstr "XML data nemaj=C3=AD uzel '%s'" +msgstr "XML data nemaj=C3=AD uzel =E2=80=9E%s=E2=80=9C" =20 msgid "virStreamRecv call would block" msgstr "Vol=C3=A1n=C3=AD virStreamRecv by blokovalo" diff --git a/po/fr.mini.po b/po/fr.mini.po index c61b518..a025803 100644 --- a/po/fr.mini.po +++ b/po/fr.mini.po @@ -60,6 +60,9 @@ msgstr "Aucun document XML associ=C3=A9 avec cet objet de= configuration" msgid "No XML document to parse" msgstr "Aucun document XML =C3=A0 analyser" =20 +msgid "No XML schema associated with this config object" +msgstr "Aucun sch=C3=A9ma XML associ=C3=A9 avec cet objet de configuration" + #, c-format msgid "Unable to create RNG parser for %s" msgstr "Impossible de cr=C3=A9er l'analyseur RNG pour %s" --=20 2.20.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list