mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 03:12:22 +00:00
Update to work with new policy kit APIs
This commit is contained in:
parent
caad8777e0
commit
104cc98636
@ -1,3 +1,12 @@
|
|||||||
|
Wed Feb 20 11:52:27 EST 2008 Daniel P. Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
|
* qemud/remote.c: Update to non-deprecated PolicyKit apis
|
||||||
|
* src/libvirt.c: call out to polkit-grant/polkit-auth to
|
||||||
|
obtain credentials
|
||||||
|
* po/*.po, po/libvirt.pot: Re-generate for new translatable
|
||||||
|
strings
|
||||||
|
* configure.in: Add test for polkit apis & CLI programs
|
||||||
|
|
||||||
Wed Feb 20 11:03:27 EST 2008 Daniel P. Berrange <berrange@redhat.com>
|
Wed Feb 20 11:03:27 EST 2008 Daniel P. Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
* po/*.po, po/libvirt.pot: Re-generate to pull in latest
|
* po/*.po, po/libvirt.pot: Re-generate to pull in latest
|
||||||
|
17
configure.in
17
configure.in
@ -441,6 +441,23 @@ if test "x$with_polkit" = "xyes" -o "x$with_polkit" = "xcheck"; then
|
|||||||
if test "x$with_polkit" = "xyes" ; then
|
if test "x$with_polkit" = "xyes" ; then
|
||||||
AC_DEFINE_UNQUOTED(HAVE_POLKIT, 1,
|
AC_DEFINE_UNQUOTED(HAVE_POLKIT, 1,
|
||||||
[use PolicyKit for UNIX socket access checks])
|
[use PolicyKit for UNIX socket access checks])
|
||||||
|
|
||||||
|
old_CFLAGS=$CFLAGS
|
||||||
|
old_LDFLAGS=$LDFLAGS
|
||||||
|
CFLAGS="$CFLAGS $POLKIT_CFLAGS"
|
||||||
|
LDFLAGS="$LDFLAGS $POLKIT_LIBS"
|
||||||
|
AC_CHECK_FUNCS(polkit_context_is_caller_authorized)
|
||||||
|
CFLAGS="$old_CFLAGS"
|
||||||
|
LDFLAGS="$old_LDFLAGS"
|
||||||
|
|
||||||
|
AC_PATH_PROG(POLKIT_GRANT, polkit-grant)
|
||||||
|
if test "x$POLKIT_GRANT" != "x"; then
|
||||||
|
AC_DEFINE_UNQUOTED([POLKIT_GRANT],["$POLKIT_GRANT"],[Location of polkit-grant program])
|
||||||
|
fi
|
||||||
|
AC_PATH_PROG(POLKIT_AUTH, polkit-auth)
|
||||||
|
if test "x$POLKIT_AUTH" != "x"; then
|
||||||
|
AC_DEFINE_UNQUOTED([POLKIT_AUTH],["$POLKIT_AUTH"],[Location of polkit-auth program])
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(HAVE_POLKIT, [test "x$with_polkit" = "xyes"])
|
AM_CONDITIONAL(HAVE_POLKIT, [test "x$with_polkit" = "xyes"])
|
||||||
|
21
po/af.po
21
po/af.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/am.po
21
po/am.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/ar.po
21
po/ar.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/as.po
21
po/as.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: as\n"
|
"Project-Id-Version: as\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-25 17:39+0530\n"
|
"PO-Revision-Date: 2007-09-25 17:39+0530\n"
|
||||||
"Last-Translator: Amitakhya Phukan <aphukan@fedoraproject.org>\n"
|
"Last-Translator: Amitakhya Phukan <aphukan@fedoraproject.org>\n"
|
||||||
"Language-Team: Assamese\n"
|
"Language-Team: Assamese\n"
|
||||||
@ -234,17 +234,22 @@ msgstr "%s বিন্যাস নথিপত্ৰ পঢ়োঁতে বি
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "বিন্যাস নথিপত্ৰ লিখিবলৈ বিফল"
|
msgstr "বিন্যাস নথিপত্ৰ লিখিবলৈ বিফল"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -652,7 +657,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "সংযোগ বিতৰণ কৰা হৈছে"
|
msgstr "সংযোগ বিতৰণ কৰা হৈছে"
|
||||||
|
|
||||||
@ -741,17 +746,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "%s লৈ সংযোগ কৰিব পৰা ন'গ'ল"
|
msgstr "%s লৈ সংযোগ কৰিব পৰা ন'গ'ল"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "সংযোগ বিতৰণ কৰা হৈছে"
|
msgstr "সংযোগ বিতৰণ কৰা হৈছে"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
21
po/be.po
21
po/be.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/bg.po
21
po/bg.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-05 08:58+0300\n"
|
"PO-Revision-Date: 2007-09-05 08:58+0300\n"
|
||||||
"Last-Translator: Doncho N. Gunchev <gunchev@gmail.com>\n"
|
"Last-Translator: Doncho N. Gunchev <gunchev@gmail.com>\n"
|
||||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||||
@ -232,17 +232,22 @@ msgstr "Грешка при създаване на неактивен доме
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Грешка при създаване на неактивен домейн %s\n"
|
msgstr "Грешка при създаване на неактивен домейн %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "заделяне на връзки"
|
msgstr "заделяне на връзки"
|
||||||
|
|
||||||
@ -748,17 +753,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "не може да се осъществи връзка с %s"
|
msgstr "не може да се осъществи връзка с %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "заделяне на връзки"
|
msgstr "заделяне на връзки"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "информацията за домейна е невярна, domid не е число"
|
msgstr "информацията за домейна е невярна, domid не е число"
|
||||||
|
21
po/bn.po
21
po/bn.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/bn_IN.po
21
po/bn_IN.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bn_IN\n"
|
"Project-Id-Version: bn_IN\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-08-28 15:08+0530\n"
|
"PO-Revision-Date: 2007-08-28 15:08+0530\n"
|
||||||
"Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n"
|
"Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n"
|
||||||
"Language-Team: Bengali INDIA\n"
|
"Language-Team: Bengali INDIA\n"
|
||||||
@ -234,17 +234,22 @@ msgstr "নিষ্ক্রিয় ডোমেইন %s নির্মাণ
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "নিষ্ক্রিয় ডোমেইন %s নির্মাণ করতে ব্যর্থ\n"
|
msgstr "নিষ্ক্রিয় ডোমেইন %s নির্মাণ করতে ব্যর্থ\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -657,7 +662,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "সংযোগ বরাদ্দকরণ"
|
msgstr "সংযোগ বরাদ্দকরণ"
|
||||||
|
|
||||||
@ -750,17 +755,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "%s-র সাথে সংযোগ করতে ব্যর্থ"
|
msgstr "%s-র সাথে সংযোগ করতে ব্যর্থ"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "সংযোগ বরাদ্দকরণ"
|
msgstr "সংযোগ বরাদ্দকরণ"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "ডোমেইন সংক্রান্ত তথ্য অসম্পূর্ণ, domid সংখ্যামূলক নয়"
|
msgstr "ডোমেইন সংক্রান্ত তথ্য অসম্পূর্ণ, domid সংখ্যামূলক নয়"
|
||||||
|
21
po/bs.po
21
po/bs.po
@ -4,7 +4,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: hr\n"
|
"Project-Id-Version: hr\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-01-23 16:29+0100\n"
|
"PO-Revision-Date: 2007-01-23 16:29+0100\n"
|
||||||
"Last-Translator: Adnan Hodzic <AbsintheSyringe@gmail.com>\n"
|
"Last-Translator: Adnan Hodzic <AbsintheSyringe@gmail.com>\n"
|
||||||
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
|
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
|
||||||
@ -228,17 +228,22 @@ msgstr "Izrada domene %s nije uspjela\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Izrada domene %s nije uspjela\n"
|
msgstr "Izrada domene %s nije uspjela\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -652,7 +657,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "dodjeljivanje veze"
|
msgstr "dodjeljivanje veze"
|
||||||
|
|
||||||
@ -748,17 +753,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "nije moguće uspostaviti vezu s %s"
|
msgstr "nije moguće uspostaviti vezu s %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "dodjeljivanje veze"
|
msgstr "dodjeljivanje veze"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "podaci domene nisu ispravni, domid nije broj"
|
msgstr "podaci domene nisu ispravni, domid nije broj"
|
||||||
|
21
po/ca.po
21
po/ca.po
@ -20,7 +20,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-08 10:20-0100\n"
|
"PO-Revision-Date: 2007-09-08 10:20-0100\n"
|
||||||
"Last-Translator: Xavier Conde Rueda <xavi.conde@gmail.com>\n"
|
"Last-Translator: Xavier Conde Rueda <xavi.conde@gmail.com>\n"
|
||||||
"Language-Team: Catalan <fedora@softcatala.net>\n"
|
"Language-Team: Catalan <fedora@softcatala.net>\n"
|
||||||
@ -243,17 +243,22 @@ msgstr "No s'ha pogut crear el domini inactiu %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "No s'ha pogut crear el domini inactiu %s\n"
|
msgstr "No s'ha pogut crear el domini inactiu %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -666,7 +671,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "s'està assignant la connexió"
|
msgstr "s'està assignant la connexió"
|
||||||
|
|
||||||
@ -760,17 +765,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "no s'ha pogut connectar a %s"
|
msgstr "no s'ha pogut connectar a %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "s'està assignant la connexió"
|
msgstr "s'està assignant la connexió"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "la informació del domini és incorrecta, domid no és numèric"
|
msgstr "la informació del domini és incorrecta, domid no és numèric"
|
||||||
|
21
po/cs.po
21
po/cs.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: cs\n"
|
"Project-Id-Version: cs\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-19 19:45+0100\n"
|
"PO-Revision-Date: 2007-09-19 19:45+0100\n"
|
||||||
"Last-Translator: Vojtěch Horký <vojta.horky@seznam.cz>\n"
|
"Last-Translator: Vojtěch Horký <vojta.horky@seznam.cz>\n"
|
||||||
"Language-Team: Czech <cs@li.org>\n"
|
"Language-Team: Czech <cs@li.org>\n"
|
||||||
@ -230,17 +230,22 @@ msgstr "Nepodařilo se vytvořit neaktivní doménu %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Nepodařilo se vytvořit neaktivní doménu %s\n"
|
msgstr "Nepodařilo se vytvořit neaktivní doménu %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -653,7 +658,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "alokuji spojení"
|
msgstr "alokuji spojení"
|
||||||
|
|
||||||
@ -746,17 +751,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "nepodařilo se připojit k %s"
|
msgstr "nepodařilo se připojit k %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "alokuji spojení"
|
msgstr "alokuji spojení"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "nesprávná informace o doméně, domid není číslo"
|
msgstr "nesprávná informace o doméně, domid není číslo"
|
||||||
|
21
po/cy.po
21
po/cy.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/da.po
21
po/da.po
@ -11,7 +11,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: da\n"
|
"Project-Id-Version: da\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-05-10 15:48+0200\n"
|
"PO-Revision-Date: 2007-05-10 15:48+0200\n"
|
||||||
"Last-Translator: Keld Simonsen <keld@rap.dk>\n"
|
"Last-Translator: Keld Simonsen <keld@rap.dk>\n"
|
||||||
"Language-Team: <da@li.org>\n"
|
"Language-Team: <da@li.org>\n"
|
||||||
@ -235,17 +235,22 @@ msgstr "Kunne ikke oprette inaktivt domæne %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Kunne ikke oprette inaktivt domæne %s\n"
|
msgstr "Kunne ikke oprette inaktivt domæne %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -659,7 +664,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allokerer forbindelse"
|
msgstr "allokerer forbindelse"
|
||||||
|
|
||||||
@ -752,17 +757,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "kunne ikke forbinde til %s"
|
msgstr "kunne ikke forbinde til %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allokerer forbindelse"
|
msgstr "allokerer forbindelse"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domæneinformation fejl, domid er ikke numerisk"
|
msgstr "domæneinformation fejl, domid er ikke numerisk"
|
||||||
|
21
po/de.po
21
po/de.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: de\n"
|
"Project-Id-Version: de\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-10-13 00:15+2000\n"
|
"PO-Revision-Date: 2007-10-13 00:15+2000\n"
|
||||||
"Last-Translator: Robert Scheck <redhat@linuxnetz.de>\n"
|
"Last-Translator: Robert Scheck <redhat@linuxnetz.de>\n"
|
||||||
"Language-Team: <de@li.org>\n"
|
"Language-Team: <de@li.org>\n"
|
||||||
@ -234,17 +234,22 @@ msgstr "Fehler beim Erstellen einer inaktiven Domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Fehler beim Erstellen einer inaktiven Domain %s\n"
|
msgstr "Fehler beim Erstellen einer inaktiven Domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -657,7 +662,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "Verbindung zuweisen"
|
msgstr "Verbindung zuweisen"
|
||||||
|
|
||||||
@ -750,17 +755,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "Verbindung mit %s fehlgeschlagen"
|
msgstr "Verbindung mit %s fehlgeschlagen"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "Verbindung zuweisen"
|
msgstr "Verbindung zuweisen"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "Domaininformation inkorrekt, domid nicht numerisch"
|
msgstr "Domaininformation inkorrekt, domid nicht numerisch"
|
||||||
|
21
po/el.po
21
po/el.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/en_GB.po
21
po/en_GB.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-06-11 13:51+0000\n"
|
"PO-Revision-Date: 2007-06-11 13:51+0000\n"
|
||||||
"Last-Translator: Abigail Brady <morwen@evilmagic.org>\n"
|
"Last-Translator: Abigail Brady <morwen@evilmagic.org>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@ -230,17 +230,22 @@ msgstr "Failed to create inactive domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create inactive domain %s\n"
|
msgstr "Failed to create inactive domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -654,7 +659,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -747,17 +752,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/es.po
21
po/es.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: es\n"
|
"Project-Id-Version: es\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-12 09:44-0300\n"
|
"PO-Revision-Date: 2007-12-12 09:44-0300\n"
|
||||||
"Last-Translator: Domingo Becker <domingobecker@gmail.com>\n"
|
"Last-Translator: Domingo Becker <domingobecker@gmail.com>\n"
|
||||||
"Language-Team: Spanish <fedora-trans-es@redhat.com>\n"
|
"Language-Team: Spanish <fedora-trans-es@redhat.com>\n"
|
||||||
@ -234,17 +234,22 @@ msgstr "Falló al crear dominio inactivo %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Falló al crear dominio inactivo %s\n"
|
msgstr "Falló al crear dominio inactivo %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -657,7 +662,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "asignando conexión"
|
msgstr "asignando conexión"
|
||||||
|
|
||||||
@ -750,16 +755,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "no se pudo analizar sintácticamente la URI de conexión"
|
msgstr "no se pudo analizar sintácticamente la URI de conexión"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "asignando conexión"
|
msgstr "asignando conexión"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "la información del dominio es incorrecta, domid no es numérico"
|
msgstr "la información del dominio es incorrecta, domid no es numérico"
|
||||||
|
21
po/et.po
21
po/et.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/eu_ES.po
21
po/eu_ES.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/fa.po
21
po/fa.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/fi.po
21
po/fi.po
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-10-24 01:24+0300\n"
|
"PO-Revision-Date: 2007-10-24 01:24+0300\n"
|
||||||
"Last-Translator: Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>\n"
|
"Last-Translator: Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>\n"
|
||||||
"Language-Team: Finnish <laatu@lokalisointi.org>\n"
|
"Language-Team: Finnish <laatu@lokalisointi.org>\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Epäaktiivisen toimialueen %s luominen epäonnistui\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Epäaktiivisen toimialueen %s luominen epäonnistui\n"
|
msgstr "Epäaktiivisen toimialueen %s luominen epäonnistui\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -654,7 +659,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "varataan yhteyttä"
|
msgstr "varataan yhteyttä"
|
||||||
|
|
||||||
@ -747,17 +752,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "ei voitu yhdistää kohteeseen %s"
|
msgstr "ei voitu yhdistää kohteeseen %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "varataan yhteyttä"
|
msgstr "varataan yhteyttä"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "toimialuetieto on virheellistä, domid ei ole numeerinen"
|
msgstr "toimialuetieto on virheellistä, domid ei ole numeerinen"
|
||||||
|
29
po/fr.po
29
po/fr.po
@ -11,7 +11,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: fr\n"
|
"Project-Id-Version: fr\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-16 01:12+0100\n"
|
"PO-Revision-Date: 2007-12-16 01:12+0100\n"
|
||||||
"Last-Translator: Gauthier Ancelin <gauthier.ancelin@laposte.net>\n"
|
"Last-Translator: Gauthier Ancelin <gauthier.ancelin@laposte.net>\n"
|
||||||
"Language-Team: french <fedora-trans-fr@redhat.com>\n"
|
"Language-Team: french <fedora-trans-fr@redhat.com>\n"
|
||||||
@ -235,17 +235,22 @@ msgstr "Impossible de créer le domaine inactif %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Impossible de créer le domaine inactif %s\n"
|
msgstr "Impossible de créer le domaine inactif %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,7 +663,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocation de connexion"
|
msgstr "allocation de connexion"
|
||||||
|
|
||||||
@ -751,16 +756,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "impossible d'analyser l'URI de connexion"
|
msgstr "impossible d'analyser l'URI de connexion"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocation de connexion"
|
msgstr "allocation de connexion"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "informations de domaine incorrectes, domid non numérique"
|
msgstr "informations de domaine incorrectes, domid non numérique"
|
||||||
@ -2472,8 +2477,8 @@ msgstr "cpulist : format invalide. Chaîne vide."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"cpulist: %s: Invalid format. Expecting digit at position %d (near '%c')."
|
"cpulist: %s: Invalid format. Expecting digit at position %d (near '%c')."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"cpulist : %s : format invalide. Chiffre attendu à la position %d (à côté de "
|
"cpulist : %s : format invalide. Chiffre attendu à la position %d (à côté de « "
|
||||||
"« %c »)."
|
"%c »)."
|
||||||
|
|
||||||
#: src/virsh.c:1773
|
#: src/virsh.c:1773
|
||||||
#, c-format
|
#, c-format
|
||||||
@ -4337,8 +4342,8 @@ msgstr "Impossible d'accéder au réseau : %s"
|
|||||||
#, c-format
|
#, c-format
|
||||||
msgid "Credit scheduler weight parameter (%d) is out of range (1-65535)"
|
msgid "Credit scheduler weight parameter (%d) is out of range (1-65535)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Le paramètre « poids » (%d) du planificateur à répartition de charge est "
|
"Le paramètre « poids » (%d) du planificateur à répartition de charge est hors "
|
||||||
"hors limites (1-65535)"
|
"limites (1-65535)"
|
||||||
|
|
||||||
#: src/xen_internal.c:1333
|
#: src/xen_internal.c:1333
|
||||||
#, c-format
|
#, c-format
|
||||||
|
21
po/gl.po
21
po/gl.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/gu.po
21
po/gu.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gu\n"
|
"Project-Id-Version: gu\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-10-24 14:05+0530\n"
|
"PO-Revision-Date: 2007-10-24 14:05+0530\n"
|
||||||
"Last-Translator: Ankit Patel <ankit@redhat.com>\n"
|
"Last-Translator: Ankit Patel <ankit@redhat.com>\n"
|
||||||
"Language-Team: Gujarati <fedora-trans-gu@redhat.com>\n"
|
"Language-Team: Gujarati <fedora-trans-gu@redhat.com>\n"
|
||||||
@ -240,17 +240,22 @@ msgstr "અસક્રિય ડોમેઈન %s બનાવવામાં
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "અસક્રિય ડોમેઈન %s બનાવવામાં નિષ્ફળ\n"
|
msgstr "અસક્રિય ડોમેઈન %s બનાવવામાં નિષ્ફળ\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -663,7 +668,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "જોડાણ ફાળવી રહ્યા છીએ"
|
msgstr "જોડાણ ફાળવી રહ્યા છીએ"
|
||||||
|
|
||||||
@ -756,17 +761,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "હાયપરવિઝર %s સાથે જોડાઈ શક્યા નહિં"
|
msgstr "હાયપરવિઝર %s સાથે જોડાઈ શક્યા નહિં"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "જોડાણ ફાળવી રહ્યા છીએ"
|
msgstr "જોડાણ ફાળવી રહ્યા છીએ"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "ડોમેઈન જાણકારી અયોગ્ય domid આંકડો નથી"
|
msgstr "ડોમેઈન જાણકારી અયોગ્ય domid આંકડો નથી"
|
||||||
|
21
po/he.po
21
po/he.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/hi.po
21
po/hi.po
@ -11,7 +11,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: hi\n"
|
"Project-Id-Version: hi\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-26 15:52+0530\n"
|
"PO-Revision-Date: 2007-09-26 15:52+0530\n"
|
||||||
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
|
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
|
||||||
"Language-Team: Hindi <hindi.sf.net>\n"
|
"Language-Team: Hindi <hindi.sf.net>\n"
|
||||||
@ -253,17 +253,22 @@ msgstr "निष्क्रिय डोमेन %s बनाने में
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "निष्क्रिय डोमेन %s बनाने में विफल\n"
|
msgstr "निष्क्रिय डोमेन %s बनाने में विफल\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -678,7 +683,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "संबंधन दे रहा है"
|
msgstr "संबंधन दे रहा है"
|
||||||
|
|
||||||
@ -771,17 +776,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "%s से जुड़ नहीं सका"
|
msgstr "%s से जुड़ नहीं सका"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "संबंधन दे रहा है"
|
msgstr "संबंधन दे रहा है"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "डोमेन सूचना गलत domid सांख्यिक नहीं"
|
msgstr "डोमेन सूचना गलत domid सांख्यिक नहीं"
|
||||||
|
21
po/hr.po
21
po/hr.po
@ -2,7 +2,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: hr\n"
|
"Project-Id-Version: hr\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-10-08 05:22+0100\n"
|
"PO-Revision-Date: 2007-10-08 05:22+0100\n"
|
||||||
"Last-Translator: Renato Pavicic <renato<at>translator-shop.org>\n"
|
"Last-Translator: Renato Pavicic <renato<at>translator-shop.org>\n"
|
||||||
"Language-Team: CROATIAN <www.translator-shop.org>\n"
|
"Language-Team: CROATIAN <www.translator-shop.org>\n"
|
||||||
@ -225,17 +225,22 @@ msgstr "Izrada neaktivne domene %s nije uspjela\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Izrada neaktivne domene %s nije uspjela\n"
|
msgstr "Izrada neaktivne domene %s nije uspjela\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -648,7 +653,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "dodjeljivanje veze"
|
msgstr "dodjeljivanje veze"
|
||||||
|
|
||||||
@ -741,17 +746,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "nije moguće uspostaviti vezu s %s"
|
msgstr "nije moguće uspostaviti vezu s %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "dodjeljivanje veze"
|
msgstr "dodjeljivanje veze"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "podaci domene nisu ispravni, domid nije broj"
|
msgstr "podaci domene nisu ispravni, domid nije broj"
|
||||||
|
21
po/hu.po
21
po/hu.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-05-03 21:23+0200\n"
|
"PO-Revision-Date: 2007-05-03 21:23+0200\n"
|
||||||
"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
|
"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@ -233,17 +233,22 @@ msgstr "%s inaktív tartomány létrehozása nem sikerült\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "%s inaktív tartomány létrehozása nem sikerült\n"
|
msgstr "%s inaktív tartomány létrehozása nem sikerült\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -657,7 +662,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "csatlakozás lefoglalása"
|
msgstr "csatlakozás lefoglalása"
|
||||||
|
|
||||||
@ -750,17 +755,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "nem lehet csatlakozni ehhez: %s"
|
msgstr "nem lehet csatlakozni ehhez: %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "csatlakozás lefoglalása"
|
msgstr "csatlakozás lefoglalása"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "a tartományinformáció helytelen - a domid nem numerikus"
|
msgstr "a tartományinformáció helytelen - a domid nem numerikus"
|
||||||
|
21
po/hy.po
21
po/hy.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/id.po
21
po/id.po
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-14 04:27+0700\n"
|
"PO-Revision-Date: 2007-09-14 04:27+0700\n"
|
||||||
"Last-Translator: Teguh DC <dheche@songolimo.net>\n"
|
"Last-Translator: Teguh DC <dheche@songolimo.net>\n"
|
||||||
"Language-Team: LDP Linux Indonesia <http://linux.or.id>\n"
|
"Language-Team: LDP Linux Indonesia <http://linux.or.id>\n"
|
||||||
@ -228,17 +228,22 @@ msgstr "Gagal membuat domain dari %s"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Gagal membuat domain dari %s"
|
msgstr "Gagal membuat domain dari %s"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -651,7 +656,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "mengalokasikan koneksi"
|
msgstr "mengalokasikan koneksi"
|
||||||
|
|
||||||
@ -740,17 +745,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "tidak dapat terkoneksi ke %s"
|
msgstr "tidak dapat terkoneksi ke %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "mengalokasikan koneksi"
|
msgstr "mengalokasikan koneksi"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
21
po/is.po
21
po/is.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/it.po
21
po/it.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: it\n"
|
"Project-Id-Version: it\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-12 06:58+0100\n"
|
"PO-Revision-Date: 2007-12-12 06:58+0100\n"
|
||||||
"Last-Translator: Francesco Tombolini <tombo@adamantio.net>\n"
|
"Last-Translator: Francesco Tombolini <tombo@adamantio.net>\n"
|
||||||
"Language-Team: Italiano <fedora-trans-it@redhat.com>\n"
|
"Language-Team: Italiano <fedora-trans-it@redhat.com>\n"
|
||||||
@ -233,17 +233,22 @@ msgstr "Impossibile creare il dominio inattivo %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Impossibile creare il dominio inattivo %s\n"
|
msgstr "Impossibile creare il dominio inattivo %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -656,7 +661,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "assegnazione collegamento in corso"
|
msgstr "assegnazione collegamento in corso"
|
||||||
|
|
||||||
@ -749,16 +754,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "impossibile analizzare l'URI di connessione"
|
msgstr "impossibile analizzare l'URI di connessione"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "assegnazione collegamento in corso"
|
msgstr "assegnazione collegamento in corso"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "informazioni del dominio non corrette, domid non numerico"
|
msgstr "informazioni del dominio non corrette, domid non numerico"
|
||||||
|
21
po/ja.po
21
po/ja.po
@ -11,7 +11,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ja\n"
|
"Project-Id-Version: ja\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-15 13:56+0900\n"
|
"PO-Revision-Date: 2007-12-15 13:56+0900\n"
|
||||||
"Last-Translator: Hyu_gabaru Ryu_ichi <hyu_gabaru@yahoo.co.jp>\n"
|
"Last-Translator: Hyu_gabaru Ryu_ichi <hyu_gabaru@yahoo.co.jp>\n"
|
||||||
"Language-Team: Japanese <jp@li.org>\n"
|
"Language-Team: Japanese <jp@li.org>\n"
|
||||||
@ -235,17 +235,22 @@ msgstr "停止中のドメイン %s の作成に失敗しました\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "停止中のドメイン %s の作成に失敗しました\n"
|
msgstr "停止中のドメイン %s の作成に失敗しました\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,7 +663,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "接続を割り当て中"
|
msgstr "接続を割り当て中"
|
||||||
|
|
||||||
@ -751,16 +756,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "接続 URI の構文解析ができませんでした"
|
msgstr "接続 URI の構文解析ができませんでした"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "接続を割り当て中"
|
msgstr "接続を割り当て中"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "ドメイン情報が正しくありません、domid は数値ではありません"
|
msgstr "ドメイン情報が正しくありません、domid は数値ではありません"
|
||||||
|
21
po/ka.po
21
po/ka.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/kn.po
21
po/kn.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: kn\n"
|
"Project-Id-Version: kn\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-25 17:59+0530\n"
|
"PO-Revision-Date: 2007-09-25 17:59+0530\n"
|
||||||
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
|
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
|
||||||
"Language-Team: Kannada <en@li.org>\n"
|
"Language-Team: Kannada <en@li.org>\n"
|
||||||
@ -232,17 +232,22 @@ msgstr "ನಿಷ್ಕ್ರಿಯ ಕ್ಷೇತ್ರ %s ಅನ್ನು ಸ
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "ನಿಷ್ಕ್ರಿಯ ಕ್ಷೇತ್ರ %s ಅನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ\n"
|
msgstr "ನಿಷ್ಕ್ರಿಯ ಕ್ಷೇತ್ರ %s ಅನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -652,7 +657,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "ಸಂಪರ್ಕವನ್ನು ನಿಯೋಜಿಸಲಾಗುತ್ತಿದೆ"
|
msgstr "ಸಂಪರ್ಕವನ್ನು ನಿಯೋಜಿಸಲಾಗುತ್ತಿದೆ"
|
||||||
|
|
||||||
@ -745,17 +750,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "%s ಗೆ ಸಂಪರ್ಕ ಹೊಂದಲಾಗಿಲ್ಲ"
|
msgstr "%s ಗೆ ಸಂಪರ್ಕ ಹೊಂದಲಾಗಿಲ್ಲ"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "ಸಂಪರ್ಕವನ್ನು ನಿಯೋಜಿಸಲಾಗುತ್ತಿದೆ"
|
msgstr "ಸಂಪರ್ಕವನ್ನು ನಿಯೋಜಿಸಲಾಗುತ್ತಿದೆ"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "ಕ್ಷೇತ್ರದ ಮಾಹಿತಿಯು ಸರಿಯಿಲ್ಲ, domid ವು ಸಾಂಖ್ಯಿಕವಾಗಿಲ್ಲ"
|
msgstr "ಕ್ಷೇತ್ರದ ಮಾಹಿತಿಯು ಸರಿಯಿಲ್ಲ, domid ವು ಸಾಂಖ್ಯಿಕವಾಗಿಲ್ಲ"
|
||||||
|
21
po/ko.po
21
po/ko.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ko\n"
|
"Project-Id-Version: ko\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-11 09:54+1000\n"
|
"PO-Revision-Date: 2007-09-11 09:54+1000\n"
|
||||||
"Last-Translator: Eunju Kim <eukim@redhat.com>\n"
|
"Last-Translator: Eunju Kim <eukim@redhat.com>\n"
|
||||||
"Language-Team: Korean <ko@li.org>\n"
|
"Language-Team: Korean <ko@li.org>\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "비활성화 도메인 %s 생성 실패\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "비활성화 도메인 %s 생성 실패\n"
|
msgstr "비활성화 도메인 %s 생성 실패\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -654,7 +659,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "연결 할당 중"
|
msgstr "연결 할당 중"
|
||||||
|
|
||||||
@ -747,17 +752,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "%s에 연결할 수 없음"
|
msgstr "%s에 연결할 수 없음"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "연결 할당 중"
|
msgstr "연결 할당 중"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "도메인 정보가 수치가 아닌 잘못된 domid임"
|
msgstr "도메인 정보가 수치가 아닌 잘못된 domid임"
|
||||||
|
21
po/ku.po
21
po/ku.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -226,17 +226,22 @@ msgstr ""
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -644,7 +649,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -728,15 +733,15 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
21
po/lo.po
21
po/lo.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/lt.po
21
po/lt.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/lv.po
21
po/lv.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/mk.po
21
po/mk.po
@ -10,7 +10,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: mk\n"
|
"Project-Id-Version: mk\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-07-28 23:55+0200\n"
|
"PO-Revision-Date: 2007-07-28 23:55+0200\n"
|
||||||
"Last-Translator: Arangel Angov <arangel@linux.net.mk>\n"
|
"Last-Translator: Arangel Angov <arangel@linux.net.mk>\n"
|
||||||
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
|
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
|
||||||
@ -234,17 +234,22 @@ msgstr "Не успеав да го креирам неактивниот дом
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Не успеав да го креирам неактивниот домен %s\n"
|
msgstr "Не успеав да го креирам неактивниот домен %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,7 +663,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "алоцирам поврзување"
|
msgstr "алоцирам поврзување"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "не можев да се поврзам со %s"
|
msgstr "не можев да се поврзам со %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "алоцирам поврзување"
|
msgstr "алоцирам поврзување"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "информацијата за доменот е неправилна, domid не е нумерички"
|
msgstr "информацијата за доменот е неправилна, domid не е нумерички"
|
||||||
|
21
po/ml.po
21
po/ml.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ml\n"
|
"Project-Id-Version: ml\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-11 09:53+0530\n"
|
"PO-Revision-Date: 2007-12-11 09:53+0530\n"
|
||||||
"Last-Translator: Ani Peter <apeter@redhat.com>\n"
|
"Last-Translator: Ani Peter <apeter@redhat.com>\n"
|
||||||
"Language-Team: Malayalam\n"
|
"Language-Team: Malayalam\n"
|
||||||
@ -233,17 +233,22 @@ msgstr "നിഷ്ക്റിയമായ ഡൊമെയിന് %s ഉ
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "നിഷ്ക്റിയമായ ഡൊമെയിന് %s ഉണ്ടാക്കുന്നതില് പരാജയം\n"
|
msgstr "നിഷ്ക്റിയമായ ഡൊമെയിന് %s ഉണ്ടാക്കുന്നതില് പരാജയം\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -656,7 +661,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "കണക്ഷന് അനുവദിക്കുന്നു"
|
msgstr "കണക്ഷന് അനുവദിക്കുന്നു"
|
||||||
|
|
||||||
@ -749,16 +754,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "URI കണക്ഷന് പാഴ്സ് ചെയ്യുവാന് സാധ്യമായില്ല"
|
msgstr "URI കണക്ഷന് പാഴ്സ് ചെയ്യുവാന് സാധ്യമായില്ല"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "കണക്ഷന് അനുവദിക്കുന്നു"
|
msgstr "കണക്ഷന് അനുവദിക്കുന്നു"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "ഡൊമെയിന് വിവരം തെറ്റാണ്, domid അക്കത്തിലല്ല"
|
msgstr "ഡൊമെയിന് വിവരം തെറ്റാണ്, domid അക്കത്തിലല്ല"
|
||||||
|
21
po/mr.po
21
po/mr.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: mr\n"
|
"Project-Id-Version: mr\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-10 10:53+0530\n"
|
"PO-Revision-Date: 2007-12-10 10:53+0530\n"
|
||||||
"Last-Translator: sandeep shedmake <sandeep.shedmake@gmail.com>\n"
|
"Last-Translator: sandeep shedmake <sandeep.shedmake@gmail.com>\n"
|
||||||
"Language-Team: marathi\n"
|
"Language-Team: marathi\n"
|
||||||
@ -242,17 +242,22 @@ msgstr "निषक्रीय क्षेत्र %s निर्माण
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "निषक्रीय क्षेत्र %s निर्माण करण्यास अपयशी\n"
|
msgstr "निषक्रीय क्षेत्र %s निर्माण करण्यास अपयशी\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -665,7 +670,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "जोडणी वाटत आहे"
|
msgstr "जोडणी वाटत आहे"
|
||||||
|
|
||||||
@ -758,16 +763,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "जुळवणी URI वाचू शकले नाही"
|
msgstr "जुळवणी URI वाचू शकले नाही"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "जोडणी वाटत आहे"
|
msgstr "जोडणी वाटत आहे"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "डोमेन माहिती अयोग्य domid सांख्यीक नाही"
|
msgstr "डोमेन माहिती अयोग्य domid सांख्यीक नाही"
|
||||||
|
21
po/ms.po
21
po/ms.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-08-03 01:24+0800\n"
|
"PO-Revision-Date: 2007-08-03 01:24+0800\n"
|
||||||
"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
|
"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
|
||||||
"Language-Team: ms <ms@li.org>\n"
|
"Language-Team: ms <ms@li.org>\n"
|
||||||
@ -229,17 +229,22 @@ msgstr "Gagal mencipta direktori %s"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Gagal mencipta direktori %s"
|
msgstr "Gagal mencipta direktori %s"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -652,7 +657,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "Sambungan Masatamat:"
|
msgstr "Sambungan Masatamat:"
|
||||||
@ -749,17 +754,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "Tidak dapat menulis ke fail %s."
|
msgstr "Tidak dapat menulis ke fail %s."
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "Sambungan Masatamat:"
|
msgstr "Sambungan Masatamat:"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
21
po/my.po
21
po/my.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/nb.po
21
po/nb.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-10-04 14:21+0200\n"
|
"PO-Revision-Date: 2007-10-04 14:21+0200\n"
|
||||||
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
||||||
"Language-Team: Norwegian/Bokmaal <i18n-nb@lister.ping.uio.no>\n"
|
"Language-Team: Norwegian/Bokmaal <i18n-nb@lister.ping.uio.no>\n"
|
||||||
@ -232,17 +232,22 @@ msgstr "Kunne ikke vise inaktive domener"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Kunne ikke vise inaktive domener"
|
msgstr "Kunne ikke vise inaktive domener"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allokerer tilkobling"
|
msgstr "allokerer tilkobling"
|
||||||
|
|
||||||
@ -749,17 +754,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "kunne ikke koble til %s"
|
msgstr "kunne ikke koble til %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allokerer tilkobling"
|
msgstr "allokerer tilkobling"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
21
po/nl.po
21
po/nl.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-08-21 22:04+0200\n"
|
"PO-Revision-Date: 2007-08-21 22:04+0200\n"
|
||||||
"Last-Translator: Peter van Egdom <p.van.egdom@gmail.com>\n"
|
"Last-Translator: Peter van Egdom <p.van.egdom@gmail.com>\n"
|
||||||
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
||||||
@ -229,17 +229,22 @@ msgstr "Starten van het domein %s is mislukt"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Starten van het domein %s is mislukt"
|
msgstr "Starten van het domein %s is mislukt"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -650,7 +655,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "toewijzen van verbinding"
|
msgstr "toewijzen van verbinding"
|
||||||
|
|
||||||
@ -739,17 +744,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "geen geldige connectie"
|
msgstr "geen geldige connectie"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "toewijzen van verbinding"
|
msgstr "toewijzen van verbinding"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
21
po/nn.po
21
po/nn.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/no.po
21
po/no.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/nso.po
21
po/nso.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/or.po
21
po/or.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: or\n"
|
"Project-Id-Version: or\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-25 17:03+0530\n"
|
"PO-Revision-Date: 2007-09-25 17:03+0530\n"
|
||||||
"Last-Translator: Subhransu Behera <arya_subhransu@yahoo.co.in>\n"
|
"Last-Translator: Subhransu Behera <arya_subhransu@yahoo.co.in>\n"
|
||||||
"Language-Team: Oriya <oriya-group@lists.sarovar.org>\n"
|
"Language-Team: Oriya <oriya-group@lists.sarovar.org>\n"
|
||||||
@ -250,17 +250,22 @@ msgstr "%s ନିଷ୍କ୍ରିୟ ପରିସରକୁ ସୃଷ୍ଟି
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "%s ନିଷ୍କ୍ରିୟ ପରିସରକୁ ସୃଷ୍ଟି କରିବାରେ ବିଫଳ\n"
|
msgstr "%s ନିଷ୍କ୍ରିୟ ପରିସରକୁ ସୃଷ୍ଟି କରିବାରେ ବିଫଳ\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -673,7 +678,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "ସଂଯୋଗ ବାଣ୍ଟୁଅଛି"
|
msgstr "ସଂଯୋଗ ବାଣ୍ଟୁଅଛି"
|
||||||
|
|
||||||
@ -766,17 +771,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "%s ସହିତ ସଂଯୋଗ କରିପାରିଲା ନାହିଁ"
|
msgstr "%s ସହିତ ସଂଯୋଗ କରିପାରିଲା ନାହିଁ"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "ସଂଯୋଗ ବାଣ୍ଟୁଅଛି"
|
msgstr "ସଂଯୋଗ ବାଣ୍ଟୁଅଛି"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "ପରିସର ସୂଚନା ଭୂଲ domid ସଂଖ୍ଯାତ୍ମକ ନୁହେଁ"
|
msgstr "ପରିସର ସୂଚନା ଭୂଲ domid ସଂଖ୍ଯାତ୍ମକ ନୁହେଁ"
|
||||||
|
21
po/pa.po
21
po/pa.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: pa\n"
|
"Project-Id-Version: pa\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-11 15:12+0530\n"
|
"PO-Revision-Date: 2007-09-11 15:12+0530\n"
|
||||||
"Last-Translator: Jaswinder Singh <jsingh@redhat.com>\n"
|
"Last-Translator: Jaswinder Singh <jsingh@redhat.com>\n"
|
||||||
"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
|
"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
|
||||||
@ -234,17 +234,22 @@ msgstr "ਨਾ-ਸਰਗਰਮ ਡੋਮੇਨ %s ਬਣਾਉਣ ਲਈ ਅਸ
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "ਨਾ-ਸਰਗਰਮ ਡੋਮੇਨ %s ਬਣਾਉਣ ਲਈ ਅਸਫ਼ਲ ਹੈ\n"
|
msgstr "ਨਾ-ਸਰਗਰਮ ਡੋਮੇਨ %s ਬਣਾਉਣ ਲਈ ਅਸਫ਼ਲ ਹੈ\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -657,7 +662,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "ਕੁਨੈਕਸ਼ਨ ਦਿੱਤੀ ਜਾ ਰਿਹਾ ਹੈ"
|
msgstr "ਕੁਨੈਕਸ਼ਨ ਦਿੱਤੀ ਜਾ ਰਿਹਾ ਹੈ"
|
||||||
|
|
||||||
@ -750,17 +755,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "%s ਨਾਲ ਜੁੜ ਨਹੀਂ ਸਕਿਆ"
|
msgstr "%s ਨਾਲ ਜੁੜ ਨਹੀਂ ਸਕਿਆ"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "ਕੁਨੈਕਸ਼ਨ ਦਿੱਤੀ ਜਾ ਰਿਹਾ ਹੈ"
|
msgstr "ਕੁਨੈਕਸ਼ਨ ਦਿੱਤੀ ਜਾ ਰਿਹਾ ਹੈ"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "ਡੋਮੇਨ ਜਾਣਕਾਰੀ ਗਲਤ ਹੈ, domid ਅੰਕੀ ਨਹੀਂ ਹੈ"
|
msgstr "ਡੋਮੇਨ ਜਾਣਕਾਰੀ ਗਲਤ ਹੈ, domid ਅੰਕੀ ਨਹੀਂ ਹੈ"
|
||||||
|
21
po/pl.po
21
po/pl.po
@ -5,7 +5,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: pl\n"
|
"Project-Id-Version: pl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-07 20:27+0200\n"
|
"PO-Revision-Date: 2007-12-07 20:27+0200\n"
|
||||||
"Last-Translator: Piotr Drąg <raven@pmail.pl>\n"
|
"Last-Translator: Piotr Drąg <raven@pmail.pl>\n"
|
||||||
"Language-Team: Polish <pl@li.org>\n"
|
"Language-Team: Polish <pl@li.org>\n"
|
||||||
@ -229,17 +229,22 @@ msgstr "Utworzenie nieaktywnej domeny %s nie powiodło się\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Utworzenie nieaktywnej domeny %s nie powiodło się\n"
|
msgstr "Utworzenie nieaktywnej domeny %s nie powiodło się\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -652,7 +657,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "przydzielanie połączenia"
|
msgstr "przydzielanie połączenia"
|
||||||
|
|
||||||
@ -745,16 +750,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "nie można przeanalizować URI połączenia"
|
msgstr "nie można przeanalizować URI połączenia"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "przydzielanie połączenia"
|
msgstr "przydzielanie połączenia"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "informacje o domenie są nieprawidłowe, domid nie jest numeryczne"
|
msgstr "informacje o domenie są nieprawidłowe, domid nie jest numeryczne"
|
||||||
|
21
po/pt.po
21
po/pt.po
@ -2,7 +2,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-14 18:14+0000\n"
|
"PO-Revision-Date: 2007-12-14 18:14+0000\n"
|
||||||
"Last-Translator: José Nuno Coelho Pires <jncp@netcabo.pt>\n"
|
"Last-Translator: José Nuno Coelho Pires <jncp@netcabo.pt>\n"
|
||||||
"Language-Team: pt <kde-i18n-pt@kde.org>\n"
|
"Language-Team: pt <kde-i18n-pt@kde.org>\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Não foi possível criar o domínio inactivo %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Não foi possível criar o domínio inactivo %s\n"
|
msgstr "Não foi possível criar o domínio inactivo %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -654,7 +659,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "a reservar a ligação"
|
msgstr "a reservar a ligação"
|
||||||
|
|
||||||
@ -747,16 +752,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "não foi possível processar o URI da ligação"
|
msgstr "não foi possível processar o URI da ligação"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "a reservar a ligação"
|
msgstr "a reservar a ligação"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "informação do domínio incompleta, o 'domid' não é numérico"
|
msgstr "informação do domínio incompleta, o 'domid' não é numérico"
|
||||||
|
21
po/pt_BR.po
21
po/pt_BR.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: pt_BR\n"
|
"Project-Id-Version: pt_BR\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-08 14:30-0300\n"
|
"PO-Revision-Date: 2007-12-08 14:30-0300\n"
|
||||||
"Last-Translator: Igor Pires Soares <igor@projetofedora.org>\n"
|
"Last-Translator: Igor Pires Soares <igor@projetofedora.org>\n"
|
||||||
"Language-Team: Brazilian Portuguese <fedora-trans-pt_br@redhat.com>\n"
|
"Language-Team: Brazilian Portuguese <fedora-trans-pt_br@redhat.com>\n"
|
||||||
@ -233,17 +233,22 @@ msgstr "Não foi possível criar o domínio inativo %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Não foi possível criar o domínio inativo %s\n"
|
msgstr "Não foi possível criar o domínio inativo %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -656,7 +661,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "alocando a conexão"
|
msgstr "alocando a conexão"
|
||||||
|
|
||||||
@ -749,16 +754,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "não foi possível analisar a URI de conexão"
|
msgstr "não foi possível analisar a URI de conexão"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "alocando a conexão"
|
msgstr "alocando a conexão"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "informação do domínio incompleta, domid não numérico"
|
msgstr "informação do domínio incompleta, domid não numérico"
|
||||||
|
21
po/ro.po
21
po/ro.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/ru.po
21
po/ru.po
@ -15,7 +15,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ru\n"
|
"Project-Id-Version: ru\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-05-02 08:00+0300\n"
|
"PO-Revision-Date: 2007-05-02 08:00+0300\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@ -239,17 +239,22 @@ msgstr "Ошибка создания неактивного домена %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Ошибка создания неактивного домена %s\n"
|
msgstr "Ошибка создания неактивного домена %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -663,7 +668,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "выделение соединения"
|
msgstr "выделение соединения"
|
||||||
|
|
||||||
@ -756,17 +761,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "невозможно подключиться к %s"
|
msgstr "невозможно подключиться к %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "выделение соединения"
|
msgstr "выделение соединения"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "неверная информация домена, domid должен быть числом"
|
msgstr "неверная информация домена, domid должен быть числом"
|
||||||
|
21
po/si.po
21
po/si.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/sk.po
21
po/sk.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/sl.po
21
po/sl.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/sq.po
21
po/sq.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/sr.po
21
po/sr.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-06 20:47-0000\n"
|
"PO-Revision-Date: 2007-12-06 20:47-0000\n"
|
||||||
"Last-Translator: Miloš Komarčević <kmilos@gmail.com>\n"
|
"Last-Translator: Miloš Komarčević <kmilos@gmail.com>\n"
|
||||||
"Language-Team: Serbian (sr) <fedora-trans-sr@redhat.com>\n"
|
"Language-Team: Serbian (sr) <fedora-trans-sr@redhat.com>\n"
|
||||||
@ -232,17 +232,22 @@ msgstr "Неуспело прављење не активираног домен
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Неуспело прављење не активираног домена %s\n"
|
msgstr "Неуспело прављење не активираног домена %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "заузимам везу"
|
msgstr "заузимам везу"
|
||||||
|
|
||||||
@ -748,16 +753,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "не могу да рашчланим УРИ везе"
|
msgstr "не могу да рашчланим УРИ везе"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "заузимам везу"
|
msgstr "заузимам везу"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "подаци о домену су нетачни или domid није бројчан"
|
msgstr "подаци о домену су нетачни или domid није бројчан"
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-30 22:50-0000\n"
|
"PO-Revision-Date: 2007-09-30 22:50-0000\n"
|
||||||
"Last-Translator: Miloš Komarčević <kmilos@gmail.com>\n"
|
"Last-Translator: Miloš Komarčević <kmilos@gmail.com>\n"
|
||||||
"Language-Team: Serbian (sr) <fedora-trans-sr@redhat.com>\n"
|
"Language-Team: Serbian (sr) <fedora-trans-sr@redhat.com>\n"
|
||||||
@ -232,17 +232,22 @@ msgstr "Neuspelo pravljenje ne aktiviranog domena %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Neuspelo pravljenje ne aktiviranog domena %s\n"
|
msgstr "Neuspelo pravljenje ne aktiviranog domena %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "zauzimam vezu"
|
msgstr "zauzimam vezu"
|
||||||
|
|
||||||
@ -748,17 +753,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "ne mogu da se povežem sa %s"
|
msgstr "ne mogu da se povežem sa %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "zauzimam vezu"
|
msgstr "zauzimam vezu"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "podaci o domenu su netačni ili domid nije brojčan"
|
msgstr "podaci o domenu su netačni ili domid nije brojčan"
|
||||||
|
21
po/sv.po
21
po/sv.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-07-19 12:53-0400\n"
|
"PO-Revision-Date: 2007-07-19 12:53-0400\n"
|
||||||
"Last-Translator: Magnus Larsson <fedoratrans@gmail.com>\n"
|
"Last-Translator: Magnus Larsson <fedoratrans@gmail.com>\n"
|
||||||
"Language-Team: Swedish <sv@li.org>\n"
|
"Language-Team: Swedish <sv@li.org>\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Misslyckades att skapa inaktiv domän %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Misslyckades att skapa inaktiv domän %s\n"
|
msgstr "Misslyckades att skapa inaktiv domän %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -654,7 +659,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allokerar anslutning"
|
msgstr "allokerar anslutning"
|
||||||
|
|
||||||
@ -747,17 +752,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "kunde inte ansluta till %s"
|
msgstr "kunde inte ansluta till %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allokerar anslutning"
|
msgstr "allokerar anslutning"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domäninformation fel, domid är inte numerisk"
|
msgstr "domäninformation fel, domid är inte numerisk"
|
||||||
|
21
po/ta.po
21
po/ta.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: ta\n"
|
"Project-Id-Version: ta\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-09-24 18:04+0530\n"
|
"PO-Revision-Date: 2007-09-24 18:04+0530\n"
|
||||||
"Last-Translator: I felix <ifelix@redhat.com>\n"
|
"Last-Translator: I felix <ifelix@redhat.com>\n"
|
||||||
"Language-Team: Tamil <fedora-trans-ta@redhat.com>\n"
|
"Language-Team: Tamil <fedora-trans-ta@redhat.com>\n"
|
||||||
@ -244,17 +244,22 @@ msgstr "செயற்களம் %s ஐ உருவாக்க முடி
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "செயற்களம் %s ஐ உருவாக்க முடியவில்லை\n"
|
msgstr "செயற்களம் %s ஐ உருவாக்க முடியவில்லை\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -667,7 +672,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "இணைப்புகள் ஒதுக்கப்படுகிறது"
|
msgstr "இணைப்புகள் ஒதுக்கப்படுகிறது"
|
||||||
|
|
||||||
@ -760,17 +765,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr " %sஉடன் இணைக்க முடியவில்லை"
|
msgstr " %sஉடன் இணைக்க முடியவில்லை"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "இணைப்புகள் ஒதுக்கப்படுகிறது"
|
msgstr "இணைப்புகள் ஒதுக்கப்படுகிறது"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "செயற்களம் தகவல் நிறைவு பெறாமல் உள்ளது, domid எண்ணல்ல"
|
msgstr "செயற்களம் தகவல் நிறைவு பெறாமல் உள்ளது, domid எண்ணல்ல"
|
||||||
|
21
po/te.po
21
po/te.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: te\n"
|
"Project-Id-Version: te\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-10 13:14+0530\n"
|
"PO-Revision-Date: 2007-12-10 13:14+0530\n"
|
||||||
"Last-Translator: Krishna Babu K <kkrothap@redhat.com>\n"
|
"Last-Translator: Krishna Babu K <kkrothap@redhat.com>\n"
|
||||||
"Language-Team: Telugu <en@li.org>\n"
|
"Language-Team: Telugu <en@li.org>\n"
|
||||||
@ -232,17 +232,22 @@ msgstr "చతనం గాని డొమైన్ %s ని సృష్ట
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "చతనం గాని డొమైన్ %s ని సృష్టించుటలో విఫలం\n"
|
msgstr "చతనం గాని డొమైన్ %s ని సృష్టించుటలో విఫలం\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "అనుసంధానాన్ని కేటాయిస్తోంది"
|
msgstr "అనుసంధానాన్ని కేటాయిస్తోంది"
|
||||||
|
|
||||||
@ -748,16 +753,16 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "అనుసంధానం URI ని పార్శ్ చేయలేదు"
|
msgstr "అనుసంధానం URI ని పార్శ్ చేయలేదు"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "అనుసంధానాన్ని కేటాయిస్తోంది"
|
msgstr "అనుసంధానాన్ని కేటాయిస్తోంది"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "క్షేత్ర సమాచారం సరైనదికాదు క్షేత్రం సంఖ్యాపరమైంది కాదు"
|
msgstr "క్షేత్ర సమాచారం సరైనదికాదు క్షేత్రం సంఖ్యాపరమైంది కాదు"
|
||||||
|
21
po/th.po
21
po/th.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/tr.po
21
po/tr.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/uk.po
21
po/uk.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-08-22 14:58+0300\n"
|
"PO-Revision-Date: 2007-08-22 14:58+0300\n"
|
||||||
"Last-Translator: Maxim V. Dziumanenko <dziumanenko@gmail.com>\n"
|
"Last-Translator: Maxim V. Dziumanenko <dziumanenko@gmail.com>\n"
|
||||||
"Language-Team: Ukrainian <uk@li.org>\n"
|
"Language-Team: Ukrainian <uk@li.org>\n"
|
||||||
@ -230,17 +230,22 @@ msgstr "Помилка створення неактивного домену %s
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Помилка створення неактивного домену %s\n"
|
msgstr "Помилка створення неактивного домену %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -653,7 +658,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "виділення з'єднання"
|
msgstr "виділення з'єднання"
|
||||||
|
|
||||||
@ -746,17 +751,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "не вдається з'єднатись %s"
|
msgstr "не вдається з'єднатись %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "виділення з'єднання"
|
msgstr "виділення з'єднання"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "неправильна інформація домену, domid має бути числом"
|
msgstr "неправильна інформація домену, domid має бути числом"
|
||||||
|
21
po/ur.po
21
po/ur.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/vi.po
21
po/vi.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
21
po/zh_CN.po
21
po/zh_CN.po
@ -14,7 +14,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: zh_CN\n"
|
"Project-Id-Version: zh_CN\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-12-05 08:49+0800\n"
|
"PO-Revision-Date: 2007-12-05 08:49+0800\n"
|
||||||
"Last-Translator: Leah Liu <lliu@redhat.com>\n"
|
"Last-Translator: Leah Liu <lliu@redhat.com>\n"
|
||||||
"Language-Team: Chinese, Simplied(简体中文) <zh_CN@li.org>\n"
|
"Language-Team: Chinese, Simplied(简体中文) <zh_CN@li.org>\n"
|
||||||
@ -237,17 +237,22 @@ msgstr "
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "创建不活动域 %s 失败\n"
|
msgstr "创建不活动域 %s 失败\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -660,7 +665,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "正在分配连接"
|
msgstr "正在分配连接"
|
||||||
|
|
||||||
@ -753,17 +758,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "不能连接到 %s"
|
msgstr "不能连接到 %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "正在分配连接"
|
msgstr "正在分配连接"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "域信息不正确,domid 不是数字值"
|
msgstr "域信息不正确,domid 不是数字值"
|
||||||
|
21
po/zh_TW.po
21
po/zh_TW.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: zh_TW\n"
|
"Project-Id-Version: zh_TW\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2007-04-10 16:18+1000\n"
|
"PO-Revision-Date: 2007-04-10 16:18+1000\n"
|
||||||
"Last-Translator: Chester Cheng <ccheng@redhat.com>\n"
|
"Last-Translator: Chester Cheng <ccheng@redhat.com>\n"
|
||||||
"Language-Team: Traditional Chinese <zh_TW@li.org>\n"
|
"Language-Team: Traditional Chinese <zh_TW@li.org>\n"
|
||||||
@ -232,17 +232,22 @@ msgstr "無法建立非運作中的區域 %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "無法建立非運作中的區域 %s\n"
|
msgstr "無法建立非運作中的區域 %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -656,7 +661,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "正在分配連線"
|
msgstr "正在分配連線"
|
||||||
|
|
||||||
@ -749,17 +754,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "無法連上 %s"
|
msgstr "無法連上 %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "正在分配連線"
|
msgstr "正在分配連線"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "區域的資訊不正確,domid 並非數字型態"
|
msgstr "區域的資訊不正確,domid 並非數字型態"
|
||||||
|
21
po/zu.po
21
po/zu.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: libvirt\n"
|
"Project-Id-Version: libvirt\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-02-20 10:56-0500\n"
|
"POT-Creation-Date: 2008-02-20 11:25-0500\n"
|
||||||
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
"PO-Revision-Date: 2006-11-27 16:59+0100\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@ -231,17 +231,22 @@ msgstr "Failed to create domain %s\n"
|
|||||||
msgid "Failed to create polkit context %s\n"
|
msgid "Failed to create polkit context %s\n"
|
||||||
msgstr "Failed to create domain %s\n"
|
msgstr "Failed to create domain %s\n"
|
||||||
|
|
||||||
#: qemud/remote.c:2672
|
#: qemud/remote.c:2673
|
||||||
|
#, c-format
|
||||||
|
msgid "Policy kit failed to check authorization %d %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: qemud/remote.c:2689
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
msgid "Policy kit denied action %s from pid %d, uid %d, result: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2680
|
#: qemud/remote.c:2697
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
msgid "Policy allowed action %s from pid %d, uid %d, result %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: qemud/remote.c:2699
|
#: qemud/remote.c:2716
|
||||||
msgid "client tried unsupported PolicyKit init request"
|
msgid "client tried unsupported PolicyKit init request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -655,7 +660,7 @@ msgstr ""
|
|||||||
msgid "failure writing output: %s\n"
|
msgid "failure writing output: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/hash.c:695 src/libvirt.c:624
|
#: src/hash.c:695 src/libvirt.c:651
|
||||||
msgid "allocating connection"
|
msgid "allocating connection"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
@ -751,17 +756,17 @@ msgstr ""
|
|||||||
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
msgid "Failed to add iptables rule '%s' to chain '%s' in table '%s': %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/libvirt.c:631
|
#: src/libvirt.c:658
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "could not parse connection URI"
|
msgid "could not parse connection URI"
|
||||||
msgstr "could not connect to %s"
|
msgstr "could not connect to %s"
|
||||||
|
|
||||||
#: src/libvirt.c:649
|
#: src/libvirt.c:676
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "allocating conn->name"
|
msgid "allocating conn->name"
|
||||||
msgstr "allocating connection"
|
msgstr "allocating connection"
|
||||||
|
|
||||||
#: src/libvirt.c:2058
|
#: src/libvirt.c:2097
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "domainMigratePrepare did not set uri"
|
msgid "domainMigratePrepare did not set uri"
|
||||||
msgstr "domain information incorrect domid not numeric"
|
msgstr "domain information incorrect domid not numeric"
|
||||||
|
@ -2620,7 +2620,7 @@ remoteDispatchAuthPolkit (struct qemud_server *server ATTRIBUTE_UNUSED,
|
|||||||
PolKitCaller *pkcaller = NULL;
|
PolKitCaller *pkcaller = NULL;
|
||||||
PolKitAction *pkaction = NULL;
|
PolKitAction *pkaction = NULL;
|
||||||
PolKitContext *pkcontext = NULL;
|
PolKitContext *pkcontext = NULL;
|
||||||
PolKitError *pkerr;
|
PolKitError *pkerr = NULL;
|
||||||
PolKitResult pkresult;
|
PolKitResult pkresult;
|
||||||
DBusError err;
|
DBusError err;
|
||||||
const char *action = client->readonly ?
|
const char *action = client->readonly ?
|
||||||
@ -2662,8 +2662,25 @@ remoteDispatchAuthPolkit (struct qemud_server *server ATTRIBUTE_UNUSED,
|
|||||||
return -2;
|
return -2;
|
||||||
}
|
}
|
||||||
|
|
||||||
pkresult = polkit_context_can_caller_do_action(pkcontext, pkaction,
|
#if HAVE_POLKIT_CONTEXT_IS_CALLER_AUTHORIZED
|
||||||
|
pkresult = polkit_context_is_caller_authorized(pkcontext,
|
||||||
|
pkaction,
|
||||||
|
pkcaller,
|
||||||
|
0,
|
||||||
|
&pkerr);
|
||||||
|
if (pkerr && polkit_error_is_set(pkerr)) {
|
||||||
|
qemudLog(QEMUD_ERR,
|
||||||
|
_("Policy kit failed to check authorization %d %s"),
|
||||||
|
polkit_error_get_error_code(pkerr),
|
||||||
|
polkit_error_get_error_message(pkerr));
|
||||||
|
remoteDispatchFailAuth(client, req);
|
||||||
|
return -2;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
pkresult = polkit_context_can_caller_do_action(pkcontext,
|
||||||
|
pkaction,
|
||||||
pkcaller);
|
pkcaller);
|
||||||
|
#endif
|
||||||
polkit_context_unref(pkcontext);
|
polkit_context_unref(pkcontext);
|
||||||
polkit_caller_unref(pkcaller);
|
polkit_caller_unref(pkcaller);
|
||||||
polkit_action_unref(pkaction);
|
polkit_action_unref(pkaction);
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
#include "driver.h"
|
#include "driver.h"
|
||||||
|
|
||||||
#include "uuid.h"
|
#include "uuid.h"
|
||||||
|
#include "util.h"
|
||||||
#include "test.h"
|
#include "test.h"
|
||||||
#include "xen_unified.h"
|
#include "xen_unified.h"
|
||||||
#include "remote_internal.h"
|
#include "remote_internal.h"
|
||||||
@ -75,16 +76,38 @@ static int virConnectAuthCallbackDefault(virConnectCredentialPtr cred,
|
|||||||
char *bufptr = buf;
|
char *bufptr = buf;
|
||||||
size_t len;
|
size_t len;
|
||||||
|
|
||||||
|
switch (cred[i].type) {
|
||||||
|
#if defined(POLKIT_GRANT) || defined(POLKIT_AUTH)
|
||||||
|
case VIR_CRED_EXTERNAL: {
|
||||||
|
int ret;
|
||||||
|
const char *const args[] = {
|
||||||
|
#if defined(POLKIT_GRANT)
|
||||||
|
POLKIT_GRANT, "--gain", cred[i].prompt, NULL
|
||||||
|
#else
|
||||||
|
POLKIT_AUTH, "--obtain", cred[i].prompt, NULL
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
if (STRNEQ(cred[i].challenge, "PolicyKit"))
|
||||||
|
return -1;
|
||||||
|
if (virRun(NULL, (char **) args, &ret) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if (!WIFEXITED(ret) ||
|
||||||
|
(WEXITSTATUS(ret) != 0 && WEXITSTATUS(ret) != 1))
|
||||||
|
return -1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
case VIR_CRED_USERNAME:
|
||||||
|
case VIR_CRED_AUTHNAME:
|
||||||
|
case VIR_CRED_ECHOPROMPT:
|
||||||
|
case VIR_CRED_REALM:
|
||||||
if (printf("%s:", cred[i].prompt) < 0)
|
if (printf("%s:", cred[i].prompt) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
if (fflush(stdout) != 0)
|
if (fflush(stdout) != 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
switch (cred[i].type) {
|
|
||||||
case VIR_CRED_USERNAME:
|
|
||||||
case VIR_CRED_AUTHNAME:
|
|
||||||
case VIR_CRED_ECHOPROMPT:
|
|
||||||
case VIR_CRED_REALM:
|
|
||||||
if (!fgets(buf, sizeof(buf), stdin)) {
|
if (!fgets(buf, sizeof(buf), stdin)) {
|
||||||
if (feof(stdin)) { /* Treat EOF as "" */
|
if (feof(stdin)) { /* Treat EOF as "" */
|
||||||
buf[0] = '\0';
|
buf[0] = '\0';
|
||||||
@ -99,6 +122,11 @@ static int virConnectAuthCallbackDefault(virConnectCredentialPtr cred,
|
|||||||
|
|
||||||
case VIR_CRED_PASSPHRASE:
|
case VIR_CRED_PASSPHRASE:
|
||||||
case VIR_CRED_NOECHOPROMPT:
|
case VIR_CRED_NOECHOPROMPT:
|
||||||
|
if (printf("%s:", cred[i].prompt) < 0)
|
||||||
|
return -1;
|
||||||
|
if (fflush(stdout) != 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
bufptr = getpass("");
|
bufptr = getpass("");
|
||||||
if (!bufptr)
|
if (!bufptr)
|
||||||
return -1;
|
return -1;
|
||||||
@ -130,6 +158,9 @@ static int virConnectCredTypeDefault[] = {
|
|||||||
VIR_CRED_REALM,
|
VIR_CRED_REALM,
|
||||||
VIR_CRED_PASSPHRASE,
|
VIR_CRED_PASSPHRASE,
|
||||||
VIR_CRED_NOECHOPROMPT,
|
VIR_CRED_NOECHOPROMPT,
|
||||||
|
#if defined(POLKIT_AUTH) || defined(POLKIT_GRANT)
|
||||||
|
VIR_CRED_EXTERNAL,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static virConnectAuth virConnectAuthDefault = {
|
static virConnectAuth virConnectAuthDefault = {
|
||||||
@ -615,10 +646,6 @@ do_open (const char *name,
|
|||||||
if (STREQ (name, "xen://"))
|
if (STREQ (name, "xen://"))
|
||||||
name = "xen:///";
|
name = "xen:///";
|
||||||
|
|
||||||
if (!initialized)
|
|
||||||
if (virInitialize() < 0)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
ret = virGetConnect();
|
ret = virGetConnect();
|
||||||
if (ret == NULL) {
|
if (ret == NULL) {
|
||||||
virLibConnError(NULL, VIR_ERR_NO_MEMORY, _("allocating connection"));
|
virLibConnError(NULL, VIR_ERR_NO_MEMORY, _("allocating connection"));
|
||||||
@ -650,6 +677,9 @@ do_open (const char *name,
|
|||||||
goto failed;
|
goto failed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Cleansing flags */
|
||||||
|
ret->flags = flags & VIR_CONNECT_RO;
|
||||||
|
|
||||||
for (i = 0; i < virDriverTabCount; i++) {
|
for (i = 0; i < virDriverTabCount; i++) {
|
||||||
DEBUG("trying driver %d (%s) ...",
|
DEBUG("trying driver %d (%s) ...",
|
||||||
i, virDriverTab[i]->name);
|
i, virDriverTab[i]->name);
|
||||||
@ -714,9 +744,6 @@ do_open (const char *name,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Cleansing flags */
|
|
||||||
ret->flags = flags & VIR_CONNECT_RO;
|
|
||||||
|
|
||||||
xmlFreeURI (uri);
|
xmlFreeURI (uri);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
@ -742,6 +769,10 @@ failed:
|
|||||||
virConnectPtr
|
virConnectPtr
|
||||||
virConnectOpen (const char *name)
|
virConnectOpen (const char *name)
|
||||||
{
|
{
|
||||||
|
if (!initialized)
|
||||||
|
if (virInitialize() < 0)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
DEBUG("name=%s", name);
|
DEBUG("name=%s", name);
|
||||||
return do_open (name, NULL, 0);
|
return do_open (name, NULL, 0);
|
||||||
}
|
}
|
||||||
@ -761,6 +792,10 @@ virConnectOpen (const char *name)
|
|||||||
virConnectPtr
|
virConnectPtr
|
||||||
virConnectOpenReadOnly(const char *name)
|
virConnectOpenReadOnly(const char *name)
|
||||||
{
|
{
|
||||||
|
if (!initialized)
|
||||||
|
if (virInitialize() < 0)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
DEBUG("name=%s", name);
|
DEBUG("name=%s", name);
|
||||||
return do_open (name, NULL, VIR_CONNECT_RO);
|
return do_open (name, NULL, VIR_CONNECT_RO);
|
||||||
}
|
}
|
||||||
@ -784,7 +819,11 @@ virConnectOpenAuth(const char *name,
|
|||||||
virConnectAuthPtr auth,
|
virConnectAuthPtr auth,
|
||||||
int flags)
|
int flags)
|
||||||
{
|
{
|
||||||
DEBUG("name=%s", name);
|
if (!initialized)
|
||||||
|
if (virInitialize() < 0)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
DEBUG("name=%s, auth=%p, flags=%d", name, auth, flags);
|
||||||
return do_open (name, auth, flags);
|
return do_open (name, auth, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user