[PATCH v3] [Kimchi 0/2] Issue #998 Not all static strings are externalized

From: Pooja Kulkarni <pkulkark@linux.vnet.ibm.com> v3: Removed 'fuzzy' messages from .po files v2: Rebased to latest master v1: This patch set externalizes all the static string that should be externalized to support globalization. Also contains the updated .pot and .po files Pooja Kulkarni (2): Issue #998 Not all static strings are externalized Issue #998 Updated .pot and .po files po/POTFILES.in | 1 + po/de_DE.po | 267 +++++++++++++++++++++++++++-- po/en_US.po | 267 +++++++++++++++++++++++++++-- po/es_ES.po | 267 +++++++++++++++++++++++++++-- po/fr_FR.po | 267 +++++++++++++++++++++++++++-- po/it_IT.po | 267 +++++++++++++++++++++++++++-- po/ja_JP.po | 267 +++++++++++++++++++++++++++-- po/kimchi.pot | 267 +++++++++++++++++++++++++++-- po/ko_KR.po | 267 +++++++++++++++++++++++++++-- po/pt_BR.po | 267 +++++++++++++++++++++++++++-- po/ru_RU.po | 267 +++++++++++++++++++++++++++-- po/zh_CN.po | 267 +++++++++++++++++++++++++++-- po/zh_TW.po | 267 +++++++++++++++++++++++++++-- ui/js/src/kimchi.guest_storage_add.main.js | 12 +- ui/js/src/kimchi.storagepool_add_main.js | 12 +- ui/pages/guest-edit.html.tmpl | 14 +- ui/pages/i18n.json.tmpl | 18 ++ 17 files changed, 3122 insertions(+), 139 deletions(-) -- 2.1.0

From: Pooja Kulkarni <pkulkark@linux.vnet.ibm.com> This patch externalizes all the static strings that were not externalized in Kimchi Signed-off-by: Pooja Kulkarni <pkulkark@linux.vnet.ibm.com> --- po/POTFILES.in | 1 + ui/js/src/kimchi.guest_storage_add.main.js | 12 ++++++------ ui/js/src/kimchi.storagepool_add_main.js | 12 ++++++------ ui/pages/guest-edit.html.tmpl | 14 +++++++------- ui/pages/i18n.json.tmpl | 18 ++++++++++++++++++ 5 files changed, 38 insertions(+), 19 deletions(-) diff --git a/po/POTFILES.in b/po/POTFILES.in index 92eef1e..72c59ec 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,3 +1,4 @@ # List of source files which contain translatable strings. i18n.py ui/pages/*.tmpl +ui/pages/tabs/*.tmpl diff --git a/ui/js/src/kimchi.guest_storage_add.main.js b/ui/js/src/kimchi.guest_storage_add.main.js index 9fa9175..b8e088e 100644 --- a/ui/js/src/kimchi.guest_storage_add.main.js +++ b/ui/js/src/kimchi.guest_storage_add.main.js @@ -48,23 +48,23 @@ kimchi.switchPage = function(fromPageId, toPageId, direction) { kimchi.guest_storage_add_main = function() { var types = [{ - label: 'cdrom', + label: i18n.KCHVMSTOR0001M, value: 'cdrom', }, { - label: 'disk', + label: i18n.KCHVMSTOR0002M, value: 'disk', }]; var typesRunning = [{ - label: 'disk', + label: i18n.KCHVMSTOR0002M, value: 'disk' }]; var source = [{ - label: 'Pool', + label: i18n.KCHVMSTOR0003M, value: 'pool' },{ - label: 'Path', + label: i18n.KCHVMSTOR0004M, value: 'path' }]; @@ -88,7 +88,7 @@ kimchi.guest_storage_add_main = function() { var s390xArch = 's390x'; var getFormatList = function() { - var format = ["qcow", "qcow2", "qed", "raw", "vmdk", "vpc"]; + var format = [i18n['KCHVMSTOR0005M'], i18n['KCHVMSTOR0006M'], i18n['KCHVMSTOR0007M'], i18n['KCHVMSTOR0008M'], i18n['KCHVMSTOR0009M'], i18n['KCHVMSTOR0010M']]; var selectFormatHTML = ''; var i; for (i = 0; i < format.length; i++) { diff --git a/ui/js/src/kimchi.storagepool_add_main.js b/ui/js/src/kimchi.storagepool_add_main.js index 5a020ee..99275cc 100644 --- a/ui/js/src/kimchi.storagepool_add_main.js +++ b/ui/js/src/kimchi.storagepool_add_main.js @@ -127,7 +127,7 @@ kimchi.initStorageAddPage = function() { kimchi.listHostPartitions(function(data) { if (data.length > 0) { var deviceHtml = $('#partitionTmpl').html(); - var listHtml = '<table class="table table-hover"><thead><tr><th></th><th>Device</th><th>Path</th><th>Size (GiB)</th></tr></thead><tbody>'; + var listHtml = '<table class="table table-hover"><thead><tr><th></th><th>'+i18n['KCHPOOL6024M']+'</th><th>'+i18n['KCHPOOL6025M']+'</th><th>'+i18n['KCHPOOL6026M']+'</th></tr></thead><tbody>'; valid_types = ['part', 'disk', 'mpath']; $.each(data, function(index, value) { if (valid_types.indexOf(value.type) !== -1) { @@ -149,7 +149,7 @@ kimchi.initStorageAddPage = function() { kimchi.getHostVgs(function(data){ if (data.length > 0) { var deviceHtml = $('#existingLvmTmpl').html(); - var listHtml = '<table class="table table-hover"><thead><tr><th></th><th>device</th><th>size (GiB)</th><th>free size (GiB)</th></tr></thead><tbody>'; + var listHtml = '<table class="table table-hover"><thead><tr><th></th><th>'+i18n['KCHPOOL6024M']+'</th><th>'+i18n['KCHPOOL6026M']+'</th><th>'+i18n['KCHPOOL6027M']+'</th></tr></thead><tbody>'; $.each(data, function(index, value) { value.size = (value.size / 1000000000).toFixed(2); value.free = (value.free / 1000000000).toFixed(2); @@ -190,16 +190,16 @@ kimchi.initStorageAddPage = function() { $('#serverComboboxId').combobox(); $('#targetFilterSelectId').filterselect(); var options = [ { - label : "DIR", + label : i18n.KCHPOOL6020M, value : "dir" }, { - label : "NFS", + label : i18n.KCHPOOL6021M, value : "netfs" }, { - label : "iSCSI", + label : i18n.KCHPOOL6022M, value : "iscsi" }, { - label : "LOGICAL", + label : i18n.KCHPOOL6023M, value : "logical" }, { label : i18n.KCHPOOL6004M, diff --git a/ui/pages/guest-edit.html.tmpl b/ui/pages/guest-edit.html.tmpl index 88ccb10..2ac555c 100644 --- a/ui/pages/guest-edit.html.tmpl +++ b/ui/pages/guest-edit.html.tmpl @@ -31,12 +31,12 @@ <div class="modal-body"> <span id="alert-modal-container"></span> <ul class="nav nav-tabs" role="tablist"> - <li role="presentation" class="active"><a href="#form-guest-edit-general" aria-controls="form-guest-edit-general" role="tab" data-id="form-guest-edit-general" data-toggle="tab">General</a></li> - <li role="presentation"><a href="#form-guest-edit-storage" aria-controls="form-guest-edit-storage" role="tab" data-id="form-guest-edit-storage" data-toggle="tab">Storage</a></li> - <li role="presentation"><a href="#form-guest-edit-interface" aria-controls="form-guest-edit-interface" role="tab" data-id="form-guest-edit-interface" data-toggle="tab">Interface</a></li> - <li role="presentation"><a href="#form-guest-edit-permission" aria-controls="form-guest-edit-permission" role="tab" data-id="form-guest-edit-permission" data-toggle="tab">Permission</a></li> - <li role="presentation"><a href="#form-guest-edit-pci" aria-controls="form-guest-edit-pci" role="form-guest-edit-pci" data-id="form-guest-edit-pci" data-toggle="tab">Pci</a></li> - <li role="presentation"><a href="#form-guest-edit-snapshot" aria-controls="form-guest-edit-snapshot" role="tab" data-id="form-guest-edit-snapshot" data-toggle="tab">Snapshot</a></li> + <li role="presentation" class="active"><a href="#form-guest-edit-general" aria-controls="form-guest-edit-general" role="tab" data-id="form-guest-edit-general" data-toggle="tab">$_("General")</a></li> + <li role="presentation"><a href="#form-guest-edit-storage" aria-controls="form-guest-edit-storage" role="tab" data-id="form-guest-edit-storage" data-toggle="tab">$_("Storage")</a></li> + <li role="presentation"><a href="#form-guest-edit-interface" aria-controls="form-guest-edit-interface" role="tab" data-id="form-guest-edit-interface" data-toggle="tab">$_("Interface")</a></li> + <li role="presentation"><a href="#form-guest-edit-permission" aria-controls="form-guest-edit-permission" role="tab" data-id="form-guest-edit-permission" data-toggle="tab">$_("Permission")</a></li> + <li role="presentation"><a href="#form-guest-edit-pci" aria-controls="form-guest-edit-pci" role="form-guest-edit-pci" data-id="form-guest-edit-pci" data-toggle="tab">$_("Pci")</a></li> + <li role="presentation"><a href="#form-guest-edit-snapshot" aria-controls="form-guest-edit-snapshot" role="tab" data-id="form-guest-edit-snapshot" data-toggle="tab">$_("Snapshot")</a></li> </ul> <div class="tab-content" id="guest-edit-tabs"> <form role="tabpanel" class="tab-pane active" id="form-guest-edit-general"> @@ -92,7 +92,7 @@ <div class="body"></div> </form> <form role="tabpanel" class="guest-edit-interface tab-pane" id="form-guest-edit-interface"> - <button class="add btn btn-primary"><i class="fa fa-plus-circle"></i> Add</button> + <button class="add btn btn-primary"><i class="fa fa-plus-circle"></i>$_("Add")</button> <div class="header"> <span class="cell column-network">$_("Network")</span> <span class="cell column-type">$_("Type")</span> diff --git a/ui/pages/i18n.json.tmpl b/ui/pages/i18n.json.tmpl index ba5812f..7860419 100644 --- a/ui/pages/i18n.json.tmpl +++ b/ui/pages/i18n.json.tmpl @@ -113,6 +113,14 @@ "KCHPOOL6017M": "$_("This will permanently wipe the following storage volumes: %1")", "KCHPOOL6018M": "$_("Wipe Confirmation")", "KCHPOOL6019M": "$_("Select one or more partitions to be added to the logical pool %1:")", + "KCHPOOL6020M": "$_("DIR")", + "KCHPOOL6021M": "$_("NFS")", + "KCHPOOL6022M": "$_("iSCSI")", + "KCHPOOL6023M": "$_("LOGICAL")", + "KCHPOOL6024M": "$_("device")", + "KCHPOOL6025M": "$_("path")", + "KCHPOOL6026M": "$_("size (GiB)")", + "KCHPOOL6027M": "$_("free size (GiB)")", "KCHPOOL6005E": "$_("Invalid NFS mount path.")", "KCHPOOL6006E": "$_("No logical device selected.")", @@ -123,6 +131,16 @@ "KCHVMSTOR0003E": "$_("Disk size or Format or Directory path cannot be blank and Directory path needs to be a valid local/remote path.")", "KCHVMSTOR0004E": "$_("Disk path needs to be a valid local/remote path and cannot be blank.")", "KCHVMSTOR0005E": "$_("Storage pool or Disk size or Format cannot be blank.")", + "KCHVMSTOR0001M": "$_("cdrom")", + "KCHVMSTOR0002M": "$_("disk")", + "KCHVMSTOR0003M": "$_("Pool")", + "KCHVMSTOR0004M": "$_("Path")", + "KCHVMSTOR0005M": "$_("qcow")", + "KCHVMSTOR0006M": "$_("qcow2")", + "KCHVMSTOR0007M": "$_("qed")", + "KCHVMSTOR0008M": "$_("raw")", + "KCHVMSTOR0009M": "$_("vmdk")", + "KCHVMSTOR0010M": "$_("vpc")", "KCHPEERS0001M": "$_("Peers")" } -- 2.1.0

From: Pooja Kulkarni <pkulkark@linux.vnet.ibm.com> This patch contains the updated .pot and .po files Signed-off-by: Pooja Kulkarni <pkulkark@linux.vnet.ibm.com> --- po/de_DE.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/en_US.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/es_ES.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/fr_FR.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/it_IT.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/ja_JP.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/kimchi.pot | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/ko_KR.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/pt_BR.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/ru_RU.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/zh_CN.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- po/zh_TW.po | 267 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 12 files changed, 3084 insertions(+), 120 deletions(-) diff --git a/po/de_DE.po b/po/de_DE.po index 8c15923..1a4a89c 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -491,6 +491,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -752,6 +772,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "Speicherpool %(name)s ist bereits vorhanden" @@ -1300,6 +1332,18 @@ msgstr "" "Ausgewählter Datenträger mit Format %(format)s passt nicht in Speichertyp " "%(type)s" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1678,6 +1722,24 @@ msgstr "" msgid "Edit Guest" msgstr "Gast bearbeiten" +msgid "General" +msgstr "Allgemein" + +msgid "Storage" +msgstr "Speicher" + +msgid "Interface" +msgstr "Schnittstelle" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "Name" @@ -1699,6 +1761,15 @@ msgstr "" msgid "Icon" msgstr "Symbol" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "Hinzufügen" @@ -1723,6 +1794,12 @@ msgstr "MAC-Adresse" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "Verfügbare Systembenutzer und -gruppen" @@ -1909,6 +1986,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "Speicherpool" @@ -1927,6 +2010,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1936,6 +2025,12 @@ msgstr "Speicherdatenträger" msgid "Storage volume to be attached" msgstr "Anzuhängender Speicherdatenträger" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "Dateipfad" @@ -1954,9 +2049,6 @@ msgstr "Gäste" msgid "Templates" msgstr "Vorlagen" -msgid "Storage" -msgstr "Speicher" - msgid "This is not a valid Linux path" msgstr "Dies ist kein gültiger Linux-Pfad" @@ -2009,6 +2101,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2187,6 +2282,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "Ungültiger NFS-Mountpfad." @@ -2206,6 +2325,44 @@ msgstr "" msgid "Disk pool or volume cannot be blank." msgstr "Der Plattenpool oder Datenträger darf nicht leer sein." +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2411,12 +2568,6 @@ msgstr "" msgid "Edit Template" msgstr "Vorlage bearbeiten" -msgid "General" -msgstr "Allgemein" - -msgid "Interface" -msgstr "Schnittstelle" - msgid "Processor" msgstr "Prozessor" @@ -2452,3 +2603,99 @@ msgstr "Kerne" msgid "Threads" msgstr "Threads" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/en_US.po b/po/en_US.po index 4d05740..b88ebb9 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -436,6 +436,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -669,6 +689,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "" @@ -1136,6 +1168,18 @@ msgid "" "%(type)s" msgstr "" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1494,6 +1538,24 @@ msgstr "" msgid "Edit Guest" msgstr "" +msgid "General" +msgstr "" + +msgid "Storage" +msgstr "" + +msgid "Interface" +msgstr "" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "" @@ -1515,6 +1577,15 @@ msgstr "" msgid "Icon" msgstr "" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "" @@ -1539,6 +1610,12 @@ msgstr "" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "" @@ -1725,6 +1802,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "" @@ -1743,6 +1826,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1752,6 +1841,12 @@ msgstr "" msgid "Storage volume to be attached" msgstr "" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "" @@ -1770,9 +1865,6 @@ msgstr "" msgid "Templates" msgstr "" -msgid "Storage" -msgstr "" - msgid "This is not a valid Linux path" msgstr "" @@ -1825,6 +1917,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -1995,6 +2090,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "" @@ -2010,6 +2129,44 @@ msgstr "" msgid "Disk pool or volume cannot be blank." msgstr "" +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2207,12 +2364,6 @@ msgstr "" msgid "Edit Template" msgstr "" -msgid "General" -msgstr "" - -msgid "Interface" -msgstr "" - msgid "Processor" msgstr "" @@ -2248,3 +2399,99 @@ msgstr "" msgid "Threads" msgstr "" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index 343dd78..61c2fea 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -472,6 +472,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -730,6 +750,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "Ya existe la agrupación de almacenamiento %(name)s" @@ -1297,6 +1329,18 @@ msgstr "" "El volumen elegido con el formato %(format)s no se ajusta al tipo de " "almacenamiento%(type)s" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1673,6 +1717,24 @@ msgstr "" msgid "Edit Guest" msgstr "Editar invitado" +msgid "General" +msgstr "General" + +msgid "Storage" +msgstr "Almacenamiento" + +msgid "Interface" +msgstr "Interfaz" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "Nombre" @@ -1694,6 +1756,15 @@ msgstr "" msgid "Icon" msgstr "Icono" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "Añadir" @@ -1718,6 +1789,12 @@ msgstr "Dirección MAC" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "Usuarios y grupos del sistema disponibles" @@ -1904,6 +1981,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "Agrupación de almacenamiento" @@ -1922,6 +2005,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1931,6 +2020,12 @@ msgstr "Volumen de almacenamiento" msgid "Storage volume to be attached" msgstr "Volumen de almacenamiento que se va a adjuntar" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "Vía de acceso de archivo" @@ -1949,9 +2044,6 @@ msgstr "Invitados" msgid "Templates" msgstr "Plantillas" -msgid "Storage" -msgstr "Almacenamiento" - msgid "This is not a valid Linux path" msgstr "No es una vía de acceso de Linux válida" @@ -2004,6 +2096,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2182,6 +2277,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "Vía de acceso de montaje de NFS no válida." @@ -2199,6 +2318,44 @@ msgstr "" msgid "Disk pool or volume cannot be blank." msgstr "El volumen o la agrupación de discos no puede estar en blanco." +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2402,12 +2559,6 @@ msgstr "" msgid "Edit Template" msgstr "Editar plantilla" -msgid "General" -msgstr "General" - -msgid "Interface" -msgstr "Interfaz" - msgid "Processor" msgstr "Procesador" @@ -2443,3 +2594,99 @@ msgstr "Núcleos" msgid "Threads" msgstr "Hebras" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/fr_FR.po b/po/fr_FR.po index 4837ee4..47c2cc8 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -489,6 +489,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -746,6 +766,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "Le pool de stockage %(name)s existe déjà" @@ -1299,6 +1331,18 @@ msgstr "" "Le volume choisi avec le format %(format)s n'est pas adapté au type de " "stockage %(type)s" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1678,6 +1722,24 @@ msgstr "" msgid "Edit Guest" msgstr "Editer l'invité" +msgid "General" +msgstr "Général" + +msgid "Storage" +msgstr "Stockage" + +msgid "Interface" +msgstr "Interface" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "Nom" @@ -1699,6 +1761,15 @@ msgstr "" msgid "Icon" msgstr "Icône" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "Ajouter" @@ -1723,6 +1794,12 @@ msgstr "Adresse MAC" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "Groupes et utilisateurs système disponibles" @@ -1909,6 +1986,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "Pool de stockage" @@ -1927,6 +2010,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1936,6 +2025,12 @@ msgstr "Volume de stockage" msgid "Storage volume to be attached" msgstr "Volume de stockage à attacher" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "Chemin d'accès au fichier" @@ -1954,9 +2049,6 @@ msgstr "Invités" msgid "Templates" msgstr "Modèles" -msgid "Storage" -msgstr "Stockage" - msgid "This is not a valid Linux path" msgstr "Ce chemin Linux n'est pas valide" @@ -2009,6 +2101,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2188,6 +2283,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "Chemin de montage NFS non valide." @@ -2207,6 +2326,44 @@ msgstr "" msgid "Disk pool or volume cannot be blank." msgstr "Le pool de stockage sur disque ou le volume ne peut pas être à blanc." +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2411,12 +2568,6 @@ msgstr "" msgid "Edit Template" msgstr "Editer le modèle" -msgid "General" -msgstr "Général" - -msgid "Interface" -msgstr "Interface" - msgid "Processor" msgstr "Processeur" @@ -2452,3 +2603,99 @@ msgstr "Coeurs" msgid "Threads" msgstr "Unités d'exécution" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/it_IT.po b/po/it_IT.po index 7b0f261..ddd8799 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -468,6 +468,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -721,6 +741,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "Pool di memoria %(name)s già esistente" @@ -1258,6 +1290,18 @@ msgstr "" "Il volume scelto con il formato %(format)s non si adatta nel tipo di memoria " "%(type)s" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1634,6 +1678,24 @@ msgstr "" msgid "Edit Guest" msgstr "Modifica macchina guest" +msgid "General" +msgstr "Generale" + +msgid "Storage" +msgstr "Memoria" + +msgid "Interface" +msgstr "Interfaccia" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "Nome" @@ -1655,6 +1717,15 @@ msgstr "" msgid "Icon" msgstr "Icona" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "Aggiungi" @@ -1679,6 +1750,12 @@ msgstr "Indirizzo MAC" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "Utenti e gruppi di sistema disponibili" @@ -1865,6 +1942,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "Pool di memoria" @@ -1883,6 +1966,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1892,6 +1981,12 @@ msgstr "Volume di memoria" msgid "Storage volume to be attached" msgstr "Volume di memoria oggetto del collegamento" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "Percorso file" @@ -1910,9 +2005,6 @@ msgstr "Guest" msgid "Templates" msgstr "Modelli" -msgid "Storage" -msgstr "Memoria" - msgid "This is not a valid Linux path" msgstr "Non è un percorso Linux valido" @@ -1965,6 +2057,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2143,6 +2238,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "Percorso di montaggio NFS non valido." @@ -2160,6 +2279,44 @@ msgstr "" msgid "Disk pool or volume cannot be blank." msgstr "Il volume o il pool di dischi non può essere vuoto." +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2366,12 +2523,6 @@ msgstr "" msgid "Edit Template" msgstr "Modifica modello" -msgid "General" -msgstr "Generale" - -msgid "Interface" -msgstr "Interfaccia" - msgid "Processor" msgstr "Processore" @@ -2407,3 +2558,99 @@ msgstr "Core" msgid "Threads" msgstr "Thread" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/ja_JP.po b/po/ja_JP.po index f51ed17..b8fc8d7 100644 --- a/po/ja_JP.po +++ b/po/ja_JP.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -456,6 +456,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -715,6 +735,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "ストレージ・プール %(name)s は既に存在します" @@ -1262,6 +1294,18 @@ msgstr "" "フォーマット %(format)s で選択されたボリュームがストレージ・タイプ%(type)s に" "適合しません" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1637,6 +1681,24 @@ msgstr "" msgid "Edit Guest" msgstr "ゲストの編集" +msgid "General" +msgstr "一般" + +msgid "Storage" +msgstr "ストレージ" + +msgid "Interface" +msgstr "インターフェース" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "名前" @@ -1658,6 +1720,15 @@ msgstr "" msgid "Icon" msgstr "アイコン" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "追加" @@ -1682,6 +1753,12 @@ msgstr "MAC アドレス" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "使用可能なシステム・ユーザーおよびグループ" @@ -1868,6 +1945,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "ストレージ・プール" @@ -1886,6 +1969,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1895,6 +1984,12 @@ msgstr "ストレージ・ボリューム" msgid "Storage volume to be attached" msgstr "接続されるストレージ・ボリューム" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "ファイル・パス" @@ -1913,9 +2008,6 @@ msgstr "ゲスト" msgid "Templates" msgstr "テンプレート" -msgid "Storage" -msgstr "ストレージ" - msgid "This is not a valid Linux path" msgstr "有効な Linux パスではありません" @@ -1968,6 +2060,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2144,6 +2239,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "NFS マウント・パスが無効です。" @@ -2161,6 +2280,44 @@ msgstr "" msgid "Disk pool or volume cannot be blank." msgstr "ディスク・プールまたはボリュームはブランクにはできません。" +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2363,12 +2520,6 @@ msgstr "" msgid "Edit Template" msgstr "テンプレートの編集" -msgid "General" -msgstr "一般" - -msgid "Interface" -msgstr "インターフェース" - msgid "Processor" msgstr "プロセッサー" @@ -2404,3 +2555,99 @@ msgstr "コア" msgid "Threads" msgstr "スレッド" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/kimchi.pot b/po/kimchi.pot index 6f5ea01..a9417b9 100755 --- a/po/kimchi.pot +++ b/po/kimchi.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -436,6 +436,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -669,6 +689,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "" @@ -1136,6 +1168,18 @@ msgid "" "%(type)s" msgstr "" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1494,6 +1538,24 @@ msgstr "" msgid "Edit Guest" msgstr "" +msgid "General" +msgstr "" + +msgid "Storage" +msgstr "" + +msgid "Interface" +msgstr "" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "" @@ -1515,6 +1577,15 @@ msgstr "" msgid "Icon" msgstr "" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "" @@ -1539,6 +1610,12 @@ msgstr "" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "" @@ -1725,6 +1802,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "" @@ -1743,6 +1826,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1752,6 +1841,12 @@ msgstr "" msgid "Storage volume to be attached" msgstr "" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "" @@ -1770,9 +1865,6 @@ msgstr "" msgid "Templates" msgstr "" -msgid "Storage" -msgstr "" - msgid "This is not a valid Linux path" msgstr "" @@ -1825,6 +1917,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -1995,6 +2090,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "" @@ -2010,6 +2129,44 @@ msgstr "" msgid "Disk pool or volume cannot be blank." msgstr "" +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2207,12 +2364,6 @@ msgstr "" msgid "Edit Template" msgstr "" -msgid "General" -msgstr "" - -msgid "Interface" -msgstr "" - msgid "Processor" msgstr "" @@ -2248,3 +2399,99 @@ msgstr "" msgid "Threads" msgstr "" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/ko_KR.po b/po/ko_KR.po index 3152226..e92778e 100644 --- a/po/ko_KR.po +++ b/po/ko_KR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -451,6 +451,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -691,6 +711,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "스토리지 풀 %(name)s이(가) 이미 존재합니다." @@ -1192,6 +1224,18 @@ msgid "" "%(type)s" msgstr "%(format)s 형식으로 선택한 볼륨이 스토리지 유형%(type)s" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1563,6 +1607,24 @@ msgstr "" msgid "Edit Guest" msgstr "게스트 편집" +msgid "General" +msgstr "일반" + +msgid "Storage" +msgstr "스토리지" + +msgid "Interface" +msgstr "인터페이스" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "이름" @@ -1584,6 +1646,15 @@ msgstr "" msgid "Icon" msgstr "아이콘" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "추가" @@ -1608,6 +1679,12 @@ msgstr "MAC 주소" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "사용 가능한 시스템 사용자 및 그룹" @@ -1794,6 +1871,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "스토리지 풀" @@ -1812,6 +1895,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1821,6 +1910,12 @@ msgstr "스토리지 볼륨" msgid "Storage volume to be attached" msgstr "연결될 스토리지 볼륨" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "파일 경로" @@ -1839,9 +1934,6 @@ msgstr "게스트" msgid "Templates" msgstr "템플리트" -msgid "Storage" -msgstr "스토리지" - msgid "This is not a valid Linux path" msgstr "올바른 Linux 경로가 아닙니다." @@ -1894,6 +1986,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2070,6 +2165,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "올바르지 않은 NFS 마운트 경로입니다." @@ -2085,6 +2204,44 @@ msgstr "CDROM 경로는 올바른 로컬/원격 경로여야 하며 비워둘 msgid "Disk pool or volume cannot be blank." msgstr "디스크 풀 또는 볼륨은 비워둘 수 없습니다." +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2285,12 +2442,6 @@ msgstr "" msgid "Edit Template" msgstr "템플리트 편집" -msgid "General" -msgstr "일반" - -msgid "Interface" -msgstr "인터페이스" - msgid "Processor" msgstr "프로세서" @@ -2326,3 +2477,99 @@ msgstr "코어" msgid "Threads" msgstr "스레드" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 70b4aab..cb6855a 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -462,6 +462,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -717,6 +737,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "O banco de armazenamento %(name)s já existe" @@ -1263,6 +1295,18 @@ msgstr "" "O volume escolhido com o formato %(format)s não se ajusta no tipo de " "armazenamento %(type)s" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1641,6 +1685,24 @@ msgstr "" msgid "Edit Guest" msgstr "Editar máquina guest" +msgid "General" +msgstr "Geral" + +msgid "Storage" +msgstr "Armazenamento" + +msgid "Interface" +msgstr "Interface" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "Nome" @@ -1662,6 +1724,15 @@ msgstr "" msgid "Icon" msgstr "Ícone" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "Incluir" @@ -1686,6 +1757,12 @@ msgstr "Endereço MAC" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "Usuários e grupos do sistema disponível" @@ -1872,6 +1949,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "Banco de Armazenamento" @@ -1890,6 +1973,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1899,6 +1988,12 @@ msgstr "Volume de Armazenamento" msgid "Storage volume to be attached" msgstr "Volume de armazenamento a ser conectado" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "Caminho do arquivo" @@ -1917,9 +2012,6 @@ msgstr "Máquinas Guests" msgid "Templates" msgstr "Modelos" -msgid "Storage" -msgstr "Armazenamento" - msgid "This is not a valid Linux path" msgstr "Este não é um caminho do Linux válido" @@ -1972,6 +2064,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2150,6 +2245,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "Caminho de montagem do NFS inválido." @@ -2167,6 +2286,44 @@ msgstr "" msgid "Disk pool or volume cannot be blank." msgstr "O volume ou banco de discos não pode estar em branco." +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2371,12 +2528,6 @@ msgstr "" msgid "Edit Template" msgstr "Editar modelo" -msgid "General" -msgstr "Geral" - -msgid "Interface" -msgstr "Interface" - msgid "Processor" msgstr "Processador" @@ -2412,3 +2563,99 @@ msgstr "Núcleos" msgid "Threads" msgstr "Encadeamentos" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/ru_RU.po b/po/ru_RU.po index bdb9017..a009207 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -462,6 +462,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -704,6 +724,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "Пул памяти %(name)s уже существует" @@ -1221,6 +1253,18 @@ msgid "" msgstr "" "Выбранный том с форматом %(format)s не подходит для типа памяти %(type)s" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1600,6 +1644,24 @@ msgstr "" msgid "Edit Guest" msgstr "Изменить гостевую систему" +msgid "General" +msgstr "Общие" + +msgid "Storage" +msgstr "Дисковая память" + +msgid "Interface" +msgstr "Интерфейс" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "Имя" @@ -1621,6 +1683,15 @@ msgstr "" msgid "Icon" msgstr "Значок" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "Добавить" @@ -1645,6 +1716,12 @@ msgstr "MAC-адрес" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "Доступные системные пользователи и группы" @@ -1831,6 +1908,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "Пул памяти" @@ -1849,6 +1932,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1858,6 +1947,12 @@ msgstr "Том памяти" msgid "Storage volume to be attached" msgstr "Том подключен" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "Путь к файлу" @@ -1876,9 +1971,6 @@ msgstr "Гостевые системы" msgid "Templates" msgstr "Шаблоны" -msgid "Storage" -msgstr "Дисковая память" - msgid "This is not a valid Linux path" msgstr "Этот недопустимый путь в Linux" @@ -1931,6 +2023,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2106,6 +2201,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "Недопустимый путь монтирования NFS." @@ -2123,6 +2242,44 @@ msgstr "" msgid "Disk pool or volume cannot be blank." msgstr "Не указан пул или том диска." +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2322,12 +2479,6 @@ msgstr "" msgid "Edit Template" msgstr "Изменить шаблон" -msgid "General" -msgstr "Общие" - -msgid "Interface" -msgstr "Интерфейс" - msgid "Processor" msgstr "Процессор" @@ -2363,3 +2514,99 @@ msgstr "Ядра" msgid "Threads" msgstr "Нити" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 3433d49..98203cd 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -440,6 +440,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -673,6 +693,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "存储池 %(name)s 已存在" @@ -1142,6 +1174,18 @@ msgid "" "%(type)s" msgstr "选择的格式为 %(format)s 的卷不适合于存储类型 %(type)s" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1502,6 +1546,24 @@ msgstr "" msgid "Edit Guest" msgstr "编辑访客" +msgid "General" +msgstr "常规" + +msgid "Storage" +msgstr "存储器" + +msgid "Interface" +msgstr "接口" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "名称" @@ -1523,6 +1585,15 @@ msgstr "" msgid "Icon" msgstr "图标" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "添加" @@ -1547,6 +1618,12 @@ msgstr "MAC 地址" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "可用的系统用户和组" @@ -1733,6 +1810,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "存储池" @@ -1751,6 +1834,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1760,6 +1849,12 @@ msgstr "存储卷" msgid "Storage volume to be attached" msgstr "要连接的存储卷" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "文件路径" @@ -1778,9 +1873,6 @@ msgstr "访客" msgid "Templates" msgstr "模板" -msgid "Storage" -msgstr "存储器" - msgid "This is not a valid Linux path" msgstr "这不是有效的 Linux 路径" @@ -1833,6 +1925,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2005,6 +2100,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "NFS 安装路径无效。" @@ -2020,6 +2139,44 @@ msgstr "CDROM 路径必须是有效的本地/远程路径,并且不能为空 msgid "Disk pool or volume cannot be blank." msgstr "磁盘池或卷不能为空白。" +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2217,12 +2374,6 @@ msgstr "" msgid "Edit Template" msgstr "编辑模板" -msgid "General" -msgstr "常规" - -msgid "Interface" -msgstr "接口" - msgid "Processor" msgstr "处理器" @@ -2258,3 +2409,99 @@ msgstr "核心" msgid "Threads" msgstr "线程" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index be39cf6..2a8e51f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kimchi 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-29 13:46-0300\n" +"POT-Creation-Date: 2016-10-18 14:47+0530\n" "PO-Revision-Date: 2013-07-11 17:32-0400\n" "Last-Translator: Crístian Viana <vianac@linux.vnet.ibm.com>\n" "Language-Team: English\n" @@ -440,6 +440,26 @@ msgstr "" msgid "Virtual machine description must be a string" msgstr "" +msgid "console parameter is only supported for s390x/s390 architecture." +msgstr "" + +msgid "invalid console type, supported types are sclp/virtio." +msgstr "" + +#, python-format +msgid "" +"Unable to setup password-less login at remote host %(host)s using user " +"%(user)s: remote directory %(sshdir)s does not exist." +msgstr "" + +#, python-format +msgid "" +"Unable to create a password-less libvirt connection to the remote libvirt " +"daemon at host %(host)s with the user %(user)s. Please verify the remote " +"server libvirt configuration. More information: http://libvirt.org/auth." +"html ." +msgstr "" + #, python-format msgid "" "VM %(vmid)s does not contain directly assigned host device %(dev_name)s." @@ -673,6 +693,18 @@ msgstr "" msgid "Interfaces parameter only supported on s390x or s390 architecture." msgstr "" +msgid "Storage without libvirt pool is not supported on this architecture" +msgstr "" + +#, python-format +msgid "Error while creating the virtual disk for the guest. Details: %(err)s" +msgstr "" + +msgid "" +"When setting template disks without libvirt, following parameters are " +"required: 'index', 'format', 'path', 'size'" +msgstr "" + #, python-format msgid "Storage pool %(name)s already exists" msgstr "儲存區 %(name)s 已經存在" @@ -1141,6 +1173,18 @@ msgid "" "%(type)s" msgstr "所選格式為 %(format)s 的磁區不適合儲存體類型%(type)s" +msgid "On s390x arch one of pool, path of dir_path must be specified" +msgstr "" + +msgid "" +"On s390x arch 'format' must be specified while attaching disk to virtual " +"machine" +msgstr "" + +#, python-format +msgid "Virtual disk already exists on the system: %(disk_path)s" +msgstr "" + #, python-format msgid "" "Virtual machine '%(vm)s' must be stopped before creating a snapshot of it." @@ -1501,6 +1545,24 @@ msgstr "" msgid "Edit Guest" msgstr "編輯客體" +msgid "General" +msgstr "一般" + +msgid "Storage" +msgstr "儲存體" + +msgid "Interface" +msgstr "介面" + +msgid "Permission" +msgstr "" + +msgid "Pci" +msgstr "" + +msgid "Snapshot" +msgstr "" + msgid "Name" msgstr "名稱" @@ -1522,6 +1584,15 @@ msgstr "" msgid "Icon" msgstr "圖示" +msgid "Console" +msgstr "" + +msgid "sclp" +msgstr "" + +msgid "virtio" +msgstr "" + msgid "Add" msgstr "新增" @@ -1546,6 +1617,12 @@ msgstr "MAC 位址" msgid "IP Address" msgstr "" +msgid "Network/Interface" +msgstr "" + +msgid "Mode" +msgstr "" + msgid "Available system users and groups" msgstr "可用的系統使用者及群組" @@ -1732,6 +1809,12 @@ msgstr "" msgid "Select an existing disk" msgstr "" +msgid "Source" +msgstr "" + +msgid "Storage based on Libvirt pool or direct block device" +msgstr "" + msgid "Storage Pool" msgstr "儲存區" @@ -1750,6 +1833,12 @@ msgstr "" msgid "Format of the new disk to be created" msgstr "" +msgid "Directory Path" +msgstr "" + +msgid "Provide a directory path" +msgstr "" + msgid "Storage pool in which the volume is located in" msgstr "" @@ -1759,6 +1848,12 @@ msgstr "儲存磁區" msgid "Storage volume to be attached" msgstr "要連接的儲存磁區" +msgid "Disk Path" +msgstr "" + +msgid "Provide a block device" +msgstr "" + msgid "File Path" msgstr "檔案路徑" @@ -1777,9 +1872,6 @@ msgstr "客體" msgid "Templates" msgstr "範本" -msgid "Storage" -msgstr "儲存體" - msgid "This is not a valid Linux path" msgstr "這是無效的 Linux 路徑" @@ -1832,6 +1924,9 @@ msgstr "" msgid "Please check the invalid Storage Pools" msgstr "" +msgid "Please check the invalid Storage Pools or Paths" +msgstr "" + msgid "" "This will delete the %1 virtual machine and its virtual disks. This " "operation cannot be undone. Would you like to continue?" @@ -2004,6 +2099,30 @@ msgstr "" msgid "Select one or more partitions to be added to the logical pool %1:" msgstr "" +msgid "DIR" +msgstr "" + +msgid "NFS" +msgstr "" + +msgid "iSCSI" +msgstr "" + +msgid "LOGICAL" +msgstr "" + +msgid "device" +msgstr "" + +msgid "path" +msgstr "" + +msgid "size (GiB)" +msgstr "" + +msgid "free size (GiB)" +msgstr "" + msgid "Invalid NFS mount path." msgstr "NFS 裝載路徑無效。" @@ -2019,6 +2138,44 @@ msgstr "CDROM 路徑需要是有效的本端/遠端路徑,並且不能空白 msgid "Disk pool or volume cannot be blank." msgstr "磁碟儲存區或磁區不能空白。" +msgid "" +"Disk size or Format or Directory path cannot be blank and Directory path " +"needs to be a valid local/remote path." +msgstr "" + +msgid "Disk path needs to be a valid local/remote path and cannot be blank." +msgstr "" + +msgid "Storage pool or Disk size or Format cannot be blank." +msgstr "" + +msgid "cdrom" +msgstr "" + +msgid "disk" +msgstr "" + +msgid "Pool" +msgstr "" + +msgid "qcow" +msgstr "" + +msgid "qcow2" +msgstr "" + +msgid "qed" +msgstr "" + +msgid "raw" +msgstr "" + +msgid "vmdk" +msgstr "" + +msgid "vpc" +msgstr "" + msgid "Peers" msgstr "" @@ -2216,12 +2373,6 @@ msgstr "" msgid "Edit Template" msgstr "編輯範本" -msgid "General" -msgstr "一般" - -msgid "Interface" -msgstr "介面" - msgid "Processor" msgstr "處理器" @@ -2257,3 +2408,99 @@ msgstr "核心" msgid "Threads" msgstr "執行緒" + +msgid "Toggle navigation" +msgstr "" + +msgid "Add a Guest" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Guest Name ID" +msgstr "" + +msgid "OS Type" +msgstr "" + +msgid "VNC" +msgstr "" + +msgid "No guests found." +msgstr "" + +msgid "Add a Network" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Add a Storage" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "%Used" +msgstr "" + +msgid "Allocated" +msgstr "" + +msgid "Capacity" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Extending logical pool" +msgstr "" + +msgid "Deactivate" +msgstr "" + +msgid "Activate" +msgstr "" + +msgid "Extend" +msgstr "" + +msgid "Undefine" +msgstr "" + +msgid "Add Volume" +msgstr "" + +msgid "Resize" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Used By" +msgstr "" + +msgid "Used" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Used by the following VMs:" +msgstr "" + +msgid "Allocation" +msgstr "" + +msgid "Template Name (ID)" +msgstr "" + +msgid "No templates found." +msgstr "" + +msgid "M" +msgstr "" -- 2.1.0

Hi, I was unable to apply it on master branch. Could you rebase and resend? [alinefm@alinefm-TP440 kimchi]$ git am -3 /home/alinefm/mail-patches/\[PATCH\ v3\]\ \[Kimchi\ * Applying: Issue #998 Not all static strings are externalized Using index info to reconstruct a base tree... M ui/pages/i18n.json.tmpl Falling back to patching base and 3-way merge... Auto-merging ui/pages/i18n.json.tmpl CONFLICT (content): Merge conflict in ui/pages/i18n.json.tmpl error: Failed to merge in the changes. Patch failed at 0001 Issue #998 Not all static strings are externalized The copy of the patch that failed is found in: /home/alinefm/wok/.git/modules/src/wok/plugins/kimchi/rebase-apply/patch When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". On 10/21/2016 03:20 AM, pkulkark@linux.vnet.ibm.com wrote:
From: Pooja Kulkarni <pkulkark@linux.vnet.ibm.com>
v3: Removed 'fuzzy' messages from .po files
v2: Rebased to latest master
v1: This patch set externalizes all the static string that should be externalized to support globalization. Also contains the updated .pot and .po files
Pooja Kulkarni (2): Issue #998 Not all static strings are externalized Issue #998 Updated .pot and .po files
po/POTFILES.in | 1 + po/de_DE.po | 267 +++++++++++++++++++++++++++-- po/en_US.po | 267 +++++++++++++++++++++++++++-- po/es_ES.po | 267 +++++++++++++++++++++++++++-- po/fr_FR.po | 267 +++++++++++++++++++++++++++-- po/it_IT.po | 267 +++++++++++++++++++++++++++-- po/ja_JP.po | 267 +++++++++++++++++++++++++++-- po/kimchi.pot | 267 +++++++++++++++++++++++++++-- po/ko_KR.po | 267 +++++++++++++++++++++++++++-- po/pt_BR.po | 267 +++++++++++++++++++++++++++-- po/ru_RU.po | 267 +++++++++++++++++++++++++++-- po/zh_CN.po | 267 +++++++++++++++++++++++++++-- po/zh_TW.po | 267 +++++++++++++++++++++++++++-- ui/js/src/kimchi.guest_storage_add.main.js | 12 +- ui/js/src/kimchi.storagepool_add_main.js | 12 +- ui/pages/guest-edit.html.tmpl | 14 +- ui/pages/i18n.json.tmpl | 18 ++ 17 files changed, 3122 insertions(+), 139 deletions(-)
participants (2)
-
Aline Manera
-
pkulkark@linux.vnet.ibm.com