summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Pepple <ken.pepple@gmail.com>2011-04-10 14:34:25 -0700
committerKen Pepple <ken.pepple@gmail.com>2011-04-10 14:34:25 -0700
commita3a5bd3b6fb83ae64c8566a012073b54745eccb7 (patch)
treef26aee7c2f350e36a273bd082e19c33f10f2f7f4
parente892deef8ba1f6c424dd8fa3fc6330d09245c89e (diff)
parent50f3f759468fa549b686dcef98633946163588e6 (diff)
merge trunk
-rw-r--r--Authors1
-rwxr-xr-xbin/nova-manage99
-rw-r--r--doc/source/devref/zone.rst127
-rw-r--r--doc/source/man/novamanage.rst10
-rw-r--r--nova/api/ec2/cloud.py4
-rw-r--r--nova/api/openstack/image_metadata.py12
-rw-r--r--nova/api/openstack/views/images.py10
-rw-r--r--nova/api/openstack/views/servers.py2
-rw-r--r--nova/compute/api.py6
-rw-r--r--nova/network/linux_net.py2
-rw-r--r--nova/tests/api/openstack/test_image_metadata.py39
-rw-r--r--nova/tests/api/openstack/test_servers.py4
-rw-r--r--nova/tests/test_cloud.py31
-rw-r--r--nova/virt/xenapi/vm_utils.py17
-rw-r--r--po/ast.po2432
-rw-r--r--po/cs.po2493
-rw-r--r--po/da.po2434
-rw-r--r--po/de.po2538
-rw-r--r--po/es.po3590
-rw-r--r--po/it.po2587
-rw-r--r--po/ja.po3592
-rw-r--r--po/pt_BR.po2957
-rw-r--r--po/ru.po2757
-rw-r--r--po/uk.po2553
-rw-r--r--po/zh_CN.po2705
-rw-r--r--tools/eventlet-patch24
-rw-r--r--tools/install_venv.py6
27 files changed, 20303 insertions, 10729 deletions
diff --git a/Authors b/Authors
index 48b912184..2de4fb955 100644
--- a/Authors
+++ b/Authors
@@ -31,6 +31,7 @@ Jay Pipes <jaypipes@gmail.com>
Jesse Andrews <anotherjesse@gmail.com>
Joe Heck <heckj@mac.com>
Joel Moore <joelbm24@gmail.com>
+Johannes Erdfelt <johannes.erdfelt@rackspace.com>
John Dewey <john@dewey.ws>
John Tran <jtran@attinteractive.com>
Jonathan Bryce <jbryce@jbryce.com>
diff --git a/bin/nova-manage b/bin/nova-manage
index 015e1ae97..750cd2596 100755
--- a/bin/nova-manage
+++ b/bin/nova-manage
@@ -570,6 +570,49 @@ class NetworkCommands(object):
class VmCommands(object):
"""Class for mangaging VM instances."""
+ def list(self, host=None):
+ """Show a list of all instances
+
+ :param host: show all instance on specified host.
+ :param instance: show specificed instance.
+ """
+ print "%-10s %-15s %-10s %-10s %-19s %-12s %-12s %-12s" \
+ " %-10s %-10s %-10s %-5s" % (
+ _('instance'),
+ _('node'),
+ _('type'),
+ _('state'),
+ _('launched'),
+ _('image'),
+ _('kernel'),
+ _('ramdisk'),
+ _('project'),
+ _('user'),
+ _('zone'),
+ _('index'))
+
+ if host == None:
+ instances = db.instance_get_all(context.get_admin_context())
+ else:
+ instances = db.instance_get_all_by_host(
+ context.get_admin_context(), host)
+
+ for instance in instances:
+ print "%-10s %-15s %-10s %-10s %-19s %-12s %-12s %-12s" \
+ " %-10s %-10s %-10s %-5d" % (
+ instance['hostname'],
+ instance['host'],
+ instance['instance_type'],
+ instance['state_description'],
+ instance['launched_at'],
+ instance['image_id'],
+ instance['kernel_id'],
+ instance['ramdisk_id'],
+ instance['project_id'],
+ instance['user_id'],
+ instance['availability_zone'],
+ instance['launch_index'])
+
def live_migration(self, ec2_id, dest):
"""Migrates a running instance to a new machine.
@@ -701,15 +744,6 @@ class ServiceCommands(object):
{"method": "update_available_resource"})
-class LogCommands(object):
- def request(self, request_id, logfile='/var/log/nova.log'):
- """Show all fields in the log for the given request. Assumes you
- haven't changed the log format too much.
- ARGS: request_id [logfile]"""
- lines = utils.execute("cat %s | grep '\[%s '" % (logfile, request_id))
- print re.sub('#012', "\n", "\n".join(lines))
-
-
class DbCommands(object):
"""Class for managing the database."""
@@ -725,49 +759,6 @@ class DbCommands(object):
print migration.db_version()
-class InstanceCommands(object):
- """Class for managing instances."""
-
- def list(self, host=None, instance=None):
- """Show a list of all instances"""
- print "%-10s %-15s %-10s %-10s %-19s %-12s %-12s %-12s" \
- " %-10s %-10s %-10s %-5s" % (
- _('instance'),
- _('node'),
- _('type'),
- _('state'),
- _('launched'),
- _('image'),
- _('kernel'),
- _('ramdisk'),
- _('project'),
- _('user'),
- _('zone'),
- _('index'))
-
- if host == None:
- instances = db.instance_get_all(context.get_admin_context())
- else:
- instances = db.instance_get_all_by_host(
- context.get_admin_context(), host)
-
- for instance in instances:
- print "%-10s %-15s %-10s %-10s %-19s %-12s %-12s %-12s" \
- " %-10s %-10s %-10s %-5d" % (
- instance['hostname'],
- instance['host'],
- instance['instance_type'],
- instance['state_description'],
- instance['launched_at'],
- instance['image_id'],
- instance['kernel_id'],
- instance['ramdisk_id'],
- instance['project_id'],
- instance['user_id'],
- instance['availability_zone'],
- instance['launch_index'])
-
-
class VolumeCommands(object):
"""Methods for dealing with a cloud in an odd state"""
@@ -1054,13 +1045,11 @@ CATEGORIES = [
('network', NetworkCommands),
('vm', VmCommands),
('service', ServiceCommands),
- ('log', LogCommands),
('db', DbCommands),
('volume', VolumeCommands),
('instance_type', InstanceTypeCommands),
('image', ImageCommands),
- ('flavor', InstanceTypeCommands),
- ('instance', InstanceCommands)]
+ ('flavor', InstanceTypeCommands)]
def lazy_match(name, key_value_tuples):
diff --git a/doc/source/devref/zone.rst b/doc/source/devref/zone.rst
new file mode 100644
index 000000000..3dd9d37d3
--- /dev/null
+++ b/doc/source/devref/zone.rst
@@ -0,0 +1,127 @@
+..
+ Copyright 2010-2011 OpenStack LLC
+ All Rights Reserved.
+
+ Licensed under the Apache License, Version 2.0 (the "License"); you may
+ not use this file except in compliance with the License. You may obtain
+ a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ License for the specific language governing permissions and limitations
+ under the License.
+
+Zones
+=====
+
+A Nova deployment is called a Zone. At the very least a Zone requires an API node, a Scheduler node, a database and RabbitMQ. Pushed further a Zone may contain many API nodes, many Scheduler, Volume, Network and Compute nodes as well as a cluster of databases and RabbitMQ servers. A Zone allows you to partition your deployments into logical groups for load balancing and instance distribution.
+
+The idea behind Zones is, if a particular deployment is not capable of servicing a particular request, the request may be forwarded to (child) Zones for possible processing. Zones may be nested in a tree fashion.
+
+Zones only know about their immediate children, they do not know about their parent Zones and may in fact have more than one parent. Likewise, a Zone's children may themselves have child Zones.
+
+Zones share nothing. They communicate via the public OpenStack API only. No database, queue, user or project definition is shared between Zones.
+
+
+Capabilities
+------------
+Routing between Zones is based on the Capabilities of that Zone. Capabilities are nothing more than key/value pairs. Values are multi-value, with each value separated with a semicolon (`;`). When expressed as a string they take the form:
+
+::
+
+ key=value;value;value, key=value;value;value
+
+Zones have Capabilities which are general to the Zone and are set via `--zone-capabilities` flag. Zones also have dynamic per-service Capabilities. Services derived from `nova.manager.SchedulerDependentManager` (such as Compute, Volume and Network) can set these capabilities by calling the `update_service_capabilities()` method on their `Manager` base class. These capabilities will be periodically sent to the Scheduler service automatically. The rate at which these updates are sent is controlled by the `--periodic_interval` flag.
+
+Flow within a Zone
+------------------
+The brunt of the work within a Zone is done in the Scheduler Service. The Scheduler is responsible for:
+- collecting capability messages from the Compute, Volume and Network nodes,
+- polling the child Zones for their status and
+- providing data to the Distributed Scheduler for performing load balancing calculations
+
+Inter-service communication within a Zone is done with RabbitMQ. Each class of Service (Compute, Volume and Network) has both a named message exchange (particular to that host) and a general message exchange (particular to that class of service). Messages sent to these exchanges are picked off in round-robin fashion. Zones introduce a new fan-out exchange per service. Messages sent to the fan-out exchange are picked up by all services of a particular class. This fan-out exchange is used by the Scheduler services to receive capability messages from the Compute, Volume and Network nodes.
+
+These capability messages are received by the Scheduler services and stored in the `ZoneManager` object. The SchedulerManager object has a reference to the `ZoneManager` it can use for load balancing.
+
+The `ZoneManager` also polls the child Zones periodically to gather their capabilities to aid in decision making. This is done via the OpenStack API `/v1.0/zones/info` REST call. This also captures the name of each child Zone. The Zone name is set via the `--zone-name` flag (and defaults to "nova").
+
+Zone administrative functions
+-----------------------------
+Zone administrative operations are usually done using python-novaclient_
+
+.. _python-novaclient: https://github.com/rackspace/python-novaclient
+
+In order to use the Zone operations, be sure to enable administrator operations in OpenStack API by setting the `--allow_admin_api=true` flag.
+
+Finally you need to enable Zone Forwarding. This will be used by the Distributed Scheduler initiative currently underway. Set `--enable_zone_routing=true` to enable this feature.
+
+Find out about this Zone
+------------------------
+In any Zone you can find the Zone's name and capabilities with the ``nova zone-info`` command.
+
+::
+
+ alice@novadev:~$ nova zone-info
+ +-----------------+---------------+
+ | Property | Value |
+ +-----------------+---------------+
+ | compute_cpu | 0.7,0.7 |
+ | compute_disk | 123000,123000 |
+ | compute_network | 800,800 |
+ | hypervisor | xenserver |
+ | name | nova |
+ | network_cpu | 0.7,0.7 |
+ | network_disk | 123000,123000 |
+ | network_network | 800,800 |
+ | os | linux |
+ +-----------------+---------------+
+
+This equates to a GET operation on `.../zones/info`. If you have no child Zones defined you'll usually only get back the default `name`, `hypervisor` and `os` capabilities. Otherwise you'll get back a tuple of min, max values for each capabilities of all the hosts of all the services running in the child zone. These take the `<service>_<capability> = <min>,<max>` format.
+
+Adding a child Zone
+-------------------
+Any Zone can be a parent Zone. Children are associated to a Zone. The Zone where this command originates from is known as the Parent Zone. Routing is only ever conducted from a Zone to its children, never the other direction. From a parent zone you can add a child zone with the following command:
+
+::
+
+ nova zone-add <child zone api url> <username> <nova api key>
+
+You can get the `child zone api url`, `nova api key` and `username` from the `novarc` file in the child zone. For example:
+
+::
+
+ export NOVA_API_KEY="3bd1af06-6435-4e23-a827-413b2eb86934"
+ export NOVA_USERNAME="alice"
+ export NOVA_URL="http://192.168.2.120:8774/v1.0/"
+
+
+This equates to a POST operation to `.../zones/` to add a new zone. No connection attempt to the child zone is done when this command. It only puts an entry in the db at this point. After about 30 seconds the `ZoneManager` in the Scheduler services will attempt to talk to the child zone and get its information.
+
+Getting a list of child Zones
+-----------------------------
+
+::
+
+ nova zone-list
+
+ alice@novadev:~$ nova zone-list
+ +----+-------+-----------+--------------------------------------------+---------------------------------+
+ | ID | Name | Is Active | Capabilities | API URL |
+ +----+-------+-----------+--------------------------------------------+---------------------------------+
+ | 2 | zone1 | True | hypervisor=xenserver;kvm, os=linux;windows | http://192.168.2.108:8774/v1.0/ |
+ | 3 | zone2 | True | hypervisor=xenserver;kvm, os=linux;windows | http://192.168.2.115:8774/v1.0/ |
+ +----+-------+-----------+--------------------------------------------+---------------------------------+
+
+This equates to a GET operation to `.../zones`.
+
+Removing a child Zone
+---------------------
+::
+
+ nova zone-delete <N>
+
+This equates to a DELETE call to `.../zones/N`. The Zone with ID=N will be removed. This will only remove the zone entry from the current (parent) Zone, no child Zones are affected. Removing a Child Zone doesn't affect any other part of the hierarchy.
diff --git a/doc/source/man/novamanage.rst b/doc/source/man/novamanage.rst
index 1d8446f08..9c54f3608 100644
--- a/doc/source/man/novamanage.rst
+++ b/doc/source/man/novamanage.rst
@@ -240,6 +240,16 @@ Nova Images
Converts all images in directory from the old (Bexar) format to the new format.
+Nova VM
+~~~~~~~~~~~
+
+``nova-manage vm list [host]``
+ Show a list of all instances. Accepts optional hostname (to show only instances on specific host).
+
+``nova-manage live-migration <ec2_id> <destination host name>``
+ Live migrate instance from current host to destination host. Requires instance id (which comes from euca-describe-instance) and destination host name (which can be found from nova-manage service list).
+
+
FILES
========
diff --git a/nova/api/ec2/cloud.py b/nova/api/ec2/cloud.py
index 4ed8a9ecf..651ec47f9 100644
--- a/nova/api/ec2/cloud.py
+++ b/nova/api/ec2/cloud.py
@@ -984,7 +984,7 @@ class CloudController(object):
except exception.NotFound:
raise exception.NotFound(_('Image %s not found') % image_id)
result = {'imageId': image_id, 'launchPermission': []}
- if image['properties']['is_public']:
+ if image['is_public']:
result['launchPermission'].append({'group': 'all'})
return result
@@ -1009,7 +1009,7 @@ class CloudController(object):
internal_id = image['id']
del(image['id'])
- image['properties']['is_public'] = (operation_type == 'add')
+ image['is_public'] = (operation_type == 'add')
return self.image_service.update(context, internal_id, image)
def update_image(self, context, image_id, **kwargs):
diff --git a/nova/api/openstack/image_metadata.py b/nova/api/openstack/image_metadata.py
index e673e5f7b..1eccc0174 100644
--- a/nova/api/openstack/image_metadata.py
+++ b/nova/api/openstack/image_metadata.py
@@ -18,6 +18,7 @@
from webob import exc
from nova import flags
+from nova import quota
from nova import utils
from nova import wsgi
from nova.api.openstack import common
@@ -40,6 +41,15 @@ class Controller(common.OpenstackController):
metadata = image.get('properties', {})
return metadata
+ def _check_quota_limit(self, context, metadata):
+ if metadata is None:
+ return
+ num_metadata = len(metadata)
+ quota_metadata = quota.allowed_metadata_items(context, num_metadata)
+ if quota_metadata < num_metadata:
+ expl = _("Image metadata limit exceeded")
+ raise exc.HTTPBadRequest(explanation=expl)
+
def index(self, req, image_id):
"""Returns the list of metadata for a given instance"""
context = req.environ['nova.context']
@@ -62,6 +72,7 @@ class Controller(common.OpenstackController):
if 'metadata' in body:
for key, value in body['metadata'].iteritems():
metadata[key] = value
+ self._check_quota_limit(context, metadata)
img['properties'] = metadata
self.image_service.update(context, image_id, img, None)
return dict(metadata=metadata)
@@ -78,6 +89,7 @@ class Controller(common.OpenstackController):
img = self.image_service.show(context, image_id)
metadata = self._get_metadata(context, image_id, img)
metadata[id] = body[id]
+ self._check_quota_limit(context, metadata)
img['properties'] = metadata
self.image_service.update(context, image_id, img, None)
diff --git a/nova/api/openstack/views/images.py b/nova/api/openstack/views/images.py
index 16195b050..9dec8a355 100644
--- a/nova/api/openstack/views/images.py
+++ b/nova/api/openstack/views/images.py
@@ -34,11 +34,11 @@ class ViewBuilder(object):
def _format_status(self, image):
"""Update the status field to standardize format."""
status_mapping = {
- 'pending': 'queued',
- 'decrypting': 'preparing',
- 'untarring': 'saving',
- 'available': 'active',
- 'killed': 'failed',
+ 'pending': 'QUEUED',
+ 'decrypting': 'PREPARING',
+ 'untarring': 'SAVING',
+ 'available': 'ACTIVE',
+ 'killed': 'FAILED',
}
try:
diff --git a/nova/api/openstack/views/servers.py b/nova/api/openstack/views/servers.py
index 59a0ab06f..e52bfaea3 100644
--- a/nova/api/openstack/views/servers.py
+++ b/nova/api/openstack/views/servers.py
@@ -82,7 +82,7 @@ class ViewBuilder(object):
# Return the metadata as a dictionary
metadata = {}
for item in inst.get('metadata', []):
- metadata[item['key']] = item['value']
+ metadata[item['key']] = str(item['value'])
inst_dict['metadata'] = metadata
inst_dict['hostId'] = ''
diff --git a/nova/compute/api.py b/nova/compute/api.py
index 83ad6b0c9..041e0e74a 100644
--- a/nova/compute/api.py
+++ b/nova/compute/api.py
@@ -370,11 +370,15 @@ class API(base.Base):
instance_id)
raise
- if (instance['state_description'] == 'terminating'):
+ if instance['state_description'] == 'terminating':
LOG.warning(_("Instance %s is already being terminated"),
instance_id)
return
+ if instance['state_description'] == 'migrating':
+ LOG.warning(_("Instance %s is being migrated"), instance_id)
+ return
+
self.update(context,
instance['id'],
state_description='terminating',
diff --git a/nova/network/linux_net.py b/nova/network/linux_net.py
index ed6c943c7..ec5579dee 100644
--- a/nova/network/linux_net.py
+++ b/nova/network/linux_net.py
@@ -503,7 +503,7 @@ def ensure_bridge(bridge, interface, net_attrs=None):
if fields and fields[0] == "0.0.0.0" and fields[-1] == interface:
gateway = fields[1]
_execute('sudo', 'route', 'del', 'default', 'gw', gateway,
- 'dev', interface)
+ 'dev', interface, check_exit_code=False)
out, err = _execute('sudo', 'ip', 'addr', 'show', 'dev', interface,
'scope', 'global')
for line in out.split("\n"):
diff --git a/nova/tests/api/openstack/test_image_metadata.py b/nova/tests/api/openstack/test_image_metadata.py
index 7c3287006..543c59629 100644
--- a/nova/tests/api/openstack/test_image_metadata.py
+++ b/nova/tests/api/openstack/test_image_metadata.py
@@ -65,6 +65,19 @@ class ImageMetaDataTest(unittest.TestCase):
'key2': 'value2'
},
'size': 5882349},
+ {'status': 'active',
+ 'name': 'image3',
+ 'deleted': False,
+ 'container_format': None,
+ 'created_at': '2011-03-22T17:40:15',
+ 'disk_format': None,
+ 'updated_at': '2011-03-22T17:40:15',
+ 'id': '3',
+ 'location': 'file:///var/lib/glance/images/2',
+ 'is_public': True,
+ 'deleted_at': None,
+ 'properties': {},
+ 'size': 5882349},
]
def setUp(self):
@@ -75,6 +88,10 @@ class ImageMetaDataTest(unittest.TestCase):
fakes.FakeAuthManager.auth_data = {}
fakes.FakeAuthDatabase.data = {}
fakes.stub_out_auth(self.stubs)
+ # NOTE(dprince) max out properties/metadata in image 3 for testing
+ img3 = self.IMAGE_FIXTURES[2]
+ for num in range(FLAGS.quota_metadata_items):
+ img3['properties']['key%i' % num] = "blah"
fakes.stub_out_glance(self.stubs, self.IMAGE_FIXTURES)
def tearDown(self):
@@ -162,3 +179,25 @@ class ImageMetaDataTest(unittest.TestCase):
req.method = 'DELETE'
res = req.get_response(fakes.wsgi_app())
self.assertEqual(404, res.status_int)
+
+ def test_too_many_metadata_items_on_create(self):
+ data = {"metadata": {}}
+ for num in range(FLAGS.quota_metadata_items + 1):
+ data['metadata']['key%i' % num] = "blah"
+ json_string = str(data).replace("\'", "\"")
+ req = webob.Request.blank('/v1.1/images/2/meta')
+ req.environ['api.version'] = '1.1'
+ req.method = 'POST'
+ req.body = json_string
+ req.headers["content-type"] = "application/json"
+ res = req.get_response(fakes.wsgi_app())
+ self.assertEqual(400, res.status_int)
+
+ def test_too_many_metadata_items_on_put(self):
+ req = webob.Request.blank('/v1.1/images/3/meta/blah')
+ req.environ['api.version'] = '1.1'
+ req.method = 'PUT'
+ req.body = '{"blah": "blah"}'
+ req.headers["content-type"] = "application/json"
+ res = req.get_response(fakes.wsgi_app())
+ self.assertEqual(400, res.status_int)
diff --git a/nova/tests/api/openstack/test_servers.py b/nova/tests/api/openstack/test_servers.py
index f10bc1d7b..34513734b 100644
--- a/nova/tests/api/openstack/test_servers.py
+++ b/nova/tests/api/openstack/test_servers.py
@@ -751,7 +751,7 @@ class ServersTest(test.TestCase):
self.assertEqual(s['imageId'], '10')
self.assertEqual(s['flavorId'], 1)
self.assertEqual(s['status'], 'BUILD')
- self.assertEqual(s['metadata']['seq'], i)
+ self.assertEqual(s['metadata']['seq'], str(i))
def test_get_all_server_details_v1_1(self):
req = webob.Request.blank('/v1.1/servers/detail')
@@ -765,7 +765,7 @@ class ServersTest(test.TestCase):
self.assertEqual(s['imageRef'], 'http://localhost/v1.1/images/10')
self.assertEqual(s['flavorRef'], 'http://localhost/v1.1/flavors/1')
self.assertEqual(s['status'], 'BUILD')
- self.assertEqual(s['metadata']['seq'], i)
+ self.assertEqual(s['metadata']['seq'], str(i))
def test_get_all_server_details_with_host(self):
'''
diff --git a/nova/tests/test_cloud.py b/nova/tests/test_cloud.py
index 5cb969979..5f76a9005 100644
--- a/nova/tests/test_cloud.py
+++ b/nova/tests/test_cloud.py
@@ -247,6 +247,37 @@ class CloudTestCase(test.TestCase):
self.assertRaises(NotFound, describe_images,
self.context, ['ami-fake'])
+ def test_describe_image_attribute(self):
+ describe_image_attribute = self.cloud.describe_image_attribute
+
+ def fake_show(meh, context, id):
+ return {'id': 1, 'properties': {'kernel_id': 1, 'ramdisk_id': 1,
+ 'type': 'machine'}, 'is_public': True}
+
+ self.stubs.Set(local.LocalImageService, 'show', fake_show)
+ self.stubs.Set(local.LocalImageService, 'show_by_name', fake_show)
+ result = describe_image_attribute(self.context, 'ami-00000001',
+ 'launchPermission')
+ self.assertEqual([{'group': 'all'}], result['launchPermission'])
+
+ def test_modify_image_attribute(self):
+ modify_image_attribute = self.cloud.modify_image_attribute
+
+ def fake_show(meh, context, id):
+ return {'id': 1, 'properties': {'kernel_id': 1, 'ramdisk_id': 1,
+ 'type': 'machine'}, 'is_public': False}
+
+ def fake_update(meh, context, image_id, metadata, data=None):
+ return metadata
+
+ self.stubs.Set(local.LocalImageService, 'show', fake_show)
+ self.stubs.Set(local.LocalImageService, 'show_by_name', fake_show)
+ self.stubs.Set(local.LocalImageService, 'update', fake_update)
+ result = modify_image_attribute(self.context, 'ami-00000001',
+ 'launchPermission', 'add',
+ user_group=['all'])
+ self.assertEqual(True, result['is_public'])
+
def test_console_output(self):
instance_type = FLAGS.default_instance_type
max_count = 1
diff --git a/nova/virt/xenapi/vm_utils.py b/nova/virt/xenapi/vm_utils.py
index 46fc6baa4..d2045a557 100644
--- a/nova/virt/xenapi/vm_utils.py
+++ b/nova/virt/xenapi/vm_utils.py
@@ -49,6 +49,8 @@ LOG = logging.getLogger("nova.virt.xenapi.vm_utils")
FLAGS = flags.FLAGS
flags.DEFINE_string('default_os_type', 'linux', 'Default OS type')
+flags.DEFINE_integer('block_device_creation_timeout', 10,
+ 'time to wait for a block device to be created')
XENAPI_POWER_STATE = {
'Halted': power_state.SHUTDOWN,
@@ -896,6 +898,16 @@ def remap_vbd_dev(dev):
return remapped_dev
+def _wait_for_device(dev):
+ """Wait for device node to appear"""
+ for i in xrange(0, FLAGS.block_device_creation_timeout):
+ if os.path.exists('/dev/%s' % dev):
+ return
+ time.sleep(1)
+
+ raise StorageError(_('Timeout waiting for device %s to be created') % dev)
+
+
def with_vdi_attached_here(session, vdi_ref, read_only, f):
this_vm_ref = get_this_vm_ref(session)
vbd_rec = {}
@@ -924,6 +936,11 @@ def with_vdi_attached_here(session, vdi_ref, read_only, f):
if dev != orig_dev:
LOG.debug(_('VBD %(vbd_ref)s plugged into wrong dev, '
'remapping to %(dev)s') % locals())
+ if dev != 'autodetect':
+ # NOTE(johannes): Unit tests will end up with a device called
+ # 'autodetect' which obviously won't exist. It's not ideal,
+ # but the alternatives were much messier
+ _wait_for_device(dev)
return f(dev)
finally:
LOG.debug(_('Destroying VBD for VDI %s ... '), vdi_ref)
diff --git a/po/ast.po b/po/ast.po
index 6e224f235..be9910a2c 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -7,2124 +7,2842 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
"PO-Revision-Date: 2011-01-12 19:50+0000\n"
"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
"Language-Team: Asturian <ast@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-05 05:36+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-03-19 06:18+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr ""
+
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr ""
+
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
+
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
+
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr ""
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr ""
+
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
+msgstr ""
+
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr ""
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr ""
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:152
+#, python-format
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:238
+#, python-format
+msgid "Compute.api::lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:253
+#, python-format
+msgid "Compute.api::unlock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:267
+#, python-format
+msgid "Compute.api::get_lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:292
+#, python-format
+msgid "Compute.api::pause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:303
+#, python-format
+msgid "Compute.api::unpause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:314
+#, python-format
+msgid "compute.api::suspend %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:325
+#, python-format
+msgid "compute.api::resume %s"
+msgstr ""
+
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr ""
+
+#: ../nova/twistd.py:209
+#, python-format
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr ""
+
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr ""
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr ""
+
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr ""
+
+#: ../nova/twistd.py:266
+#, python-format
+msgid "Starting %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
+#, python-format
+msgid "Instance %s not found"
+msgstr ""
+
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
+#, python-format
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:91
+#, python-format
+msgid "Unable to attach volume to instance %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr ""
+
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
+#, python-format
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:112
+#, python-format
+msgid "Unable to locate volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:120
+#, python-format
+msgid "Unable to detach volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:127
+#, python-format
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr ""
+
+#: ../nova/crypto.py:46
msgid "Filename of root CA"
msgstr "Nome del ficheru de l'autoridá de certificáu raíz"
-#: nova/crypto.py:49
+#: ../nova/crypto.py:49
msgid "Filename of private key"
msgstr "Nome del ficheru de clave privada"
-#: nova/crypto.py:51
+#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
msgstr "Nome del ficheru de llista de refugu de certificáu raíz"
-#: nova/crypto.py:53
+#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr ""
-#: nova/crypto.py:55
+#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr ""
-#: nova/crypto.py:57
+#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr ""
-#: nova/crypto.py:61
+#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr ""
-#: nova/crypto.py:66
+#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:71
+#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:258
+#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr ""
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr ""
+
+#: ../nova/compute/manager.py:78
+#, python-format
+msgid "check_instance_lock: decorating: |%s|"
msgstr ""
-#: nova/exception.py:36
+#: ../nova/compute/manager.py:80
#, python-format
msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
msgstr ""
-#: nova/exception.py:86
-msgid "Uncaught exception"
+#: ../nova/compute/manager.py:84
+#, python-format
+msgid "check_instance_lock: locked: |%s|"
msgstr ""
-#: nova/fakerabbit.py:48
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "(%s) publish (key: %s) %s"
+msgid "check_instance_lock: admin: |%s|"
msgstr ""
-#: nova/fakerabbit.py:53
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Publishing to route %s"
+msgid "check_instance_lock: executing: |%s|"
msgstr ""
-#: nova/fakerabbit.py:83
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Declaring queue %s"
+msgid "check_instance_lock: not executing |%s|"
+msgstr ""
+
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
msgstr ""
-#: nova/fakerabbit.py:89
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "Declaring exchange %s"
+msgid "instance %s: starting..."
msgstr ""
-#: nova/fakerabbit.py:95
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "Binding %s to %s with key %s"
+msgid "instance %s: Failed to spawn"
msgstr ""
-#: nova/fakerabbit.py:120
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "Getting from %s: %s"
+msgid "Terminating instance %s"
msgstr ""
-#: nova/rpc.py:92
+#: ../nova/compute/manager.py:255
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+msgid "Deallocating address %s"
msgstr ""
-#: nova/rpc.py:99
+#: ../nova/compute/manager.py:268
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgid "trying to destroy already destroyed instance: %s"
msgstr ""
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
+#: ../nova/compute/manager.py:282
+#, python-format
+msgid "Rebooting instance %s"
msgstr ""
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
+#: ../nova/compute/manager.py:287
+#, python-format
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-#: nova/rpc.py:155
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "Initing the Adapter Consumer for %s"
+msgid "instance %s: snapshotting"
msgstr ""
-#: nova/rpc.py:170
+#: ../nova/compute/manager.py:316
#, python-format
-msgid "received %s"
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-#: nova/rpc.py:183
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "no method for message: %s"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
msgstr ""
-#: nova/rpc.py:184
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "No method for message: %s"
+msgid "instance %s: setting admin password"
msgstr ""
-#: nova/rpc.py:245
+#: ../nova/compute/manager.py:353
#, python-format
-msgid "Returning exception %s to caller"
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
msgstr ""
-#: nova/rpc.py:286
+#: ../nova/compute/manager.py:362
#, python-format
-msgid "unpacked context: %s"
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
msgstr ""
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
+#: ../nova/compute/manager.py:372
+#, python-format
+msgid "instance %s: rescuing"
msgstr ""
-#: nova/rpc.py:308
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "MSG_ID is %s"
+msgid "instance %s: unrescuing"
msgstr ""
-#: nova/rpc.py:356
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "response %s"
+msgid "instance %s: pausing"
msgstr ""
-#: nova/rpc.py:365
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "topic is %s"
+msgid "instance %s: unpausing"
msgstr ""
-#: nova/rpc.py:366
+#: ../nova/compute/manager.py:440
#, python-format
-msgid "message %s"
+msgid "instance %s: retrieving diagnostics"
msgstr ""
-#: nova/service.py:157
+#: ../nova/compute/manager.py:453
#, python-format
-msgid "Starting %s node"
+msgid "instance %s: suspending"
msgstr ""
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
+#: ../nova/compute/manager.py:472
+#, python-format
+msgid "instance %s: resuming"
msgstr ""
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
+#: ../nova/compute/manager.py:491
+#, python-format
+msgid "instance %s: locking"
msgstr ""
-#: nova/service.py:202
-msgid "Recovered model server connection!"
+#: ../nova/compute/manager.py:503
+#, python-format
+msgid "instance %s: unlocking"
msgstr ""
-#: nova/service.py:208
-msgid "model server went away"
+#: ../nova/compute/manager.py:513
+#, python-format
+msgid "instance %s: getting locked state"
msgstr ""
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/compute/manager.py:526
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
+msgid "instance %s: reset network"
msgstr ""
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
#, python-format
-msgid "Serving %s"
+msgid "Get console output for instance %s"
msgstr ""
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
+#: ../nova/compute/manager.py:543
+#, python-format
+msgid "instance %s: getting ajax console"
msgstr ""
-#: nova/twistd.py:211
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
msgstr ""
-#: nova/twistd.py:268
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "Starting %s"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
msgstr ""
-#: nova/utils.py:53
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Inner Exception: %s"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
msgstr ""
-#: nova/utils.py:54
+#: ../nova/compute/manager.py:588
#, python-format
-msgid "Class %s cannot be found"
+msgid "Detaching volume from unknown instance %s"
msgstr ""
-#: nova/utils.py:113
+#: ../nova/scheduler/simple.py:53
#, python-format
-msgid "Fetching %s"
+msgid "Host %s is not alive"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
msgstr ""
-#: nova/utils.py:125
+#: ../nova/scheduler/simple.py:87
#, python-format
-msgid "Running cmd (subprocess): %s"
+msgid "Host %s not available"
msgstr ""
-#: nova/utils.py:138
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
+msgstr ""
+
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "Result was %s"
+msgid "Re-exporting %s volumes"
msgstr ""
-#: nova/utils.py:171
+#: ../nova/volume/manager.py:90
#, python-format
-msgid "debug in callback: %s"
+msgid "volume %s: skipping export"
msgstr ""
-#: nova/utils.py:176
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Running %s"
+msgid "volume %s: creating"
msgstr ""
-#: nova/utils.py:207
+#: ../nova/volume/manager.py:108
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
msgstr ""
-#: nova/utils.py:289
+#: ../nova/volume/manager.py:112
#, python-format
-msgid "Invalid backend: %s"
+msgid "volume %s: creating export"
msgstr ""
-#: nova/utils.py:300
+#: ../nova/volume/manager.py:123
#, python-format
-msgid "backend %s"
+msgid "volume %s: created successfully"
msgstr ""
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
msgstr ""
-#: nova/api/ec2/__init__.py:142
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
+msgstr ""
+
+#: ../nova/volume/manager.py:136
#, python-format
-msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
+msgid "volume %s: removing export"
msgstr ""
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#: ../nova/volume/manager.py:138
#, python-format
-msgid "Authentication Failure: %s"
+msgid "volume %s: deleting"
msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/volume/manager.py:147
#, python-format
-msgid "Authenticated Request For %s:%s)"
+msgid "volume %s: deleted successfully"
msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/virt/xenapi/fake.py:74
#, python-format
-msgid "action: %s"
+msgid "%(text)s: _db_content => %(content)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/virt/xenapi/fake.py:306
#, python-format
-msgid "arg: %s\t\tval: %s"
+msgid "xenapi.fake does not have an implementation for %s"
msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/virt/xenapi/fake.py:341
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
+msgid "Calling %(localname)s %(impl)s"
msgstr ""
-#: nova/api/ec2/__init__.py:339
+#: ../nova/virt/xenapi/fake.py:346
#, python-format
-msgid "NotFound raised: %s"
+msgid "Calling getter %s"
msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/virt/xenapi/fake.py:406
#, python-format
-msgid "ApiError raised: %s"
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
+msgstr ""
+
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
msgstr ""
-#: nova/api/ec2/__init__.py:349
+#: ../nova/tests/test_cloud.py:268
#, python-format
-msgid "Unexpected error raised: %s"
+msgid "Need to watch instance %s until it's running..."
msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
msgstr ""
-#: nova/api/ec2/admin.py:84
+#: ../nova/network/linux_net.py:187
#, python-format
-msgid "Creating new user: %s"
+msgid "Starting VLAN inteface %s"
msgstr ""
-#: nova/api/ec2/admin.py:92
+#: ../nova/network/linux_net.py:208
#, python-format
-msgid "Deleting user: %s"
+msgid "Starting Bridge interface for %s"
msgstr ""
-#: nova/api/ec2/admin.py:114
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
#, python-format
-msgid "Adding role %s to user %s for project %s"
+msgid "Hupping dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/network/linux_net.py:316
#, python-format
-msgid "Adding sitewide role %s to user %s"
+msgid "Pid %d is stale, relaunching dnsmasq"
msgstr ""
-#: nova/api/ec2/admin.py:122
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
#, python-format
-msgid "Removing role %s from user %s for project %s"
+msgid "killing radvd threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/network/linux_net.py:360
#, python-format
-msgid "Removing sitewide role %s from user %s"
+msgid "Pid %d is stale, relaunching radvd"
msgstr ""
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
+#, python-format
+msgid "Killing dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/utils.py:58
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
+msgid "Inner Exception: %s"
msgstr ""
-#: nova/api/ec2/admin.py:159
+#: ../nova/utils.py:59
#, python-format
-msgid "Create project %s managed by %s"
+msgid "Class %s cannot be found"
msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/utils.py:118
#, python-format
-msgid "Delete project: %s"
+msgid "Fetching %s"
msgstr ""
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/utils.py:130
#, python-format
-msgid "Adding user %s to project %s"
+msgid "Running cmd (subprocess): %s"
msgstr ""
-#: nova/api/ec2/admin.py:188
+#: ../nova/utils.py:143 ../nova/utils.py:183
#, python-format
-msgid "Removing user %s from project %s"
+msgid "Result was %s"
msgstr ""
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/utils.py:159
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
+msgid "Running cmd (SSH): %s"
msgstr ""
-#: nova/api/ec2/cloud.py:117
+#: ../nova/utils.py:217
#, python-format
-msgid "Generating root CA: %s"
+msgid "debug in callback: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:277
+#: ../nova/utils.py:222
#, python-format
-msgid "Create key pair %s"
+msgid "Running %s"
msgstr ""
-#: nova/api/ec2/cloud.py:285
+#: ../nova/utils.py:262
#, python-format
-msgid "Delete key pair %s"
+msgid "Link Local address is not found.:%s"
msgstr ""
-#: nova/api/ec2/cloud.py:357
+#: ../nova/utils.py:265
#, python-format
-msgid "%s is not a valid ipProtocol"
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
msgstr ""
-#: nova/api/ec2/cloud.py:361
-msgid "Invalid port range"
+#: ../nova/utils.py:363
+#, python-format
+msgid "Invalid backend: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:392
+#: ../nova/utils.py:374
#, python-format
-msgid "Revoke security group ingress %s"
+msgid "backend %s"
msgstr ""
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
-msgid "No rule for the specified parameters."
+#: ../nova/fakerabbit.py:49
+#, python-format
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:421
+#: ../nova/fakerabbit.py:54
#, python-format
-msgid "Authorize security group ingress %s"
+msgid "Publishing to route %s"
msgstr ""
-#: nova/api/ec2/cloud.py:432
+#: ../nova/fakerabbit.py:84
#, python-format
-msgid "This rule already exists in group %s"
+msgid "Declaring queue %s"
msgstr ""
-#: nova/api/ec2/cloud.py:460
+#: ../nova/fakerabbit.py:90
#, python-format
-msgid "Create Security Group %s"
+msgid "Declaring exchange %s"
msgstr ""
-#: nova/api/ec2/cloud.py:463
+#: ../nova/fakerabbit.py:96
#, python-format
-msgid "group %s already exists"
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
msgstr ""
-#: nova/api/ec2/cloud.py:475
+#: ../nova/fakerabbit.py:121
#, python-format
-msgid "Delete security group %s"
+msgid "Getting from %(queue)s: %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
-msgid "Get console output for instance %s"
+msgid "Created VM %s..."
msgstr ""
-#: nova/api/ec2/cloud.py:543
+#: ../nova/virt/xenapi/vm_utils.py:138
#, python-format
-msgid "Create volume of %s GB"
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:567
+#: ../nova/virt/xenapi/vm_utils.py:168
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
msgstr ""
-#: nova/api/ec2/cloud.py:579
+#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
-msgid "Detach volume %s"
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:686
-msgid "Allocate address"
+#: ../nova/virt/xenapi/vm_utils.py:187
+#, python-format
+msgid "VBD not found in instance %s"
msgstr ""
-#: nova/api/ec2/cloud.py:691
+#: ../nova/virt/xenapi/vm_utils.py:197
#, python-format
-msgid "Release address %s"
+msgid "Unable to unplug VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:696
+#: ../nova/virt/xenapi/vm_utils.py:209
#, python-format
-msgid "Associate address %s to instance %s"
+msgid "Unable to destroy VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/virt/xenapi/vm_utils.py:224
#, python-format
-msgid "Disassociate address %s"
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:730
-msgid "Going to start terminating instances"
+#: ../nova/virt/xenapi/vm_utils.py:227
+#, python-format
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:738
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
-msgid "Reboot instance %r"
+msgid ""
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:775
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "De-registering image %s"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
msgstr ""
-#: nova/api/ec2/cloud.py:783
+#: ../nova/virt/xenapi/vm_utils.py:272
#, python-format
-msgid "Registered image %s with id %s"
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
-msgid "attribute not supported: %s"
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
msgstr ""
-#: nova/api/ec2/cloud.py:794
+#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
-msgid "invalid id: %s"
+msgid "Size for image %(image)s:%(virtual_size)d"
msgstr ""
-#: nova/api/ec2/cloud.py:807
-msgid "user or group not specified"
+#: ../nova/virt/xenapi/vm_utils.py:332
+#, python-format
+msgid "Glance image %s"
msgstr ""
-#: nova/api/ec2/cloud.py:809
-msgid "only group \"all\" is supported"
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
+#, python-format
+msgid "Copying VDI %s to /boot/guest on dom0"
msgstr ""
-#: nova/api/ec2/cloud.py:811
-msgid "operation_type must be add or remove"
+#: ../nova/virt/xenapi/vm_utils.py:352
+#, python-format
+msgid "Kernel/Ramdisk VDI %s destroyed"
msgstr ""
-#: nova/api/ec2/cloud.py:812
+#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
-msgid "Updating image %s publicity"
+msgid "Asking xapi to fetch %(url)s as %(access)s"
msgstr ""
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
#, python-format
-msgid "Failed to get metadata for ip: %s"
+msgid "Looking up vdi %s for PV kernel"
msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid "Caught error: %s"
+msgid "PV Kernel in VDI:%s"
msgstr ""
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
+#: ../nova/virt/xenapi/vm_utils.py:405
+#, python-format
+msgid "Running pygrub against %s"
msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
-msgid "Compute.api::lock %s"
+msgid "Found Xen kernel %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
-msgid "Compute.api::unlock %s"
+msgid "duplicate name found: %s"
msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "Compute.api::get_lock %s"
+msgid "VDI %s is still available"
msgstr ""
-#: nova/api/openstack/servers.py:224
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "Compute.api::pause %s"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "Compute.api::unpause %s"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../nova/virt/xenapi/vm_utils.py:525
#, python-format
-msgid "compute.api::suspend %s"
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "compute.api::resume %s"
+msgid "Re-scanning SR %s"
msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "User %s already exists"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../nova/virt/xenapi/vm_utils.py:590
#, python-format
-msgid "Project can't be created because project %s already exists"
+msgid "No VDIs found for VM %s"
msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vm_utils.py:594
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
msgstr ""
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
-msgid "User \"%s\" not found"
+msgid "Creating VBD for VDI %s ... "
msgstr ""
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
-msgid "Project \"%s\" not found"
+msgid "Creating VBD for VDI %s done."
msgstr ""
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
+#, python-format
+msgid "Plugging VBD %s ... "
msgstr ""
-#: nova/auth/ldapdriver.py:181
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
#, python-format
-msgid "LDAP object for %s doesn't exist"
+msgid "Plugging VBD %s done."
msgstr ""
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vm_utils.py:661
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vm_utils.py:664
#, python-format
-msgid "User %s is already a member of the group %s"
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
msgstr ""
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
-msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+msgid "Destroying VBD for VDI %s ... "
msgstr ""
-#: nova/auth/ldapdriver.py:528
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
-msgid "Group at dn %s doesn't exist"
+msgid "Destroying VBD for VDI %s done."
msgstr ""
-#: nova/auth/manager.py:259
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
-msgid "Looking up user: %r"
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
msgstr ""
-#: nova/auth/manager.py:263
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
-msgid "Failed authorization for access key %s"
+msgid "Ignoring XenAPI.Failure %s"
msgstr ""
-#: nova/auth/manager.py:264
+#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
-msgid "No user found for access key %s"
+msgid ""
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""
-#: nova/auth/manager.py:270
+#: ../nova/virt/xenapi/vm_utils.py:747
#, python-format
-msgid "Using project name = user name (%s)"
+msgid "Writing partition table %s done."
msgstr ""
-#: nova/auth/manager.py:275
+#: ../nova/tests/test_rpc.py:89
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
+msgid "Nested received %(queue)s, %(value)s"
msgstr ""
-#: nova/auth/manager.py:277
+#: ../nova/tests/test_rpc.py:95
#, python-format
-msgid "No project called %s could be found"
+msgid "Nested return %s"
msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "Received %s"
msgstr ""
-#: nova/auth/manager.py:283
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:133
#, python-format
-msgid "User %s is not a member of project %s"
+msgid "No service for id %s"
msgstr ""
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/db/sqlalchemy/api.py:251
#, python-format
-msgid "Invalid signature for user %s"
+msgid "No service for %(host)s, %(binary)s"
msgstr ""
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
msgstr ""
-#: nova/auth/manager.py:374
-msgid "Must specify project"
+#: ../nova/db/sqlalchemy/api.py:608
+#, python-format
+msgid "No floating ip for address %s"
msgstr ""
-#: nova/auth/manager.py:408
+#: ../nova/db/sqlalchemy/api.py:629
#, python-format
-msgid "The %s role can not be found"
+msgid "No address for instance %s"
msgstr ""
-#: nova/auth/manager.py:410
+#: ../nova/db/sqlalchemy/api.py:961
#, python-format
-msgid "The %s role is global only"
+msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""
-#: nova/auth/manager.py:412
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
#, python-format
-msgid "Adding role %s to user %s in project %s"
+msgid "No network for id %s"
msgstr ""
-#: nova/auth/manager.py:438
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
-msgid "Removing role %s from user %s on project %s"
+msgid "No network for bridge %s"
msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
#, python-format
-msgid "Created project %s with manager %s"
+msgid "No network for instance %s"
msgstr ""
-#: nova/auth/manager.py:523
+#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
-msgid "modifying project %s"
+msgid "Token %s does not exist"
msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
-msgid "Remove user %s from project %s"
+msgid "No quota for project_id %s"
msgstr ""
-#: nova/auth/manager.py:581
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
#, python-format
-msgid "Deleting project %s"
+msgid "Volume %s not found"
msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
-msgid "Created user %s (admin: %r)"
+msgid "No export device found for volume %s"
msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
-msgid "Deleting user %s"
+msgid "No target id found for volume %s"
msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/db/sqlalchemy/api.py:1572
#, python-format
-msgid "Access Key change for user %s"
+msgid "No security group with id %s"
msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/db/sqlalchemy/api.py:1589
#, python-format
-msgid "Secret Key change for user %s"
+msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""
-#: nova/auth/manager.py:659
+#: ../nova/db/sqlalchemy/api.py:1682
#, python-format
-msgid "Admin status set to %r for user %s"
+msgid "No secuity group rule with id %s"
msgstr ""
-#: nova/auth/manager.py:708
+#: ../nova/db/sqlalchemy/api.py:1756
#, python-format
-msgid "No vpn data for project %s"
+msgid "No user for id %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/db/sqlalchemy/api.py:1772
+#, python-format
+msgid "No user for access key %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:1834
+#, python-format
+msgid "No project with id %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:1979
+#, python-format
+msgid "No console pool with id %(pool_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/db/sqlalchemy/api.py:1996
#, python-format
-msgid "Launching VPN for %s"
+msgid ""
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
msgstr ""
-#: nova/compute/api.py:67
+#: ../nova/db/sqlalchemy/api.py:2035
#, python-format
-msgid "Instance %d was not found in get_network_topic"
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""
-#: nova/compute/api.py:73
+#: ../nova/db/sqlalchemy/api.py:2057
#, python-format
-msgid "Instance %d has no host"
+msgid "on instance %s"
msgstr ""
-#: nova/compute/api.py:92
+#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
+msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""
-#: nova/compute/api.py:94
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
-msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+msgid "No zone with id %(zone_id)s"
msgstr ""
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
+#: ../nova/virt/libvirt_conn.py:160
+#, python-format
+msgid "Checking state of %s"
msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/virt/libvirt_conn.py:165
#, python-format
-msgid "Going to run %s instances..."
+msgid "Current state of %(name)s was %(state)s."
msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/virt/libvirt_conn.py:183
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
+msgid "Connecting to libvirt: %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
msgstr ""
-#: nova/compute/api.py:279
+#: ../nova/virt/libvirt_conn.py:258
#, python-format
-msgid "Going to try and terminate %s"
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""
-#: nova/compute/api.py:283
+#: ../nova/virt/libvirt_conn.py:283
#, python-format
-msgid "Instance %d was not found during terminate"
+msgid "Invalid device path %s"
msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/virt/libvirt_conn.py:313
#, python-format
-msgid "Instance %d is already being terminated"
+msgid "No disk at %s"
msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:336
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "instance %s: rebooted"
msgstr ""
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
+#: ../nova/virt/libvirt_conn.py:339
+#, python-format
+msgid "_wait_for_reboot failed: %s"
msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/virt/libvirt_conn.py:382
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "instance %s: rescued"
msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/virt/libvirt_conn.py:385
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "_wait_for_rescue failed: %s"
msgstr ""
-#: nova/compute/disk.py:128
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "Could not attach image to loopback: %s"
+msgid "instance %s: is running"
msgstr ""
-#: nova/compute/disk.py:136
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "Failed to load partition: %s"
+msgid "instance %s: booted"
msgstr ""
-#: nova/compute/disk.py:158
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid "Failed to mount filesystem: %s"
+msgid "instance %s: failed to boot"
msgstr ""
-#: nova/compute/instance_types.py:41
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "Unknown instance type: %s"
+msgid "virsh said: %r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/virt/libvirt_conn.py:448
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
+msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""
-#: nova/compute/manager.py:71
+#: ../nova/virt/libvirt_conn.py:456
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "Contents of file %(fpath)s: %(contents)r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
msgstr ""
-#: nova/compute/manager.py:75
+#: ../nova/virt/libvirt_conn.py:563
#, python-format
-msgid "check_instance_lock: locked: |%s|"
+msgid "instance %s: Creating image"
msgstr ""
-#: nova/compute/manager.py:77
+#: ../nova/virt/libvirt_conn.py:646
#, python-format
-msgid "check_instance_lock: admin: |%s|"
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:82
+#: ../nova/virt/libvirt_conn.py:649
#, python-format
-msgid "check_instance_lock: executing: |%s|"
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:86
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
#, python-format
-msgid "check_instance_lock: not executing |%s|"
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
msgstr ""
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
+#, python-format
+msgid "instance %s: starting toXML method"
msgstr ""
-#: nova/compute/manager.py:158
+#: ../nova/virt/libvirt_conn.py:732
#, python-format
-msgid "instance %s: starting..."
+msgid "instance %s: finished toXML method"
msgstr ""
-#: nova/compute/manager.py:197
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:1225
#, python-format
-msgid "instance %s: Failed to spawn"
+msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
-msgid "Terminating instance %s"
+msgid "Failed to get metadata for ip: %s"
+msgstr ""
+
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
msgstr ""
-#: nova/compute/manager.py:217
+#: ../nova/network/api.py:39
#, python-format
-msgid "Disassociating address %s"
+msgid "Quota exceeeded for %s, tried to allocate address"
msgstr ""
-#: nova/compute/manager.py:230
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
+msgstr ""
+
+#: ../nova/tests/test_volume.py:162
#, python-format
-msgid "Deallocating address %s"
+msgid "Target %s allocated"
msgstr ""
-#: nova/compute/manager.py:243
+#: ../nova/virt/images.py:70
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
+msgid "Finished retreving %(url)s -- placed in %(path)s"
msgstr ""
-#: nova/compute/manager.py:257
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
+msgstr ""
+
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
#, python-format
-msgid "Rebooting instance %s"
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
+
+#: ../nova/api/direct.py:149
+msgid "not available"
msgstr ""
-#: nova/compute/manager.py:260
+#: ../nova/api/ec2/cloud.py:62
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+msgid "The key_pair %s already exists"
msgstr ""
-#: nova/compute/manager.py:286
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
-msgid "instance %s: snapshotting"
+msgid "Generating root CA: %s"
msgstr ""
-#: nova/compute/manager.py:289
+#: ../nova/api/ec2/cloud.py:303
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Create key pair %s"
msgstr ""
-#: nova/compute/manager.py:301
+#: ../nova/api/ec2/cloud.py:311
#, python-format
-msgid "instance %s: rescuing"
+msgid "Delete key pair %s"
msgstr ""
-#: nova/compute/manager.py:316
+#: ../nova/api/ec2/cloud.py:386
#, python-format
-msgid "instance %s: unrescuing"
+msgid "%s is not a valid ipProtocol"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:390
+msgid "Invalid port range"
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/api/ec2/cloud.py:421
#, python-format
-msgid "instance %s: pausing"
+msgid "Revoke security group ingress %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:443
+msgid "No rule for the specified parameters."
msgstr ""
-#: nova/compute/manager.py:352
+#: ../nova/api/ec2/cloud.py:450
#, python-format
-msgid "instance %s: unpausing"
+msgid "Authorize security group ingress %s"
msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/api/ec2/cloud.py:464
#, python-format
-msgid "instance %s: retrieving diagnostics"
+msgid "This rule already exists in group %s"
msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/api/ec2/cloud.py:492
#, python-format
-msgid "instance %s: suspending"
+msgid "Create Security Group %s"
msgstr ""
-#: nova/compute/manager.py:401
+#: ../nova/api/ec2/cloud.py:495
#, python-format
-msgid "instance %s: resuming"
+msgid "group %s already exists"
msgstr ""
-#: nova/compute/manager.py:420
+#: ../nova/api/ec2/cloud.py:507
#, python-format
-msgid "instance %s: locking"
+msgid "Delete security group %s"
msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/api/ec2/cloud.py:584
#, python-format
-msgid "instance %s: unlocking"
+msgid "Create volume of %s GB"
msgstr ""
-#: nova/compute/manager.py:442
+#: ../nova/api/ec2/cloud.py:612
#, python-format
-msgid "instance %s: getting locked state"
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""
-#: nova/compute/manager.py:462
+#: ../nova/api/ec2/cloud.py:629
#, python-format
-msgid "instance %s: attaching volume %s to %s"
+msgid "Detach volume %s"
msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/api/ec2/cloud.py:761
+msgid "Allocate address"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:766
#, python-format
-msgid "instance %s: attach failed %s, removing"
+msgid "Release address %s"
msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/api/ec2/cloud.py:780
#, python-format
-msgid "Detaching volume from unknown instance %s"
+msgid "Disassociate address %s"
msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/api/ec2/cloud.py:807
+msgid "Going to start terminating instances"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:815
#, python-format
-msgid "updating %s..."
+msgid "Reboot instance %r"
msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
+#: ../nova/api/ec2/cloud.py:867
+#, python-format
+msgid "De-registering image %s"
msgstr ""
-#: nova/compute/monitor.py:355
+#: ../nova/api/ec2/cloud.py:875
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
+msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""
-#: nova/compute/monitor.py:377
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
+msgid "attribute not supported: %s"
msgstr ""
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
+#: ../nova/api/ec2/cloud.py:890
+#, python-format
+msgid "invalid id: %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:903
+msgid "user or group not specified"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:905
+msgid "only group \"all\" is supported"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:907
+msgid "operation_type must be add or remove"
msgstr ""
-#: nova/compute/monitor.py:427
+#: ../nova/api/ec2/cloud.py:908
#, python-format
-msgid "Found instance: %s"
+msgid "Updating image %s publicity"
msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
+#: ../bin/nova-api.py:52
+#, python-format
+msgid "Using paste.deploy config at: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:132
+#: ../bin/nova-api.py:57
#, python-format
-msgid "No service for id %s"
+msgid "No paste configuration for app: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../bin/nova-api.py:59
#, python-format
-msgid "No service for %s, %s"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../bin/nova-api.py:64
#, python-format
-msgid "No floating ip for address %s"
+msgid "Running %s API"
msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../bin/nova-api.py:69
#, python-format
-msgid "No instance for id %s"
+msgid "No known API applications configured in %s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../bin/nova-api.py:83
#, python-format
-msgid "Instance %s not found"
+msgid "Starting nova-api node (version %s)"
msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../bin/nova-api.py:89
#, python-format
-msgid "no keypair for user %s, name %s"
+msgid "No paste configuration found for: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "No network for id %s"
+msgid "Argument %(key)s value %(value)s is too short."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1036
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "No network for bridge %s"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "No network for instance %s"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "Token %s does not exist"
+msgid "Argument %s is required."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1205
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "No quota for project_id %s"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1356
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "No volume for id %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1401
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "Volume %s not found"
+msgid "Attempted to create non-unique name %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1413
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "No export device found for volume %s"
+msgid "instance %(name)s: not enough free memory"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1426
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "No target id found for volume %s"
+msgid "Starting VM %s..."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "No security group with id %s"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "No security group named %s for project: %s"
+msgid "Invalid value for onset_files: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "No secuity group rule with id %s"
+msgid "Injecting file path: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "No user for id %s"
+msgid "Instance %s: booted"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1666
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "No user for access key %s"
+msgid "Instance not present %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "No project with id %s"
+msgid "Starting snapshot for VM %s"
msgstr ""
-#: nova/image/glance.py:78
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""
-#: nova/image/glance.py:97
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid "Finished snapshot and upload for VM %s"
msgstr ""
-#: nova/image/s3.py:82
+#: ../nova/virt/xenapi/vmops.py:356
#, python-format
-msgid "Image %s could not be found"
+msgid "VM %(vm)s already halted, skipping shutdown..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
msgstr ""
-#: nova/network/api.py:39
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../nova/virt/xenapi/vmops.py:564
+#, python-format
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:176
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "Starting VLAN inteface %s"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:186
+#: ../nova/virt/xenapi/vmops.py:760
#, python-format
-msgid "Starting Bridge interface for %s"
+msgid "OpenSSL error: %s"
msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "Hupping dnsmasq threw %s"
+msgid "Running instances: %s"
msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
+msgid "After terminating instances: %s"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
msgstr ""
-#: nova/network/linux_net.py:334
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "Killing dnsmasq threw %s"
+msgid "Launching VPN for %s"
msgstr ""
-#: nova/network/manager.py:135
-msgid "setting network host"
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
msgstr ""
-#: nova/network/manager.py:190
+#: ../nova/image/s3.py:99
#, python-format
-msgid "Leasing IP %s"
+msgid "Image %s could not be found"
msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
msgstr ""
-#: nova/network/manager.py:197
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
+msgid "Authentication Failure: %s"
msgstr ""
-#: nova/network/manager.py:205
+#: ../nova/api/ec2/__init__.py:182
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "IP %s released that isn't associated"
+msgid "action: %s"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/api/ec2/__init__.py:209
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "IP %s released that was not leased"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid "InstanceNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/api/ec2/__init__.py:320
#, python-format
-msgid "Unknown S3 value type %r"
+msgid "VolumeNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:137
-msgid "Authenticated request"
+#: ../nova/api/ec2/__init__.py:326
+#, python-format
+msgid "NotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:182
-msgid "List of buckets requested"
+#: ../nova/api/ec2/__init__.py:329
+#, python-format
+msgid "ApiError raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:209
+#: ../nova/api/ec2/__init__.py:338
#, python-format
-msgid "List keys for bucket %s"
+msgid "Unexpected error raised: %s"
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
msgstr ""
-#: nova/objectstore/handler.py:217
+#: ../nova/auth/dbdriver.py:84
#, python-format
-msgid "Unauthorized attempt to access bucket %s"
+msgid "User %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:235
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
#, python-format
-msgid "Creating bucket %s"
+msgid "Project can't be created because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:245
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
-msgid "Deleting bucket %s"
+msgid "Project can't be created because user %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:249
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
-msgid "Unauthorized attempt to delete bucket %s"
+msgid "Project can't be created because project %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:271
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Getting object: %s / %s"
+msgid "Project can't be modified because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/auth/dbdriver.py:245
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "User \"%s\" not found"
msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/auth/dbdriver.py:248
#, python-format
-msgid "Putting object: %s / %s"
+msgid "Project \"%s\" not found"
msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/virt/xenapi_conn.py:129
+msgid ""
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
+msgstr ""
+
+#: ../nova/virt/xenapi_conn.py:311
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
msgstr ""
-#: nova/objectstore/handler.py:314
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Deleting object: %s / %s"
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Not authorized to upload image: invalid directory %s"
+msgid "Got exception: %s"
msgstr ""
-#: nova/objectstore/handler.py:401
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Not authorized to upload image: unauthorized bucket %s"
+msgid "updating %s..."
msgstr ""
-#: nova/objectstore/handler.py:406
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
+msgstr ""
+
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Starting image upload: %s"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:420
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Not authorized to update attributes of image %s"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
+msgstr ""
+
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
+msgstr ""
+
+#: ../nova/compute/monitor.py:429
+#, python-format
+msgid "Found instance: %s"
msgstr ""
-#: nova/objectstore/handler.py:428
+#: ../nova/volume/san.py:67
#, python-format
-msgid "Toggling publicity flag of image %s %r"
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-#: nova/objectstore/handler.py:433
+#: ../nova/api/ec2/apirequest.py:100
#, python-format
-msgid "Updating user fields on image %s"
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""
-#: nova/objectstore/handler.py:447
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Unauthorized attempt to delete image %s"
+msgid "Caught error: %s"
+msgstr ""
+
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
+msgstr ""
+
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
msgstr ""
-#: nova/objectstore/handler.py:452
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Deleted image: %s"
+msgid "Re-wrote %s"
msgstr ""
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
msgstr ""
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
msgstr ""
-#: nova/scheduler/manager.py:69
+#: ../nova/console/xvp.py:141
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "Error starting xvp: %s"
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
msgstr ""
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
msgstr ""
-#: nova/tests/test_cloud.py:210
-#, python-format
-msgid "Need to watch instance %s until it's running..."
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
msgstr ""
-#: nova/tests/test_compute.py:104
-#, python-format
-msgid "Running instances: %s"
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
msgstr ""
-#: nova/tests/test_compute.py:110
-#, python-format
-msgid "After terminating instances: %s"
+#: ../bin/nova-manage.py:448
+msgid "IP address"
msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
+msgstr ""
+
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
-msgid "Nested received %s, %s"
+msgid "Failed to load partition: %s"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../nova/virt/disk.py:91
#, python-format
-msgid "Nested return %s"
+msgid "Failed to mount filesystem: %s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Received %s"
+msgid "nbd device %s did not show up"
msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "Target %s allocated"
+msgid "Could not attach image to loopback: %s"
msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
msgstr ""
-#: nova/virt/fake.py:210
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "Instance %s Not Found"
+msgid "%(filename)s, line %(line_info)d"
msgstr ""
-#: nova/virt/hyperv.py:118
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr ""
-#: nova/virt/hyperv.py:152
+#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
-#, python-format
-msgid "Created VM %s..."
-msgstr ""
-
-#: nova/virt/hyperv.py:188
+#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:198
+#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""
-#: nova/virt/hyperv.py:227
+#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:272
+#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "Created switch port %s on switch %s"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "Del: disk %s vm %s"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "duplicate name found: %s"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "Successfully changed vm state of %s to %s"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/compute/api.py:71
#, python-format
-msgid "Failed to change vm state of %s to %s"
+msgid "Instance %d was not found in get_network_topic"
msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Finished retreving %s -- placed in %s"
+msgid "Instance %d has no host"
msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Connecting to libvirt: %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
+#: ../nova/compute/api.py:99
+#, python-format
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""
-#: nova/virt/libvirt_conn.py:229
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
+msgstr ""
+
+#: ../nova/compute/api.py:160
#, python-format
-msgid "instance %s: deleting instance files %s"
+msgid "Going to run %s instances..."
msgstr ""
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/compute/api.py:187
#, python-format
-msgid "No disk at %s"
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+#: ../nova/compute/api.py:292
+#, python-format
+msgid "Going to try to terminate %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:294
+#: ../nova/compute/api.py:296
#, python-format
-msgid "instance %s: rebooted"
+msgid "Instance %d was not found during terminate"
msgstr ""
-#: nova/virt/libvirt_conn.py:297
+#: ../nova/compute/api.py:301
#, python-format
-msgid "_wait_for_reboot failed: %s"
+msgid "Instance %d is already being terminated"
msgstr ""
-#: nova/virt/libvirt_conn.py:340
+#: ../nova/compute/api.py:481
#, python-format
-msgid "instance %s: rescued"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgstr ""
+
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
msgstr ""
-#: nova/virt/libvirt_conn.py:343
+#: ../nova/rpc.py:98
#, python-format
-msgid "_wait_for_rescue failed: %s"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
msgstr ""
-#: nova/virt/libvirt_conn.py:370
+#: ../nova/rpc.py:103
#, python-format
-msgid "instance %s: is running"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgstr ""
+
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
msgstr ""
-#: nova/virt/libvirt_conn.py:381
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr ""
+
+#: ../nova/rpc.py:159
#, python-format
-msgid "instance %s: booted"
+msgid "Initing the Adapter Consumer for %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
+#: ../nova/rpc.py:178
#, python-format
-msgid "instance %s: failed to boot"
+msgid "received %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:395
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
#, python-format
-msgid "virsh said: %r"
+msgid "no method for message: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
+#: ../nova/rpc.py:192
+#, python-format
+msgid "No method for message: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:407
+#: ../nova/rpc.py:253
#, python-format
-msgid "data: %r, fpath: %r"
+msgid "Returning exception %s to caller"
msgstr ""
-#: nova/virt/libvirt_conn.py:415
+#: ../nova/rpc.py:294
#, python-format
-msgid "Contents of file %s: %r"
+msgid "unpacked context: %s"
+msgstr ""
+
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
msgstr ""
-#: nova/virt/libvirt_conn.py:449
+#: ../nova/rpc.py:316
#, python-format
-msgid "instance %s: Creating image"
+msgid "MSG_ID is %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:505
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
+msgstr ""
+
+#: ../nova/rpc.py:364
#, python-format
-msgid "instance %s: injecting key into image %s"
+msgid "response %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:508
+#: ../nova/rpc.py:373
#, python-format
-msgid "instance %s: injecting net into image %s"
+msgid "topic is %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:516
+#: ../nova/rpc.py:374
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
+msgid "message %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
+#: ../nova/volume/driver.py:78
#, python-format
-msgid "instance %s: starting toXML method"
+msgid "Recovering from a failed execute. Try number %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:589
+#: ../nova/volume/driver.py:87
#, python-format
-msgid "instance %s: finished toXML method"
+msgid "volume group %s doesn't exist"
+msgstr ""
+
+#: ../nova/volume/driver.py:220
+#, python-format
+msgid "FAKE AOE: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
+#, python-format
+msgid "FAKE ISCSI: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:359
+#, python-format
+msgid "rbd has no pool %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:414
+#, python-format
+msgid "Sheepdog is not working: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
+msgstr ""
+
+#: ../nova/wsgi.py:68
+#, python-format
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
+msgstr ""
+
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
+
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
msgstr ""
-#: nova/virt/xenapi_conn.py:113
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:123
+#, python-format
msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
msgstr ""
-#: nova/virt/xenapi_conn.py:263
+#: ../nova/virt/fake.py:239
#, python-format
-msgid "Task [%s] %s status: success %s"
+msgid "Instance %s Not Found"
msgstr ""
-#: nova/virt/xenapi_conn.py:271
+#: ../nova/network/manager.py:153
#, python-format
-msgid "Task [%s] %s status: %s %s"
+msgid "Dissassociated %s stale fixed ip(s)"
msgstr ""
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
+#: ../nova/network/manager.py:157
+msgid "setting network host"
+msgstr ""
+
+#: ../nova/network/manager.py:212
#, python-format
-msgid "Got exception: %s"
+msgid "Leasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:72
+#: ../nova/network/manager.py:216
#, python-format
-msgid "%s: _db_content => %s"
+msgid "IP %s leased that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
+#: ../nova/network/manager.py:220
+#, python-format
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:249
+#: ../nova/network/manager.py:228
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
+msgid "IP %s leased that was already deallocated"
msgstr ""
-#: nova/virt/xenapi/fake.py:283
+#: ../nova/network/manager.py:233
#, python-format
-msgid "Calling %s %s"
+msgid "Releasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:288
+#: ../nova/network/manager.py:237
#, python-format
-msgid "Calling getter %s"
+msgid "IP %s released that isn't associated"
+msgstr ""
+
+#: ../nova/network/manager.py:241
+#, python-format
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:340
+#: ../nova/network/manager.py:244
#, python-format
+msgid "IP %s released that was not leased"
+msgstr ""
+
+#: ../nova/network/manager.py:519
msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:40
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Found non-unique network for bridge %s"
+msgid "Introducing %s..."
msgstr ""
-#: nova/virt/xenapi/network_utils.py:43
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Found no network for bridge %s"
+msgid "Introduced %(label)s as %(sr_ref)s."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:127
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Created VM %s as %s."
+msgid "Unable to find SR from VBD %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:147
+#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
+msgid "Forgetting SR %s ... "
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:149
+#: ../nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:165
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "VBD not found in instance %s"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:175
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Unable to unplug VBD %s"
+msgid "Forgetting SR %s done."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:187
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Unable to destroy VBD %s"
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:202
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "Creating VIF for VM %s, network %s."
+msgid "Unable to introduce VDI on SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:205
+#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
+msgid "Unable to get record of VDI %s on"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:216
+#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
+msgid "Unable to introduce VDI for SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:229
+#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Created snapshot %s from VM %s."
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:243
+#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
+msgid "Mountpoint cannot be translated: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:261
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "Asking xapi to fetch %s as %s"
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:279
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "Looking up vdi %s for PV kernel"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:290
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:318
+#: ../nova/objectstore/handler.py:106
#, python-format
-msgid "VDI %s is still available"
+msgid "Unknown S3 value type %r"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:137
+msgid "Authenticated request"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:331
+#: ../nova/objectstore/handler.py:182
+msgid "List of buckets requested"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:209
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgid "List keys for bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:333
+#: ../nova/objectstore/handler.py:217
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgid "Unauthorized attempt to access bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:390
+#: ../nova/objectstore/handler.py:235
#, python-format
-msgid "VHD %s has parent %s"
+msgid "Creating bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:407
+#: ../nova/objectstore/handler.py:245
#, python-format
-msgid "Re-scanning SR %s"
+msgid "Deleting bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:431
+#: ../nova/objectstore/handler.py:249
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+msgid "Unauthorized attempt to delete bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:448
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "No VDIs found for VM %s"
+msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:452
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:62
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Attempted to create non-unique name %s"
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:99
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "Starting VM %s..."
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:101
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "Spawning VM %s created %s."
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:112
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "Instance %s: booted"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:137
+#: ../nova/objectstore/handler.py:396
#, python-format
-msgid "Instance not present %s"
+msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:166
+#: ../nova/objectstore/handler.py:404
#, python-format
-msgid "Starting snapshot for VM %s"
+msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:174
+#: ../nova/objectstore/handler.py:409
#, python-format
-msgid "Unable to Snapshot %s: %s"
+msgid "Starting image upload: %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:184
+#: ../nova/objectstore/handler.py:423
#, python-format
-msgid "Finished snapshot and upload for VM %s"
+msgid "Not authorized to update attributes of image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:252
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "suspend: instance not present %s"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""
-#: nova/virt/xenapi/vmops.py:262
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
-msgid "resume: instance not present %s"
+msgid "Updating user fields on image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:271
+#: ../nova/objectstore/handler.py:450
#, python-format
-msgid "Instance not found %s"
+msgid "Unauthorized attempt to delete image %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:57
+#: ../nova/objectstore/handler.py:455
#, python-format
-msgid "Introducing %s..."
+msgid "Deleted image: %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:74
+#: ../nova/auth/manager.py:259
#, python-format
-msgid "Introduced %s as %s."
+msgid "Looking up user: %r"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
+#: ../nova/auth/manager.py:263
+#, python-format
+msgid "Failed authorization for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:90
+#: ../nova/auth/manager.py:264
#, python-format
-msgid "Unable to find SR from VBD %s"
+msgid "No user found for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:96
+#: ../nova/auth/manager.py:270
#, python-format
-msgid "Forgetting SR %s ... "
+msgid "Using project name = user name (%s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:101
+#: ../nova/auth/manager.py:277
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:107
+#: ../nova/auth/manager.py:279
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
+msgid "No project called %s could be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:111
+#: ../nova/auth/manager.py:287
#, python-format
-msgid "Forgetting SR %s done."
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:113
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
+msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:123
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
-msgid "Unable to introduce VDI on SR %s"
+msgid "Invalid signature for user %s"
+msgstr ""
+
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:128
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
+msgstr ""
+
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "Unable to get record of VDI %s on"
+msgid "The %s role can not be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:146
+#: ../nova/auth/manager.py:416
#, python-format
-msgid "Unable to introduce VDI for SR %s"
+msgid "The %s role is global only"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:175
+#: ../nova/auth/manager.py:420
#, python-format
-msgid "Unable to obtain target information %s, %s"
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:197
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Mountpoint cannot be translated: %s"
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:51
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Attach_volume: %s, %s, %s"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:69
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:81
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Unable to use SR %s for instance %s"
+msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:93
+#: ../nova/auth/manager.py:533
#, python-format
-msgid "Unable to attach volume to instance %s"
+msgid "modifying project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:95
+#: ../nova/auth/manager.py:545
#, python-format
-msgid "Mountpoint %s attached to instance %s"
+msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:106
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Detach_volume: %s, %s"
+msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:113
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Unable to locate volume %s"
+msgid "Deleting project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:121
+#: ../nova/auth/manager.py:650
#, python-format
-msgid "Unable to detach volume %s"
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:128
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Mountpoint %s detached from instance %s"
+msgid "Deleting user %s"
msgstr ""
-#: nova/volume/api.py:44
+#: ../nova/auth/manager.py:669
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
+msgid "Access Key change for user %s"
msgstr ""
-#: nova/volume/api.py:46
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
+msgid "Secret Key change for user %s"
msgstr ""
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
+#: ../nova/auth/manager.py:673
+#, python-format
+msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
+#: ../nova/auth/manager.py:722
+#, python-format
+msgid "No vpn data for project %s"
msgstr ""
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
+#: ../nova/service.py:161
+#, python-format
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
+msgstr ""
+
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
+msgstr ""
+
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr ""
+
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
+msgstr ""
+
+#: ../nova/service.py:213
+msgid "model server went away"
msgstr ""
-#: nova/volume/driver.py:76
+#: ../nova/auth/ldapdriver.py:174
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
+msgid "LDAP user %s already exists"
msgstr ""
-#: nova/volume/driver.py:85
+#: ../nova/auth/ldapdriver.py:205
#, python-format
-msgid "volume group %s doesn't exist"
+msgid "LDAP object for %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:210
+#: ../nova/auth/ldapdriver.py:348
#, python-format
-msgid "FAKE AOE: %s"
+msgid "User %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:315
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "FAKE ISCSI: %s"
+msgid "Group can't be created because group %s already exists"
msgstr ""
-#: nova/volume/manager.py:85
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Re-exporting %s volumes"
+msgid "Group can't be created because user %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:93
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "volume %s: creating"
+msgid "User %s can't be searched in group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:102
+#: ../nova/auth/ldapdriver.py:507
#, python-format
-msgid "volume %s: creating lv of size %sG"
+msgid "User %s can't be added to the group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:106
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
#, python-format
-msgid "volume %s: creating export"
+msgid "The group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:113
+#: ../nova/auth/ldapdriver.py:513
#, python-format
-msgid "volume %s: created successfully"
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
msgstr ""
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
+#: ../nova/auth/ldapdriver.py:524
+#, python-format
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
+#: ../nova/auth/ldapdriver.py:528
+#, python-format
+msgid "User %s is not a member of the group"
msgstr ""
-#: nova/volume/manager.py:124
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "volume %s: removing export"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
msgstr ""
-#: nova/volume/manager.py:126
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "volume %s: deleting"
+msgid "User %s can't be removed from all because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:129
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "volume %s: deleted successfully"
+msgid "Group at dn %s doesn't exist"
+msgstr ""
+
+#: ../nova/virt/xenapi/network_utils.py:40
+#, python-format
+msgid "Found non-unique network for bridge %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/network_utils.py:43
+#, python-format
+msgid "Found no network for bridge %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:97
+#, python-format
+msgid "Creating new user: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:105
+#, python-format
+msgid "Deleting user: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:131
+#, python-format
+msgid "Adding sitewide role %(role)s to user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:137
+#, python-format
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:141
+#, python-format
+msgid "Removing sitewide role %(role)s from user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:159
+#, python-format
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:177
+#, python-format
+msgid "Create project %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:190
+#, python-format
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:200
+#, python-format
+msgid "Delete project: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:214
+#, python-format
+msgid "Adding user %(user)s to project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index 861efa37e..7c69e2f79 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,2131 +7,2862 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
"PO-Revision-Date: 2011-02-07 12:45+0000\n"
"Last-Translator: David Pravec <Unknown>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-08 05:28+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-03-19 06:18+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr ""
+
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr "Při spouštění příkazu došlo k nečekané chybě"
+
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
+
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
+
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr "Neošetřená výjimka"
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr ""
+
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
+msgstr ""
+
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr ""
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr ""
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:152
+#, python-format
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:238
+#, python-format
+msgid "Compute.api::lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:253
+#, python-format
+msgid "Compute.api::unlock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:267
+#, python-format
+msgid "Compute.api::get_lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:292
+#, python-format
+msgid "Compute.api::pause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:303
+#, python-format
+msgid "Compute.api::unpause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:314
+#, python-format
+msgid "compute.api::suspend %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:325
+#, python-format
+msgid "compute.api::resume %s"
+msgstr ""
+
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr ""
+
+#: ../nova/twistd.py:209
+#, python-format
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr ""
+
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr ""
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr ""
+
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr ""
+
+#: ../nova/twistd.py:266
+#, python-format
+msgid "Starting %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
+#, python-format
+msgid "Instance %s not found"
+msgstr ""
+
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
+#, python-format
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:91
+#, python-format
+msgid "Unable to attach volume to instance %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr ""
+
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
+#, python-format
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:112
+#, python-format
+msgid "Unable to locate volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:120
+#, python-format
+msgid "Unable to detach volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:127
+#, python-format
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr ""
+
+#: ../nova/crypto.py:46
msgid "Filename of root CA"
msgstr "Jméno souboru kořenové CA"
-#: nova/crypto.py:49
+#: ../nova/crypto.py:49
msgid "Filename of private key"
msgstr "Jméno souboru s privátním klíčem"
-#: nova/crypto.py:51
+#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
msgstr ""
-#: nova/crypto.py:53
+#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr "Adresář, do kterého ukládáme naše klíče"
-#: nova/crypto.py:55
+#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr "Adresář, do kterého ukládáme naši kořenovou CA"
-#: nova/crypto.py:57
+#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr "Použijeme CA pro každý projekt?"
-#: nova/crypto.py:61
+#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr ""
-#: nova/crypto.py:66
+#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:71
+#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:258
+#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr ""
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
-msgstr "Při spouštění příkazu došlo k nečekané chybě"
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr ""
+
+#: ../nova/compute/manager.py:78
+#, python-format
+msgid "check_instance_lock: decorating: |%s|"
+msgstr ""
-#: nova/exception.py:36
+#: ../nova/compute/manager.py:80
#, python-format
msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-msgstr ""
-"%s\n"
-"Příkaz: %s\n"
-"Vrácená hodnota: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-
-#: nova/exception.py:86
-msgid "Uncaught exception"
-msgstr "Neošetřená výjimka"
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
+msgstr ""
-#: nova/fakerabbit.py:48
+#: ../nova/compute/manager.py:84
#, python-format
-msgid "(%s) publish (key: %s) %s"
+msgid "check_instance_lock: locked: |%s|"
msgstr ""
-#: nova/fakerabbit.py:53
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "Publishing to route %s"
+msgid "check_instance_lock: admin: |%s|"
msgstr ""
-#: nova/fakerabbit.py:83
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Declaring queue %s"
+msgid "check_instance_lock: executing: |%s|"
msgstr ""
-#: nova/fakerabbit.py:89
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Declaring exchange %s"
+msgid "check_instance_lock: not executing |%s|"
+msgstr ""
+
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
msgstr ""
-#: nova/fakerabbit.py:95
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "Binding %s to %s with key %s"
+msgid "instance %s: starting..."
msgstr ""
-#: nova/fakerabbit.py:120
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "Getting from %s: %s"
+msgid "instance %s: Failed to spawn"
msgstr ""
-#: nova/rpc.py:92
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
-msgstr "AMQP server na %s:%d není dosažitelný. Zkusím znovu za %d sekund."
+msgid "Terminating instance %s"
+msgstr ""
-#: nova/rpc.py:99
+#: ../nova/compute/manager.py:255
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgid "Deallocating address %s"
msgstr ""
-"Nepodařilo se připojit k AMQP serveru ani po %d pokusech. Tento proces bude "
-"ukončen."
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
-msgstr "Znovu připojeno k AMQP frontě"
+#: ../nova/compute/manager.py:268
+#, python-format
+msgid "trying to destroy already destroyed instance: %s"
+msgstr ""
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
-msgstr "Selhalo získání zprávy z AMQP fronty"
+#: ../nova/compute/manager.py:282
+#, python-format
+msgid "Rebooting instance %s"
+msgstr ""
-#: nova/rpc.py:155
+#: ../nova/compute/manager.py:287
#, python-format
-msgid "Initing the Adapter Consumer for %s"
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-#: nova/rpc.py:170
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "received %s"
-msgstr "získáno: %s"
+msgid "instance %s: snapshotting"
+msgstr ""
-#: nova/rpc.py:183
+#: ../nova/compute/manager.py:316
#, python-format
-msgid "no method for message: %s"
-msgstr "Není metoda pro zpracování zprávy: %s"
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
-#: nova/rpc.py:184
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "No method for message: %s"
-msgstr "Není metoda pro zpracování zprávy: %s"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
+msgstr ""
-#: nova/rpc.py:245
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "Returning exception %s to caller"
-msgstr "Volajícímu je vrácena výjimka: %s"
+msgid "instance %s: setting admin password"
+msgstr ""
-#: nova/rpc.py:286
+#: ../nova/compute/manager.py:353
#, python-format
-msgid "unpacked context: %s"
-msgstr "rozbalený obsah: %s"
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
+msgstr ""
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
-msgstr "Volání asynchronní funkce..."
+#: ../nova/compute/manager.py:362
+#, python-format
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
+msgstr ""
-#: nova/rpc.py:308
+#: ../nova/compute/manager.py:372
#, python-format
-msgid "MSG_ID is %s"
-msgstr "MSG_ID je %s"
+msgid "instance %s: rescuing"
+msgstr ""
-#: nova/rpc.py:356
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "response %s"
-msgstr "odpověď %s"
+msgid "instance %s: unrescuing"
+msgstr ""
-#: nova/rpc.py:365
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "topic is %s"
+msgid "instance %s: pausing"
msgstr ""
-#: nova/rpc.py:366
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "message %s"
-msgstr "zpráva %s"
+msgid "instance %s: unpausing"
+msgstr ""
-#: nova/service.py:157
+#: ../nova/compute/manager.py:440
#, python-format
-msgid "Starting %s node"
+msgid "instance %s: retrieving diagnostics"
msgstr ""
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
+#: ../nova/compute/manager.py:453
+#, python-format
+msgid "instance %s: suspending"
msgstr ""
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
+#: ../nova/compute/manager.py:472
+#, python-format
+msgid "instance %s: resuming"
msgstr ""
-#: nova/service.py:202
-msgid "Recovered model server connection!"
+#: ../nova/compute/manager.py:491
+#, python-format
+msgid "instance %s: locking"
msgstr ""
-#: nova/service.py:208
-msgid "model server went away"
+#: ../nova/compute/manager.py:503
+#, python-format
+msgid "instance %s: unlocking"
msgstr ""
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/compute/manager.py:513
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
+msgid "instance %s: getting locked state"
msgstr ""
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/compute/manager.py:526
#, python-format
-msgid "Serving %s"
+msgid "instance %s: reset network"
msgstr ""
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
+#, python-format
+msgid "Get console output for instance %s"
msgstr ""
-#: nova/twistd.py:211
+#: ../nova/compute/manager.py:543
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
+msgid "instance %s: getting ajax console"
msgstr ""
-#: nova/twistd.py:268
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "Starting %s"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
msgstr ""
-#: nova/utils.py:53
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "Inner Exception: %s"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
msgstr ""
-#: nova/utils.py:54
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Class %s cannot be found"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
msgstr ""
-#: nova/utils.py:113
+#: ../nova/compute/manager.py:588
#, python-format
-msgid "Fetching %s"
+msgid "Detaching volume from unknown instance %s"
msgstr ""
-#: nova/utils.py:125
+#: ../nova/scheduler/simple.py:53
#, python-format
-msgid "Running cmd (subprocess): %s"
+msgid "Host %s is not alive"
msgstr ""
-#: nova/utils.py:138
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:87
#, python-format
-msgid "Result was %s"
+msgid "Host %s not available"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
msgstr ""
-#: nova/utils.py:171
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "debug in callback: %s"
+msgid "Re-exporting %s volumes"
msgstr ""
-#: nova/utils.py:176
+#: ../nova/volume/manager.py:90
#, python-format
-msgid "Running %s"
+msgid "volume %s: skipping export"
msgstr ""
-#: nova/utils.py:207
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
+msgid "volume %s: creating"
msgstr ""
-#: nova/utils.py:289
+#: ../nova/volume/manager.py:108
#, python-format
-msgid "Invalid backend: %s"
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
msgstr ""
-#: nova/utils.py:300
+#: ../nova/volume/manager.py:112
#, python-format
-msgid "backend %s"
+msgid "volume %s: creating export"
msgstr ""
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
+#: ../nova/volume/manager.py:123
+#, python-format
+msgid "volume %s: created successfully"
msgstr ""
-#: nova/api/ec2/__init__.py:142
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
+msgstr ""
+
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
+msgstr ""
+
+#: ../nova/volume/manager.py:136
#, python-format
-msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
+msgid "volume %s: removing export"
msgstr ""
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#: ../nova/volume/manager.py:138
#, python-format
-msgid "Authentication Failure: %s"
+msgid "volume %s: deleting"
msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/volume/manager.py:147
#, python-format
-msgid "Authenticated Request For %s:%s)"
+msgid "volume %s: deleted successfully"
msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/virt/xenapi/fake.py:74
#, python-format
-msgid "action: %s"
+msgid "%(text)s: _db_content => %(content)s"
msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:306
#, python-format
-msgid "arg: %s\t\tval: %s"
+msgid "xenapi.fake does not have an implementation for %s"
msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/virt/xenapi/fake.py:341
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
+msgid "Calling %(localname)s %(impl)s"
msgstr ""
-#: nova/api/ec2/__init__.py:339
+#: ../nova/virt/xenapi/fake.py:346
#, python-format
-msgid "NotFound raised: %s"
+msgid "Calling getter %s"
msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/virt/xenapi/fake.py:406
#, python-format
-msgid "ApiError raised: %s"
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
+msgstr ""
+
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
msgstr ""
-#: nova/api/ec2/__init__.py:349
+#: ../nova/tests/test_cloud.py:268
#, python-format
-msgid "Unexpected error raised: %s"
+msgid "Need to watch instance %s until it's running..."
msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
msgstr ""
-#: nova/api/ec2/admin.py:84
+#: ../nova/network/linux_net.py:187
#, python-format
-msgid "Creating new user: %s"
+msgid "Starting VLAN inteface %s"
msgstr ""
-#: nova/api/ec2/admin.py:92
+#: ../nova/network/linux_net.py:208
#, python-format
-msgid "Deleting user: %s"
+msgid "Starting Bridge interface for %s"
msgstr ""
-#: nova/api/ec2/admin.py:114
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
#, python-format
-msgid "Adding role %s to user %s for project %s"
+msgid "Hupping dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/network/linux_net.py:316
#, python-format
-msgid "Adding sitewide role %s to user %s"
+msgid "Pid %d is stale, relaunching dnsmasq"
msgstr ""
-#: nova/api/ec2/admin.py:122
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
#, python-format
-msgid "Removing role %s from user %s for project %s"
+msgid "killing radvd threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/network/linux_net.py:360
#, python-format
-msgid "Removing sitewide role %s from user %s"
+msgid "Pid %d is stale, relaunching radvd"
msgstr ""
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
+#, python-format
+msgid "Killing dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/utils.py:58
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
+msgid "Inner Exception: %s"
msgstr ""
-#: nova/api/ec2/admin.py:159
+#: ../nova/utils.py:59
#, python-format
-msgid "Create project %s managed by %s"
+msgid "Class %s cannot be found"
msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/utils.py:118
#, python-format
-msgid "Delete project: %s"
+msgid "Fetching %s"
msgstr ""
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/utils.py:130
#, python-format
-msgid "Adding user %s to project %s"
+msgid "Running cmd (subprocess): %s"
msgstr ""
-#: nova/api/ec2/admin.py:188
+#: ../nova/utils.py:143 ../nova/utils.py:183
#, python-format
-msgid "Removing user %s from project %s"
+msgid "Result was %s"
msgstr ""
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/utils.py:159
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
+msgid "Running cmd (SSH): %s"
msgstr ""
-#: nova/api/ec2/cloud.py:117
+#: ../nova/utils.py:217
#, python-format
-msgid "Generating root CA: %s"
+msgid "debug in callback: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:277
+#: ../nova/utils.py:222
#, python-format
-msgid "Create key pair %s"
+msgid "Running %s"
msgstr ""
-#: nova/api/ec2/cloud.py:285
+#: ../nova/utils.py:262
#, python-format
-msgid "Delete key pair %s"
+msgid "Link Local address is not found.:%s"
msgstr ""
-#: nova/api/ec2/cloud.py:357
+#: ../nova/utils.py:265
#, python-format
-msgid "%s is not a valid ipProtocol"
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
msgstr ""
-#: nova/api/ec2/cloud.py:361
-msgid "Invalid port range"
+#: ../nova/utils.py:363
+#, python-format
+msgid "Invalid backend: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:392
+#: ../nova/utils.py:374
#, python-format
-msgid "Revoke security group ingress %s"
+msgid "backend %s"
msgstr ""
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
-msgid "No rule for the specified parameters."
+#: ../nova/fakerabbit.py:49
+#, python-format
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:421
+#: ../nova/fakerabbit.py:54
#, python-format
-msgid "Authorize security group ingress %s"
+msgid "Publishing to route %s"
msgstr ""
-#: nova/api/ec2/cloud.py:432
+#: ../nova/fakerabbit.py:84
#, python-format
-msgid "This rule already exists in group %s"
+msgid "Declaring queue %s"
msgstr ""
-#: nova/api/ec2/cloud.py:460
+#: ../nova/fakerabbit.py:90
#, python-format
-msgid "Create Security Group %s"
+msgid "Declaring exchange %s"
msgstr ""
-#: nova/api/ec2/cloud.py:463
+#: ../nova/fakerabbit.py:96
#, python-format
-msgid "group %s already exists"
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
msgstr ""
-#: nova/api/ec2/cloud.py:475
+#: ../nova/fakerabbit.py:121
#, python-format
-msgid "Delete security group %s"
+msgid "Getting from %(queue)s: %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
-msgid "Get console output for instance %s"
+msgid "Created VM %s..."
msgstr ""
-#: nova/api/ec2/cloud.py:543
+#: ../nova/virt/xenapi/vm_utils.py:138
#, python-format
-msgid "Create volume of %s GB"
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:567
+#: ../nova/virt/xenapi/vm_utils.py:168
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
msgstr ""
-#: nova/api/ec2/cloud.py:579
+#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
-msgid "Detach volume %s"
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:686
-msgid "Allocate address"
+#: ../nova/virt/xenapi/vm_utils.py:187
+#, python-format
+msgid "VBD not found in instance %s"
msgstr ""
-#: nova/api/ec2/cloud.py:691
+#: ../nova/virt/xenapi/vm_utils.py:197
#, python-format
-msgid "Release address %s"
+msgid "Unable to unplug VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:696
+#: ../nova/virt/xenapi/vm_utils.py:209
#, python-format
-msgid "Associate address %s to instance %s"
+msgid "Unable to destroy VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/virt/xenapi/vm_utils.py:224
#, python-format
-msgid "Disassociate address %s"
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:730
-msgid "Going to start terminating instances"
+#: ../nova/virt/xenapi/vm_utils.py:227
+#, python-format
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:738
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
-msgid "Reboot instance %r"
+msgid ""
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:775
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "De-registering image %s"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
msgstr ""
-#: nova/api/ec2/cloud.py:783
+#: ../nova/virt/xenapi/vm_utils.py:272
#, python-format
-msgid "Registered image %s with id %s"
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
-msgid "attribute not supported: %s"
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
msgstr ""
-#: nova/api/ec2/cloud.py:794
+#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
-msgid "invalid id: %s"
+msgid "Size for image %(image)s:%(virtual_size)d"
msgstr ""
-#: nova/api/ec2/cloud.py:807
-msgid "user or group not specified"
+#: ../nova/virt/xenapi/vm_utils.py:332
+#, python-format
+msgid "Glance image %s"
msgstr ""
-#: nova/api/ec2/cloud.py:809
-msgid "only group \"all\" is supported"
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
+#, python-format
+msgid "Copying VDI %s to /boot/guest on dom0"
msgstr ""
-#: nova/api/ec2/cloud.py:811
-msgid "operation_type must be add or remove"
+#: ../nova/virt/xenapi/vm_utils.py:352
+#, python-format
+msgid "Kernel/Ramdisk VDI %s destroyed"
msgstr ""
-#: nova/api/ec2/cloud.py:812
+#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
-msgid "Updating image %s publicity"
+msgid "Asking xapi to fetch %(url)s as %(access)s"
msgstr ""
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
#, python-format
-msgid "Failed to get metadata for ip: %s"
+msgid "Looking up vdi %s for PV kernel"
msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid "Caught error: %s"
+msgid "PV Kernel in VDI:%s"
msgstr ""
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
+#: ../nova/virt/xenapi/vm_utils.py:405
+#, python-format
+msgid "Running pygrub against %s"
msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
-msgid "Compute.api::lock %s"
+msgid "Found Xen kernel %s"
msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
-msgid "Compute.api::unlock %s"
+msgid "duplicate name found: %s"
msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "Compute.api::get_lock %s"
+msgid "VDI %s is still available"
msgstr ""
-#: nova/api/openstack/servers.py:224
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "Compute.api::pause %s"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "Compute.api::unpause %s"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../nova/virt/xenapi/vm_utils.py:525
#, python-format
-msgid "compute.api::suspend %s"
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "compute.api::resume %s"
+msgid "Re-scanning SR %s"
msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "User %s already exists"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../nova/virt/xenapi/vm_utils.py:590
#, python-format
-msgid "Project can't be created because project %s already exists"
+msgid "No VDIs found for VM %s"
msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vm_utils.py:594
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
msgstr ""
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
-msgid "User \"%s\" not found"
+msgid "Creating VBD for VDI %s ... "
msgstr ""
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
-msgid "Project \"%s\" not found"
+msgid "Creating VBD for VDI %s done."
msgstr ""
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
+#, python-format
+msgid "Plugging VBD %s ... "
msgstr ""
-#: nova/auth/ldapdriver.py:181
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
#, python-format
-msgid "LDAP object for %s doesn't exist"
+msgid "Plugging VBD %s done."
msgstr ""
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vm_utils.py:661
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vm_utils.py:664
#, python-format
-msgid "User %s is already a member of the group %s"
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
msgstr ""
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
-msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+msgid "Destroying VBD for VDI %s ... "
msgstr ""
-#: nova/auth/ldapdriver.py:528
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
-msgid "Group at dn %s doesn't exist"
+msgid "Destroying VBD for VDI %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
msgstr ""
-#: nova/auth/manager.py:259
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
-msgid "Looking up user: %r"
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
msgstr ""
-#: nova/auth/manager.py:263
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
-msgid "Failed authorization for access key %s"
+msgid "Ignoring XenAPI.Failure %s"
msgstr ""
-#: nova/auth/manager.py:264
+#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
-msgid "No user found for access key %s"
+msgid ""
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""
-#: nova/auth/manager.py:270
+#: ../nova/virt/xenapi/vm_utils.py:747
#, python-format
-msgid "Using project name = user name (%s)"
+msgid "Writing partition table %s done."
msgstr ""
-#: nova/auth/manager.py:275
+#: ../nova/tests/test_rpc.py:89
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
+msgid "Nested received %(queue)s, %(value)s"
msgstr ""
-#: nova/auth/manager.py:277
+#: ../nova/tests/test_rpc.py:95
#, python-format
-msgid "No project called %s could be found"
+msgid "Nested return %s"
msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "Received %s"
msgstr ""
-#: nova/auth/manager.py:283
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:133
#, python-format
-msgid "User %s is not a member of project %s"
+msgid "No service for id %s"
msgstr ""
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/db/sqlalchemy/api.py:251
#, python-format
-msgid "Invalid signature for user %s"
+msgid "No service for %(host)s, %(binary)s"
msgstr ""
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
msgstr ""
-#: nova/auth/manager.py:374
-msgid "Must specify project"
+#: ../nova/db/sqlalchemy/api.py:608
+#, python-format
+msgid "No floating ip for address %s"
msgstr ""
-#: nova/auth/manager.py:408
+#: ../nova/db/sqlalchemy/api.py:629
#, python-format
-msgid "The %s role can not be found"
+msgid "No address for instance %s"
msgstr ""
-#: nova/auth/manager.py:410
+#: ../nova/db/sqlalchemy/api.py:961
#, python-format
-msgid "The %s role is global only"
+msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""
-#: nova/auth/manager.py:412
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
#, python-format
-msgid "Adding role %s to user %s in project %s"
+msgid "No network for id %s"
msgstr ""
-#: nova/auth/manager.py:438
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
-msgid "Removing role %s from user %s on project %s"
+msgid "No network for bridge %s"
msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
#, python-format
-msgid "Created project %s with manager %s"
+msgid "No network for instance %s"
msgstr ""
-#: nova/auth/manager.py:523
+#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
-msgid "modifying project %s"
+msgid "Token %s does not exist"
msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
-msgid "Remove user %s from project %s"
+msgid "No quota for project_id %s"
msgstr ""
-#: nova/auth/manager.py:581
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
#, python-format
-msgid "Deleting project %s"
+msgid "Volume %s not found"
msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
-msgid "Created user %s (admin: %r)"
+msgid "No export device found for volume %s"
msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
-msgid "Deleting user %s"
+msgid "No target id found for volume %s"
msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/db/sqlalchemy/api.py:1572
#, python-format
-msgid "Access Key change for user %s"
+msgid "No security group with id %s"
msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/db/sqlalchemy/api.py:1589
#, python-format
-msgid "Secret Key change for user %s"
+msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""
-#: nova/auth/manager.py:659
+#: ../nova/db/sqlalchemy/api.py:1682
#, python-format
-msgid "Admin status set to %r for user %s"
+msgid "No secuity group rule with id %s"
msgstr ""
-#: nova/auth/manager.py:708
+#: ../nova/db/sqlalchemy/api.py:1756
#, python-format
-msgid "No vpn data for project %s"
+msgid "No user for id %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/db/sqlalchemy/api.py:1772
+#, python-format
+msgid "No user for access key %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:1834
+#, python-format
+msgid "No project with id %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:1979
+#, python-format
+msgid "No console pool with id %(pool_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/db/sqlalchemy/api.py:1996
#, python-format
-msgid "Launching VPN for %s"
+msgid ""
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
msgstr ""
-#: nova/compute/api.py:67
+#: ../nova/db/sqlalchemy/api.py:2035
#, python-format
-msgid "Instance %d was not found in get_network_topic"
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""
-#: nova/compute/api.py:73
+#: ../nova/db/sqlalchemy/api.py:2057
#, python-format
-msgid "Instance %d has no host"
+msgid "on instance %s"
msgstr ""
-#: nova/compute/api.py:92
+#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
+msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""
-#: nova/compute/api.py:94
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
-msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+msgid "No zone with id %(zone_id)s"
msgstr ""
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
+#: ../nova/virt/libvirt_conn.py:160
+#, python-format
+msgid "Checking state of %s"
msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/virt/libvirt_conn.py:165
#, python-format
-msgid "Going to run %s instances..."
+msgid "Current state of %(name)s was %(state)s."
msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/virt/libvirt_conn.py:183
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
+msgid "Connecting to libvirt: %s"
msgstr ""
-#: nova/compute/api.py:279
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:258
#, python-format
-msgid "Going to try and terminate %s"
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""
-#: nova/compute/api.py:283
+#: ../nova/virt/libvirt_conn.py:283
#, python-format
-msgid "Instance %d was not found during terminate"
+msgid "Invalid device path %s"
msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/virt/libvirt_conn.py:313
#, python-format
-msgid "Instance %d is already being terminated"
+msgid "No disk at %s"
msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:336
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "instance %s: rebooted"
msgstr ""
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
+#: ../nova/virt/libvirt_conn.py:339
+#, python-format
+msgid "_wait_for_reboot failed: %s"
msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/virt/libvirt_conn.py:382
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "instance %s: rescued"
msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/virt/libvirt_conn.py:385
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "_wait_for_rescue failed: %s"
msgstr ""
-#: nova/compute/disk.py:128
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "Could not attach image to loopback: %s"
+msgid "instance %s: is running"
msgstr ""
-#: nova/compute/disk.py:136
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "Failed to load partition: %s"
+msgid "instance %s: booted"
msgstr ""
-#: nova/compute/disk.py:158
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid "Failed to mount filesystem: %s"
+msgid "instance %s: failed to boot"
msgstr ""
-#: nova/compute/instance_types.py:41
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "Unknown instance type: %s"
+msgid "virsh said: %r"
msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:448
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
+msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""
-#: nova/compute/manager.py:71
+#: ../nova/virt/libvirt_conn.py:456
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "Contents of file %(fpath)s: %(contents)r"
msgstr ""
-#: nova/compute/manager.py:75
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:563
#, python-format
-msgid "check_instance_lock: locked: |%s|"
+msgid "instance %s: Creating image"
msgstr ""
-#: nova/compute/manager.py:77
+#: ../nova/virt/libvirt_conn.py:646
#, python-format
-msgid "check_instance_lock: admin: |%s|"
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:82
+#: ../nova/virt/libvirt_conn.py:649
#, python-format
-msgid "check_instance_lock: executing: |%s|"
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:86
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
#, python-format
-msgid "check_instance_lock: not executing |%s|"
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
msgstr ""
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
+#, python-format
+msgid "instance %s: starting toXML method"
msgstr ""
-#: nova/compute/manager.py:158
+#: ../nova/virt/libvirt_conn.py:732
#, python-format
-msgid "instance %s: starting..."
+msgid "instance %s: finished toXML method"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
msgstr ""
-#: nova/compute/manager.py:197
+#: ../nova/virt/libvirt_conn.py:1225
#, python-format
-msgid "instance %s: Failed to spawn"
+msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
-msgid "Terminating instance %s"
+msgid "Failed to get metadata for ip: %s"
+msgstr ""
+
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
msgstr ""
-#: nova/compute/manager.py:217
+#: ../nova/network/api.py:39
#, python-format
-msgid "Disassociating address %s"
+msgid "Quota exceeeded for %s, tried to allocate address"
+msgstr ""
+
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
msgstr ""
-#: nova/compute/manager.py:230
+#: ../nova/tests/test_volume.py:162
#, python-format
-msgid "Deallocating address %s"
+msgid "Target %s allocated"
msgstr ""
-#: nova/compute/manager.py:243
+#: ../nova/virt/images.py:70
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
+msgid "Finished retreving %(url)s -- placed in %(path)s"
msgstr ""
-#: nova/compute/manager.py:257
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
+msgstr ""
+
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
#, python-format
-msgid "Rebooting instance %s"
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
+
+#: ../nova/api/direct.py:149
+msgid "not available"
msgstr ""
-#: nova/compute/manager.py:260
+#: ../nova/api/ec2/cloud.py:62
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+msgid "The key_pair %s already exists"
msgstr ""
-#: nova/compute/manager.py:286
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
-msgid "instance %s: snapshotting"
+msgid "Generating root CA: %s"
msgstr ""
-#: nova/compute/manager.py:289
+#: ../nova/api/ec2/cloud.py:303
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Create key pair %s"
msgstr ""
-#: nova/compute/manager.py:301
+#: ../nova/api/ec2/cloud.py:311
#, python-format
-msgid "instance %s: rescuing"
+msgid "Delete key pair %s"
msgstr ""
-#: nova/compute/manager.py:316
+#: ../nova/api/ec2/cloud.py:386
#, python-format
-msgid "instance %s: unrescuing"
+msgid "%s is not a valid ipProtocol"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:390
+msgid "Invalid port range"
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/api/ec2/cloud.py:421
#, python-format
-msgid "instance %s: pausing"
+msgid "Revoke security group ingress %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
msgstr ""
-#: nova/compute/manager.py:352
+#: ../nova/api/ec2/cloud.py:443
+msgid "No rule for the specified parameters."
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:450
#, python-format
-msgid "instance %s: unpausing"
+msgid "Authorize security group ingress %s"
msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/api/ec2/cloud.py:464
#, python-format
-msgid "instance %s: retrieving diagnostics"
+msgid "This rule already exists in group %s"
msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/api/ec2/cloud.py:492
#, python-format
-msgid "instance %s: suspending"
+msgid "Create Security Group %s"
msgstr ""
-#: nova/compute/manager.py:401
+#: ../nova/api/ec2/cloud.py:495
#, python-format
-msgid "instance %s: resuming"
+msgid "group %s already exists"
msgstr ""
-#: nova/compute/manager.py:420
+#: ../nova/api/ec2/cloud.py:507
#, python-format
-msgid "instance %s: locking"
+msgid "Delete security group %s"
msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/api/ec2/cloud.py:584
#, python-format
-msgid "instance %s: unlocking"
+msgid "Create volume of %s GB"
msgstr ""
-#: nova/compute/manager.py:442
+#: ../nova/api/ec2/cloud.py:612
#, python-format
-msgid "instance %s: getting locked state"
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""
-#: nova/compute/manager.py:462
+#: ../nova/api/ec2/cloud.py:629
#, python-format
-msgid "instance %s: attaching volume %s to %s"
+msgid "Detach volume %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:761
+msgid "Allocate address"
msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/api/ec2/cloud.py:766
#, python-format
-msgid "instance %s: attach failed %s, removing"
+msgid "Release address %s"
msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/api/ec2/cloud.py:780
#, python-format
-msgid "Detaching volume from unknown instance %s"
+msgid "Disassociate address %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:807
+msgid "Going to start terminating instances"
msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/api/ec2/cloud.py:815
#, python-format
-msgid "updating %s..."
+msgid "Reboot instance %r"
msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
+#: ../nova/api/ec2/cloud.py:867
+#, python-format
+msgid "De-registering image %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:875
+#, python-format
+msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""
-#: nova/compute/monitor.py:355
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
+msgid "attribute not supported: %s"
msgstr ""
-#: nova/compute/monitor.py:377
+#: ../nova/api/ec2/cloud.py:890
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
+msgid "invalid id: %s"
msgstr ""
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
+#: ../nova/api/ec2/cloud.py:903
+msgid "user or group not specified"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:905
+msgid "only group \"all\" is supported"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:907
+msgid "operation_type must be add or remove"
msgstr ""
-#: nova/compute/monitor.py:427
+#: ../nova/api/ec2/cloud.py:908
#, python-format
-msgid "Found instance: %s"
+msgid "Updating image %s publicity"
msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
+#: ../bin/nova-api.py:52
+#, python-format
+msgid "Using paste.deploy config at: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:132
+#: ../bin/nova-api.py:57
#, python-format
-msgid "No service for id %s"
+msgid "No paste configuration for app: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../bin/nova-api.py:59
#, python-format
-msgid "No service for %s, %s"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../bin/nova-api.py:64
#, python-format
-msgid "No floating ip for address %s"
+msgid "Running %s API"
msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../bin/nova-api.py:69
#, python-format
-msgid "No instance for id %s"
+msgid "No known API applications configured in %s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../bin/nova-api.py:83
#, python-format
-msgid "Instance %s not found"
+msgid "Starting nova-api node (version %s)"
msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../bin/nova-api.py:89
#, python-format
-msgid "no keypair for user %s, name %s"
+msgid "No paste configuration found for: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "No network for id %s"
+msgid "Argument %(key)s value %(value)s is too short."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1036
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "No network for bridge %s"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "No network for instance %s"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "Token %s does not exist"
+msgid "Argument %s is required."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1205
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "No quota for project_id %s"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1356
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "No volume for id %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1401
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "Volume %s not found"
+msgid "Attempted to create non-unique name %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1413
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "No export device found for volume %s"
+msgid "instance %(name)s: not enough free memory"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1426
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "No target id found for volume %s"
+msgid "Starting VM %s..."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "No security group with id %s"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "No security group named %s for project: %s"
+msgid "Invalid value for onset_files: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "No secuity group rule with id %s"
+msgid "Injecting file path: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "No user for id %s"
+msgid "Instance %s: booted"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1666
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "No user for access key %s"
+msgid "Instance not present %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "No project with id %s"
+msgid "Starting snapshot for VM %s"
msgstr ""
-#: nova/image/glance.py:78
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""
-#: nova/image/glance.py:97
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid "Finished snapshot and upload for VM %s"
msgstr ""
-#: nova/image/s3.py:82
+#: ../nova/virt/xenapi/vmops.py:356
#, python-format
-msgid "Image %s could not be found"
+msgid "VM %(vm)s already halted, skipping shutdown..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
msgstr ""
-#: nova/network/api.py:39
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../nova/virt/xenapi/vmops.py:564
+#, python-format
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:176
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "Starting VLAN inteface %s"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:186
+#: ../nova/virt/xenapi/vmops.py:760
#, python-format
-msgid "Starting Bridge interface for %s"
+msgid "OpenSSL error: %s"
msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "Hupping dnsmasq threw %s"
+msgid "Running instances: %s"
msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
+msgid "After terminating instances: %s"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
msgstr ""
-#: nova/network/linux_net.py:334
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "Killing dnsmasq threw %s"
+msgid "Launching VPN for %s"
msgstr ""
-#: nova/network/manager.py:135
-msgid "setting network host"
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
msgstr ""
-#: nova/network/manager.py:190
+#: ../nova/image/s3.py:99
#, python-format
-msgid "Leasing IP %s"
+msgid "Image %s could not be found"
msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
msgstr ""
-#: nova/network/manager.py:197
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
+msgid "Authentication Failure: %s"
msgstr ""
-#: nova/network/manager.py:205
+#: ../nova/api/ec2/__init__.py:182
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "IP %s released that isn't associated"
+msgid "action: %s"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/api/ec2/__init__.py:209
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "IP %s released that was not leased"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid "InstanceNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/api/ec2/__init__.py:320
#, python-format
-msgid "Unknown S3 value type %r"
+msgid "VolumeNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:137
-msgid "Authenticated request"
+#: ../nova/api/ec2/__init__.py:326
+#, python-format
+msgid "NotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:182
-msgid "List of buckets requested"
+#: ../nova/api/ec2/__init__.py:329
+#, python-format
+msgid "ApiError raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:209
+#: ../nova/api/ec2/__init__.py:338
#, python-format
-msgid "List keys for bucket %s"
+msgid "Unexpected error raised: %s"
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
msgstr ""
-#: nova/objectstore/handler.py:217
+#: ../nova/auth/dbdriver.py:84
#, python-format
-msgid "Unauthorized attempt to access bucket %s"
+msgid "User %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:235
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
#, python-format
-msgid "Creating bucket %s"
+msgid "Project can't be created because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:245
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
-msgid "Deleting bucket %s"
+msgid "Project can't be created because user %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:249
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
-msgid "Unauthorized attempt to delete bucket %s"
+msgid "Project can't be created because project %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:271
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Getting object: %s / %s"
+msgid "Project can't be modified because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/auth/dbdriver.py:245
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "User \"%s\" not found"
msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/auth/dbdriver.py:248
#, python-format
-msgid "Putting object: %s / %s"
+msgid "Project \"%s\" not found"
+msgstr ""
+
+#: ../nova/virt/xenapi_conn.py:129
+msgid ""
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/virt/xenapi_conn.py:311
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
msgstr ""
-#: nova/objectstore/handler.py:314
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Deleting object: %s / %s"
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Not authorized to upload image: invalid directory %s"
+msgid "Got exception: %s"
msgstr ""
-#: nova/objectstore/handler.py:401
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Not authorized to upload image: unauthorized bucket %s"
+msgid "updating %s..."
msgstr ""
-#: nova/objectstore/handler.py:406
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
+msgstr ""
+
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Starting image upload: %s"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:420
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Not authorized to update attributes of image %s"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
+msgstr ""
+
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
msgstr ""
-#: nova/objectstore/handler.py:428
+#: ../nova/compute/monitor.py:429
#, python-format
-msgid "Toggling publicity flag of image %s %r"
+msgid "Found instance: %s"
msgstr ""
-#: nova/objectstore/handler.py:433
+#: ../nova/volume/san.py:67
#, python-format
-msgid "Updating user fields on image %s"
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-#: nova/objectstore/handler.py:447
+#: ../nova/api/ec2/apirequest.py:100
#, python-format
-msgid "Unauthorized attempt to delete image %s"
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""
-#: nova/objectstore/handler.py:452
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Deleted image: %s"
+msgid "Caught error: %s"
msgstr ""
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
msgstr ""
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
msgstr ""
-#: nova/scheduler/manager.py:69
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "Re-wrote %s"
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
msgstr ""
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
+#: ../nova/console/xvp.py:141
+#, python-format
+msgid "Error starting xvp: %s"
msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
msgstr ""
-#: nova/tests/test_cloud.py:210
-#, python-format
-msgid "Need to watch instance %s until it's running..."
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
msgstr ""
-#: nova/tests/test_compute.py:104
-#, python-format
-msgid "Running instances: %s"
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
msgstr ""
-#: nova/tests/test_compute.py:110
-#, python-format
-msgid "After terminating instances: %s"
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
+msgstr ""
+
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
+msgstr ""
+
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../bin/nova-manage.py:448
+msgid "IP address"
+msgstr ""
+
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
+msgstr ""
+
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
-msgid "Nested received %s, %s"
+msgid "Failed to load partition: %s"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../nova/virt/disk.py:91
#, python-format
-msgid "Nested return %s"
+msgid "Failed to mount filesystem: %s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Received %s"
+msgid "nbd device %s did not show up"
msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "Target %s allocated"
+msgid "Could not attach image to loopback: %s"
msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
msgstr ""
-#: nova/virt/fake.py:210
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "Instance %s Not Found"
+msgid "%(filename)s, line %(line_info)d"
msgstr ""
-#: nova/virt/hyperv.py:118
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr ""
-#: nova/virt/hyperv.py:152
+#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
-#, python-format
-msgid "Created VM %s..."
-msgstr ""
-
-#: nova/virt/hyperv.py:188
+#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:198
+#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""
-#: nova/virt/hyperv.py:227
+#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:272
+#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "Created switch port %s on switch %s"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "Del: disk %s vm %s"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "duplicate name found: %s"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "Successfully changed vm state of %s to %s"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/compute/api.py:71
#, python-format
-msgid "Failed to change vm state of %s to %s"
+msgid "Instance %d was not found in get_network_topic"
msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Finished retreving %s -- placed in %s"
+msgid "Instance %d has no host"
msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Connecting to libvirt: %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
+#: ../nova/compute/api.py:99
+#, python-format
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""
-#: nova/virt/libvirt_conn.py:229
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
+msgstr ""
+
+#: ../nova/compute/api.py:160
#, python-format
-msgid "instance %s: deleting instance files %s"
+msgid "Going to run %s instances..."
msgstr ""
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/compute/api.py:187
#, python-format
-msgid "No disk at %s"
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+#: ../nova/compute/api.py:292
+#, python-format
+msgid "Going to try to terminate %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:294
+#: ../nova/compute/api.py:296
#, python-format
-msgid "instance %s: rebooted"
+msgid "Instance %d was not found during terminate"
msgstr ""
-#: nova/virt/libvirt_conn.py:297
+#: ../nova/compute/api.py:301
#, python-format
-msgid "_wait_for_reboot failed: %s"
+msgid "Instance %d is already being terminated"
msgstr ""
-#: nova/virt/libvirt_conn.py:340
+#: ../nova/compute/api.py:481
#, python-format
-msgid "instance %s: rescued"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
msgstr ""
-#: nova/virt/libvirt_conn.py:343
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
+msgstr ""
+
+#: ../nova/rpc.py:98
#, python-format
-msgid "_wait_for_rescue failed: %s"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
msgstr ""
-#: nova/virt/libvirt_conn.py:370
+#: ../nova/rpc.py:103
#, python-format
-msgid "instance %s: is running"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
msgstr ""
+"Nepodařilo se připojit k AMQP serveru ani po %d pokusech. Tento proces bude "
+"ukončen."
+
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr "Znovu připojeno k AMQP frontě"
-#: nova/virt/libvirt_conn.py:381
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr "Selhalo získání zprávy z AMQP fronty"
+
+#: ../nova/rpc.py:159
#, python-format
-msgid "instance %s: booted"
+msgid "Initing the Adapter Consumer for %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
+#: ../nova/rpc.py:178
#, python-format
-msgid "instance %s: failed to boot"
+msgid "received %s"
+msgstr "získáno: %s"
+
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
+#, python-format
+msgid "no method for message: %s"
+msgstr "Není metoda pro zpracování zprávy: %s"
+
+#: ../nova/rpc.py:192
+#, python-format
+msgid "No method for message: %s"
+msgstr "Není metoda pro zpracování zprávy: %s"
+
+#: ../nova/rpc.py:253
+#, python-format
+msgid "Returning exception %s to caller"
+msgstr "Volajícímu je vrácena výjimka: %s"
+
+#: ../nova/rpc.py:294
+#, python-format
+msgid "unpacked context: %s"
+msgstr "rozbalený obsah: %s"
+
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
+msgstr "Volání asynchronní funkce..."
+
+#: ../nova/rpc.py:316
+#, python-format
+msgid "MSG_ID is %s"
+msgstr "MSG_ID je %s"
+
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
msgstr ""
-#: nova/virt/libvirt_conn.py:395
+#: ../nova/rpc.py:364
#, python-format
-msgid "virsh said: %r"
+msgid "response %s"
+msgstr "odpověď %s"
+
+#: ../nova/rpc.py:373
+#, python-format
+msgid "topic is %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
+#: ../nova/rpc.py:374
+#, python-format
+msgid "message %s"
+msgstr "zpráva %s"
+
+#: ../nova/volume/driver.py:78
+#, python-format
+msgid "Recovering from a failed execute. Try number %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:407
+#: ../nova/volume/driver.py:87
#, python-format
-msgid "data: %r, fpath: %r"
+msgid "volume group %s doesn't exist"
msgstr ""
-#: nova/virt/libvirt_conn.py:415
+#: ../nova/volume/driver.py:220
#, python-format
-msgid "Contents of file %s: %r"
+msgid "FAKE AOE: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:449
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
#, python-format
-msgid "instance %s: Creating image"
+msgid "FAKE ISCSI: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:505
+#: ../nova/volume/driver.py:359
#, python-format
-msgid "instance %s: injecting key into image %s"
+msgid "rbd has no pool %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:508
+#: ../nova/volume/driver.py:414
#, python-format
-msgid "instance %s: injecting net into image %s"
+msgid "Sheepdog is not working: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
msgstr ""
-#: nova/virt/libvirt_conn.py:516
+#: ../nova/wsgi.py:68
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
+
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:123
#, python-format
-msgid "instance %s: starting toXML method"
+msgid ""
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:589
+#: ../nova/virt/fake.py:239
#, python-format
-msgid "instance %s: finished toXML method"
+msgid "Instance %s Not Found"
+msgstr ""
+
+#: ../nova/network/manager.py:153
+#, python-format
+msgid "Dissassociated %s stale fixed ip(s)"
+msgstr ""
+
+#: ../nova/network/manager.py:157
+msgid "setting network host"
+msgstr ""
+
+#: ../nova/network/manager.py:212
+#, python-format
+msgid "Leasing IP %s"
+msgstr ""
+
+#: ../nova/network/manager.py:216
+#, python-format
+msgid "IP %s leased that isn't associated"
+msgstr ""
+
+#: ../nova/network/manager.py:220
+#, python-format
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
+
+#: ../nova/network/manager.py:228
+#, python-format
+msgid "IP %s leased that was already deallocated"
+msgstr ""
+
+#: ../nova/network/manager.py:233
+#, python-format
+msgid "Releasing IP %s"
+msgstr ""
+
+#: ../nova/network/manager.py:237
+#, python-format
+msgid "IP %s released that isn't associated"
+msgstr ""
+
+#: ../nova/network/manager.py:241
+#, python-format
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
+
+#: ../nova/network/manager.py:244
+#, python-format
+msgid "IP %s released that was not leased"
msgstr ""
-#: nova/virt/xenapi_conn.py:113
+#: ../nova/network/manager.py:519
msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
msgstr ""
-#: nova/virt/xenapi_conn.py:263
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Task [%s] %s status: success %s"
+msgid "Introducing %s..."
msgstr ""
-#: nova/virt/xenapi_conn.py:271
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Task [%s] %s status: %s %s"
+msgid "Introduced %(label)s as %(sr_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
msgstr ""
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Got exception: %s"
+msgid "Unable to find SR from VBD %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:72
+#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "%s: _db_content => %s"
+msgid "Forgetting SR %s ... "
msgstr ""
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
+#: ../nova/virt/xenapi/volume_utils.py:101
+#, python-format
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:249
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:283
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Calling %s %s"
+msgid "Forgetting SR %s done."
msgstr ""
-#: nova/virt/xenapi/fake.py:288
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Calling getter %s"
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:340
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
+msgid "Unable to introduce VDI on SR %s"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:40
+#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Found non-unique network for bridge %s"
+msgid "Unable to get record of VDI %s on"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:43
+#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Found no network for bridge %s"
+msgid "Unable to introduce VDI for SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:127
+#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Created VM %s as %s."
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:147
+#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
+msgid "Mountpoint cannot be translated: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:149
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:165
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "VBD not found in instance %s"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:175
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "Unable to unplug VBD %s"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:187
+#: ../nova/objectstore/handler.py:106
#, python-format
-msgid "Unable to destroy VBD %s"
+msgid "Unknown S3 value type %r"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:137
+msgid "Authenticated request"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:202
+#: ../nova/objectstore/handler.py:182
+msgid "List of buckets requested"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:209
#, python-format
-msgid "Creating VIF for VM %s, network %s."
+msgid "List keys for bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:205
+#: ../nova/objectstore/handler.py:217
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
+msgid "Unauthorized attempt to access bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:216
+#: ../nova/objectstore/handler.py:235
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
+msgid "Creating bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:229
+#: ../nova/objectstore/handler.py:245
#, python-format
-msgid "Created snapshot %s from VM %s."
+msgid "Deleting bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:243
+#: ../nova/objectstore/handler.py:249
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
+msgid "Unauthorized attempt to delete bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:261
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "Asking xapi to fetch %s as %s"
+msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:279
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Looking up vdi %s for PV kernel"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:290
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:318
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "VDI %s is still available"
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:331
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:333
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:390
+#: ../nova/objectstore/handler.py:396
#, python-format
-msgid "VHD %s has parent %s"
+msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:407
+#: ../nova/objectstore/handler.py:404
#, python-format
-msgid "Re-scanning SR %s"
+msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:431
+#: ../nova/objectstore/handler.py:409
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+msgid "Starting image upload: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:448
+#: ../nova/objectstore/handler.py:423
#, python-format
-msgid "No VDIs found for VM %s"
+msgid "Not authorized to update attributes of image %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:452
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""
-#: nova/virt/xenapi/vmops.py:62
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
-msgid "Attempted to create non-unique name %s"
+msgid "Updating user fields on image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:99
+#: ../nova/objectstore/handler.py:450
#, python-format
-msgid "Starting VM %s..."
+msgid "Unauthorized attempt to delete image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:101
+#: ../nova/objectstore/handler.py:455
#, python-format
-msgid "Spawning VM %s created %s."
+msgid "Deleted image: %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:112
+#: ../nova/auth/manager.py:259
#, python-format
-msgid "Instance %s: booted"
+msgid "Looking up user: %r"
msgstr ""
-#: nova/virt/xenapi/vmops.py:137
+#: ../nova/auth/manager.py:263
#, python-format
-msgid "Instance not present %s"
+msgid "Failed authorization for access key %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:166
+#: ../nova/auth/manager.py:264
#, python-format
-msgid "Starting snapshot for VM %s"
+msgid "No user found for access key %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:174
+#: ../nova/auth/manager.py:270
#, python-format
-msgid "Unable to Snapshot %s: %s"
+msgid "Using project name = user name (%s)"
msgstr ""
-#: nova/virt/xenapi/vmops.py:184
+#: ../nova/auth/manager.py:277
#, python-format
-msgid "Finished snapshot and upload for VM %s"
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/virt/xenapi/vmops.py:252
+#: ../nova/auth/manager.py:279
#, python-format
-msgid "suspend: instance not present %s"
+msgid "No project called %s could be found"
msgstr ""
-#: nova/virt/xenapi/vmops.py:262
+#: ../nova/auth/manager.py:287
#, python-format
-msgid "resume: instance not present %s"
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:271
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "Instance not found %s"
+msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:57
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
-msgid "Introducing %s..."
+msgid "Invalid signature for user %s"
+msgstr ""
+
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
+msgstr ""
+
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:74
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "Introduced %s as %s."
+msgid "The %s role can not be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
+#: ../nova/auth/manager.py:416
+#, python-format
+msgid "The %s role is global only"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:90
+#: ../nova/auth/manager.py:420
#, python-format
-msgid "Unable to find SR from VBD %s"
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:96
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Forgetting SR %s ... "
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:101
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:107
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:111
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Forgetting SR %s done."
+msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:113
+#: ../nova/auth/manager.py:533
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
+msgid "modifying project %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:123
+#: ../nova/auth/manager.py:545
#, python-format
-msgid "Unable to introduce VDI on SR %s"
+msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:128
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Unable to get record of VDI %s on"
+msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:146
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Unable to introduce VDI for SR %s"
+msgid "Deleting project %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:175
+#: ../nova/auth/manager.py:650
#, python-format
-msgid "Unable to obtain target information %s, %s"
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:197
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Mountpoint cannot be translated: %s"
+msgid "Deleting user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:51
+#: ../nova/auth/manager.py:669
#, python-format
-msgid "Attach_volume: %s, %s, %s"
+msgid "Access Key change for user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:69
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
+msgid "Secret Key change for user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:81
+#: ../nova/auth/manager.py:673
#, python-format
-msgid "Unable to use SR %s for instance %s"
+msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:93
+#: ../nova/auth/manager.py:722
#, python-format
-msgid "Unable to attach volume to instance %s"
+msgid "No vpn data for project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:95
+#: ../nova/service.py:161
#, python-format
-msgid "Mountpoint %s attached to instance %s"
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
+msgstr ""
+
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:106
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr ""
+
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
+msgstr ""
+
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr ""
+
+#: ../nova/auth/ldapdriver.py:174
#, python-format
-msgid "Detach_volume: %s, %s"
+msgid "LDAP user %s already exists"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:113
+#: ../nova/auth/ldapdriver.py:205
#, python-format
-msgid "Unable to locate volume %s"
+msgid "LDAP object for %s doesn't exist"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:121
+#: ../nova/auth/ldapdriver.py:348
#, python-format
-msgid "Unable to detach volume %s"
+msgid "User %s doesn't exist"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:128
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "Mountpoint %s detached from instance %s"
+msgid "Group can't be created because group %s already exists"
msgstr ""
-#: nova/volume/api.py:44
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
+msgid "Group can't be created because user %s doesn't exist"
msgstr ""
-#: nova/volume/api.py:46
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
+msgid "User %s can't be searched in group because the user doesn't exist"
msgstr ""
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
+#: ../nova/auth/ldapdriver.py:507
+#, python-format
+msgid "User %s can't be added to the group because the user doesn't exist"
msgstr ""
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
+#, python-format
+msgid "The group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
+#: ../nova/auth/ldapdriver.py:513
+#, python-format
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
msgstr ""
-#: nova/volume/driver.py:76
+#: ../nova/auth/ldapdriver.py:524
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
msgstr ""
-#: nova/volume/driver.py:85
+#: ../nova/auth/ldapdriver.py:528
#, python-format
-msgid "volume group %s doesn't exist"
+msgid "User %s is not a member of the group"
msgstr ""
-#: nova/volume/driver.py:210
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "FAKE AOE: %s"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
msgstr ""
-#: nova/volume/driver.py:315
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "FAKE ISCSI: %s"
+msgid "User %s can't be removed from all because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:85
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "Re-exporting %s volumes"
+msgid "Group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:93
+#: ../nova/virt/xenapi/network_utils.py:40
#, python-format
-msgid "volume %s: creating"
+msgid "Found non-unique network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:102
+#: ../nova/virt/xenapi/network_utils.py:43
#, python-format
-msgid "volume %s: creating lv of size %sG"
+msgid "Found no network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:106
+#: ../nova/api/ec2/admin.py:97
#, python-format
-msgid "volume %s: creating export"
+msgid "Creating new user: %s"
msgstr ""
-#: nova/volume/manager.py:113
+#: ../nova/api/ec2/admin.py:105
#, python-format
-msgid "volume %s: created successfully"
+msgid "Deleting user: %s"
msgstr ""
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
msgstr ""
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
+#: ../nova/api/ec2/admin.py:131
+#, python-format
+msgid "Adding sitewide role %(role)s to user %(user)s"
msgstr ""
-#: nova/volume/manager.py:124
+#: ../nova/api/ec2/admin.py:137
#, python-format
-msgid "volume %s: removing export"
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
msgstr ""
-#: nova/volume/manager.py:126
+#: ../nova/api/ec2/admin.py:141
#, python-format
-msgid "volume %s: deleting"
+msgid "Removing sitewide role %(role)s from user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
msgstr ""
-#: nova/volume/manager.py:129
+#: ../nova/api/ec2/admin.py:159
#, python-format
-msgid "volume %s: deleted successfully"
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:177
+#, python-format
+msgid "Create project %(name)s managed by %(manager_user)s"
msgstr ""
+
+#: ../nova/api/ec2/admin.py:190
+#, python-format
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:200
+#, python-format
+msgid "Delete project: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:214
+#, python-format
+msgid "Adding user %(user)s to project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
+msgstr ""
+
+#, python-format
+#~ msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+#~ msgstr "AMQP server na %s:%d není dosažitelný. Zkusím znovu za %d sekund."
+
+#, python-format
+#~ msgid ""
+#~ "%s\n"
+#~ "Command: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+#~ msgstr ""
+#~ "%s\n"
+#~ "Příkaz: %s\n"
+#~ "Vrácená hodnota: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
diff --git a/po/da.po b/po/da.po
index f845f11b0..d24d89fd9 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,2124 +7,2842 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
"PO-Revision-Date: 2011-01-15 21:46+0000\n"
"Last-Translator: Soren Hansen <soren@linux2go.dk>\n"
"Language-Team: Danish <da@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-05 05:36+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-03-19 06:18+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr ""
+
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr ""
+
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
+
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
+
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr ""
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr ""
+
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
+msgstr ""
+
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr ""
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr ""
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:152
+#, python-format
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:238
+#, python-format
+msgid "Compute.api::lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:253
+#, python-format
+msgid "Compute.api::unlock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:267
+#, python-format
+msgid "Compute.api::get_lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:292
+#, python-format
+msgid "Compute.api::pause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:303
+#, python-format
+msgid "Compute.api::unpause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:314
+#, python-format
+msgid "compute.api::suspend %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:325
+#, python-format
+msgid "compute.api::resume %s"
+msgstr ""
+
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr ""
+
+#: ../nova/twistd.py:209
+#, python-format
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr ""
+
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr ""
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr ""
+
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr ""
+
+#: ../nova/twistd.py:266
+#, python-format
+msgid "Starting %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
+#, python-format
+msgid "Instance %s not found"
+msgstr ""
+
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
+#, python-format
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:91
+#, python-format
+msgid "Unable to attach volume to instance %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr ""
+
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
+#, python-format
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:112
+#, python-format
+msgid "Unable to locate volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:120
+#, python-format
+msgid "Unable to detach volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:127
+#, python-format
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr ""
+
+#: ../nova/crypto.py:46
msgid "Filename of root CA"
msgstr ""
-#: nova/crypto.py:49
+#: ../nova/crypto.py:49
msgid "Filename of private key"
msgstr "Filnavn for privatnøgle"
-#: nova/crypto.py:51
+#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
msgstr ""
-#: nova/crypto.py:53
+#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr ""
-#: nova/crypto.py:55
+#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr ""
-#: nova/crypto.py:57
+#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr ""
-#: nova/crypto.py:61
+#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr ""
-#: nova/crypto.py:66
+#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:71
+#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:258
+#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr ""
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr ""
+
+#: ../nova/compute/manager.py:78
+#, python-format
+msgid "check_instance_lock: decorating: |%s|"
msgstr ""
-#: nova/exception.py:36
+#: ../nova/compute/manager.py:80
#, python-format
msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
msgstr ""
-#: nova/exception.py:86
-msgid "Uncaught exception"
+#: ../nova/compute/manager.py:84
+#, python-format
+msgid "check_instance_lock: locked: |%s|"
msgstr ""
-#: nova/fakerabbit.py:48
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "(%s) publish (key: %s) %s"
+msgid "check_instance_lock: admin: |%s|"
msgstr ""
-#: nova/fakerabbit.py:53
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Publishing to route %s"
+msgid "check_instance_lock: executing: |%s|"
msgstr ""
-#: nova/fakerabbit.py:83
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Declaring queue %s"
+msgid "check_instance_lock: not executing |%s|"
+msgstr ""
+
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
msgstr ""
-#: nova/fakerabbit.py:89
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "Declaring exchange %s"
+msgid "instance %s: starting..."
msgstr ""
-#: nova/fakerabbit.py:95
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "Binding %s to %s with key %s"
+msgid "instance %s: Failed to spawn"
msgstr ""
-#: nova/fakerabbit.py:120
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "Getting from %s: %s"
+msgid "Terminating instance %s"
msgstr ""
-#: nova/rpc.py:92
+#: ../nova/compute/manager.py:255
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+msgid "Deallocating address %s"
msgstr ""
-#: nova/rpc.py:99
+#: ../nova/compute/manager.py:268
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgid "trying to destroy already destroyed instance: %s"
msgstr ""
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
+#: ../nova/compute/manager.py:282
+#, python-format
+msgid "Rebooting instance %s"
msgstr ""
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
+#: ../nova/compute/manager.py:287
+#, python-format
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-#: nova/rpc.py:155
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "Initing the Adapter Consumer for %s"
+msgid "instance %s: snapshotting"
msgstr ""
-#: nova/rpc.py:170
+#: ../nova/compute/manager.py:316
#, python-format
-msgid "received %s"
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-#: nova/rpc.py:183
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "no method for message: %s"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
msgstr ""
-#: nova/rpc.py:184
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "No method for message: %s"
+msgid "instance %s: setting admin password"
msgstr ""
-#: nova/rpc.py:245
+#: ../nova/compute/manager.py:353
#, python-format
-msgid "Returning exception %s to caller"
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
msgstr ""
-#: nova/rpc.py:286
+#: ../nova/compute/manager.py:362
#, python-format
-msgid "unpacked context: %s"
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
msgstr ""
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
+#: ../nova/compute/manager.py:372
+#, python-format
+msgid "instance %s: rescuing"
msgstr ""
-#: nova/rpc.py:308
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "MSG_ID is %s"
+msgid "instance %s: unrescuing"
msgstr ""
-#: nova/rpc.py:356
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "response %s"
+msgid "instance %s: pausing"
msgstr ""
-#: nova/rpc.py:365
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "topic is %s"
+msgid "instance %s: unpausing"
msgstr ""
-#: nova/rpc.py:366
+#: ../nova/compute/manager.py:440
#, python-format
-msgid "message %s"
+msgid "instance %s: retrieving diagnostics"
msgstr ""
-#: nova/service.py:157
+#: ../nova/compute/manager.py:453
#, python-format
-msgid "Starting %s node"
+msgid "instance %s: suspending"
msgstr ""
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
+#: ../nova/compute/manager.py:472
+#, python-format
+msgid "instance %s: resuming"
msgstr ""
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
+#: ../nova/compute/manager.py:491
+#, python-format
+msgid "instance %s: locking"
msgstr ""
-#: nova/service.py:202
-msgid "Recovered model server connection!"
+#: ../nova/compute/manager.py:503
+#, python-format
+msgid "instance %s: unlocking"
msgstr ""
-#: nova/service.py:208
-msgid "model server went away"
+#: ../nova/compute/manager.py:513
+#, python-format
+msgid "instance %s: getting locked state"
msgstr ""
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/compute/manager.py:526
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
+msgid "instance %s: reset network"
msgstr ""
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
#, python-format
-msgid "Serving %s"
+msgid "Get console output for instance %s"
msgstr ""
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
+#: ../nova/compute/manager.py:543
+#, python-format
+msgid "instance %s: getting ajax console"
msgstr ""
-#: nova/twistd.py:211
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
msgstr ""
-#: nova/twistd.py:268
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "Starting %s"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
msgstr ""
-#: nova/utils.py:53
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Inner Exception: %s"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
msgstr ""
-#: nova/utils.py:54
+#: ../nova/compute/manager.py:588
#, python-format
-msgid "Class %s cannot be found"
+msgid "Detaching volume from unknown instance %s"
msgstr ""
-#: nova/utils.py:113
+#: ../nova/scheduler/simple.py:53
#, python-format
-msgid "Fetching %s"
+msgid "Host %s is not alive"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
msgstr ""
-#: nova/utils.py:125
+#: ../nova/scheduler/simple.py:87
#, python-format
-msgid "Running cmd (subprocess): %s"
+msgid "Host %s not available"
msgstr ""
-#: nova/utils.py:138
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
+msgstr ""
+
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "Result was %s"
+msgid "Re-exporting %s volumes"
msgstr ""
-#: nova/utils.py:171
+#: ../nova/volume/manager.py:90
#, python-format
-msgid "debug in callback: %s"
+msgid "volume %s: skipping export"
msgstr ""
-#: nova/utils.py:176
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Running %s"
+msgid "volume %s: creating"
msgstr ""
-#: nova/utils.py:207
+#: ../nova/volume/manager.py:108
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
msgstr ""
-#: nova/utils.py:289
+#: ../nova/volume/manager.py:112
#, python-format
-msgid "Invalid backend: %s"
+msgid "volume %s: creating export"
msgstr ""
-#: nova/utils.py:300
+#: ../nova/volume/manager.py:123
#, python-format
-msgid "backend %s"
+msgid "volume %s: created successfully"
msgstr ""
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
msgstr ""
-#: nova/api/ec2/__init__.py:142
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
+msgstr ""
+
+#: ../nova/volume/manager.py:136
#, python-format
-msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
+msgid "volume %s: removing export"
msgstr ""
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#: ../nova/volume/manager.py:138
#, python-format
-msgid "Authentication Failure: %s"
+msgid "volume %s: deleting"
msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/volume/manager.py:147
#, python-format
-msgid "Authenticated Request For %s:%s)"
+msgid "volume %s: deleted successfully"
+msgstr "bind %s: slettet"
+
+#: ../nova/virt/xenapi/fake.py:74
+#, python-format
+msgid "%(text)s: _db_content => %(content)s"
msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:306
#, python-format
-msgid "action: %s"
+msgid "xenapi.fake does not have an implementation for %s"
msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/virt/xenapi/fake.py:341
#, python-format
-msgid "arg: %s\t\tval: %s"
+msgid "Calling %(localname)s %(impl)s"
msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/virt/xenapi/fake.py:346
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
+msgid "Calling getter %s"
msgstr ""
-#: nova/api/ec2/__init__.py:339
+#: ../nova/virt/xenapi/fake.py:406
#, python-format
-msgid "NotFound raised: %s"
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
+msgstr ""
+
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/tests/test_cloud.py:268
#, python-format
-msgid "ApiError raised: %s"
+msgid "Need to watch instance %s until it's running..."
msgstr ""
-#: nova/api/ec2/__init__.py:349
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
+msgstr ""
+
+#: ../nova/network/linux_net.py:187
#, python-format
-msgid "Unexpected error raised: %s"
+msgid "Starting VLAN inteface %s"
msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
+#: ../nova/network/linux_net.py:208
+#, python-format
+msgid "Starting Bridge interface for %s"
msgstr ""
-#: nova/api/ec2/admin.py:84
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
#, python-format
-msgid "Creating new user: %s"
+msgid "Hupping dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:92
+#: ../nova/network/linux_net.py:316
#, python-format
-msgid "Deleting user: %s"
+msgid "Pid %d is stale, relaunching dnsmasq"
msgstr ""
-#: nova/api/ec2/admin.py:114
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
#, python-format
-msgid "Adding role %s to user %s for project %s"
+msgid "killing radvd threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/network/linux_net.py:360
#, python-format
-msgid "Adding sitewide role %s to user %s"
+msgid "Pid %d is stale, relaunching radvd"
msgstr ""
-#: nova/api/ec2/admin.py:122
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
#, python-format
-msgid "Removing role %s from user %s for project %s"
+msgid "Killing dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/utils.py:58
#, python-format
-msgid "Removing sitewide role %s from user %s"
+msgid "Inner Exception: %s"
msgstr ""
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
+#: ../nova/utils.py:59
+#, python-format
+msgid "Class %s cannot be found"
msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/utils.py:118
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
+msgid "Fetching %s"
msgstr ""
-#: nova/api/ec2/admin.py:159
+#: ../nova/utils.py:130
#, python-format
-msgid "Create project %s managed by %s"
+msgid "Running cmd (subprocess): %s"
msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/utils.py:143 ../nova/utils.py:183
#, python-format
-msgid "Delete project: %s"
+msgid "Result was %s"
msgstr ""
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/utils.py:159
#, python-format
-msgid "Adding user %s to project %s"
+msgid "Running cmd (SSH): %s"
msgstr ""
-#: nova/api/ec2/admin.py:188
+#: ../nova/utils.py:217
#, python-format
-msgid "Removing user %s from project %s"
+msgid "debug in callback: %s"
msgstr ""
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/utils.py:222
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
+msgid "Running %s"
msgstr ""
-#: nova/api/ec2/cloud.py:117
+#: ../nova/utils.py:262
#, python-format
-msgid "Generating root CA: %s"
+msgid "Link Local address is not found.:%s"
msgstr ""
-#: nova/api/ec2/cloud.py:277
+#: ../nova/utils.py:265
#, python-format
-msgid "Create key pair %s"
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
msgstr ""
-#: nova/api/ec2/cloud.py:285
+#: ../nova/utils.py:363
#, python-format
-msgid "Delete key pair %s"
+msgid "Invalid backend: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:357
+#: ../nova/utils.py:374
#, python-format
-msgid "%s is not a valid ipProtocol"
+msgid "backend %s"
msgstr ""
-#: nova/api/ec2/cloud.py:361
-msgid "Invalid port range"
+#: ../nova/fakerabbit.py:49
+#, python-format
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:392
+#: ../nova/fakerabbit.py:54
#, python-format
-msgid "Revoke security group ingress %s"
+msgid "Publishing to route %s"
msgstr ""
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
-msgid "No rule for the specified parameters."
+#: ../nova/fakerabbit.py:84
+#, python-format
+msgid "Declaring queue %s"
msgstr ""
-#: nova/api/ec2/cloud.py:421
+#: ../nova/fakerabbit.py:90
#, python-format
-msgid "Authorize security group ingress %s"
+msgid "Declaring exchange %s"
msgstr ""
-#: nova/api/ec2/cloud.py:432
+#: ../nova/fakerabbit.py:96
#, python-format
-msgid "This rule already exists in group %s"
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
msgstr ""
-#: nova/api/ec2/cloud.py:460
+#: ../nova/fakerabbit.py:121
#, python-format
-msgid "Create Security Group %s"
+msgid "Getting from %(queue)s: %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:463
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
-msgid "group %s already exists"
+msgid "Created VM %s..."
msgstr ""
-#: nova/api/ec2/cloud.py:475
+#: ../nova/virt/xenapi/vm_utils.py:138
#, python-format
-msgid "Delete security group %s"
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
+#: ../nova/virt/xenapi/vm_utils.py:168
#, python-format
-msgid "Get console output for instance %s"
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
msgstr ""
-#: nova/api/ec2/cloud.py:543
+#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
-msgid "Create volume of %s GB"
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:567
+#: ../nova/virt/xenapi/vm_utils.py:187
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
+msgid "VBD not found in instance %s"
msgstr ""
-#: nova/api/ec2/cloud.py:579
+#: ../nova/virt/xenapi/vm_utils.py:197
#, python-format
-msgid "Detach volume %s"
+msgid "Unable to unplug VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:686
-msgid "Allocate address"
+#: ../nova/virt/xenapi/vm_utils.py:209
+#, python-format
+msgid "Unable to destroy VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:691
+#: ../nova/virt/xenapi/vm_utils.py:224
#, python-format
-msgid "Release address %s"
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:696
+#: ../nova/virt/xenapi/vm_utils.py:227
#, python-format
-msgid "Associate address %s to instance %s"
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
-msgid "Disassociate address %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:730
-msgid "Going to start terminating instances"
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
+#, python-format
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
msgstr ""
-#: nova/api/ec2/cloud.py:738
+#: ../nova/virt/xenapi/vm_utils.py:272
#, python-format
-msgid "Reboot instance %r"
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:775
+#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
-msgid "De-registering image %s"
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
msgstr ""
-#: nova/api/ec2/cloud.py:783
+#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
-msgid "Registered image %s with id %s"
+msgid "Size for image %(image)s:%(virtual_size)d"
msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/virt/xenapi/vm_utils.py:332
#, python-format
-msgid "attribute not supported: %s"
+msgid "Glance image %s"
msgstr ""
-#: nova/api/ec2/cloud.py:794
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
#, python-format
-msgid "invalid id: %s"
+msgid "Copying VDI %s to /boot/guest on dom0"
msgstr ""
-#: nova/api/ec2/cloud.py:807
-msgid "user or group not specified"
+#: ../nova/virt/xenapi/vm_utils.py:352
+#, python-format
+msgid "Kernel/Ramdisk VDI %s destroyed"
msgstr ""
-#: nova/api/ec2/cloud.py:809
-msgid "only group \"all\" is supported"
+#: ../nova/virt/xenapi/vm_utils.py:361
+#, python-format
+msgid "Asking xapi to fetch %(url)s as %(access)s"
msgstr ""
-#: nova/api/ec2/cloud.py:811
-msgid "operation_type must be add or remove"
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
+#, python-format
+msgid "Looking up vdi %s for PV kernel"
msgstr ""
-#: nova/api/ec2/cloud.py:812
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid "Updating image %s publicity"
+msgid "PV Kernel in VDI:%s"
msgstr ""
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../nova/virt/xenapi/vm_utils.py:405
#, python-format
-msgid "Failed to get metadata for ip: %s"
+msgid "Running pygrub against %s"
msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
-msgid "Caught error: %s"
+msgid "Found Xen kernel %s"
msgstr ""
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
-msgid "Compute.api::lock %s"
+msgid "duplicate name found: %s"
msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "Compute.api::unlock %s"
+msgid "VDI %s is still available"
msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "Compute.api::get_lock %s"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
msgstr ""
-#: nova/api/openstack/servers.py:224
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "Compute.api::pause %s"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../nova/virt/xenapi/vm_utils.py:525
#, python-format
-msgid "Compute.api::unpause %s"
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "compute.api::suspend %s"
+msgid "Re-scanning SR %s"
msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "compute.api::resume %s"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "User %s already exists"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../nova/virt/xenapi/vm_utils.py:590
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
+msgid "No VDIs found for VM %s"
msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../nova/virt/xenapi/vm_utils.py:594
#, python-format
-msgid "Project can't be created because project %s already exists"
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
+msgid "Creating VBD for VDI %s ... "
msgstr ""
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
-msgid "User \"%s\" not found"
+msgid "Creating VBD for VDI %s done."
msgstr ""
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
#, python-format
-msgid "Project \"%s\" not found"
+msgid "Plugging VBD %s ... "
msgstr ""
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
+#, python-format
+msgid "Plugging VBD %s done."
msgstr ""
-#: nova/auth/ldapdriver.py:181
+#: ../nova/virt/xenapi/vm_utils.py:661
#, python-format
-msgid "LDAP object for %s doesn't exist"
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
msgstr ""
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vm_utils.py:664
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
-msgid "User %s is already a member of the group %s"
+msgid "Destroying VBD for VDI %s ... "
msgstr ""
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
-msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+msgid "Destroying VBD for VDI %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
msgstr ""
-#: nova/auth/ldapdriver.py:528
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
-msgid "Group at dn %s doesn't exist"
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
msgstr ""
-#: nova/auth/manager.py:259
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
-msgid "Looking up user: %r"
+msgid "Ignoring XenAPI.Failure %s"
msgstr ""
-#: nova/auth/manager.py:263
+#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
-msgid "Failed authorization for access key %s"
+msgid ""
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""
-#: nova/auth/manager.py:264
+#: ../nova/virt/xenapi/vm_utils.py:747
#, python-format
-msgid "No user found for access key %s"
+msgid "Writing partition table %s done."
msgstr ""
-#: nova/auth/manager.py:270
+#: ../nova/tests/test_rpc.py:89
#, python-format
-msgid "Using project name = user name (%s)"
+msgid "Nested received %(queue)s, %(value)s"
msgstr ""
-#: nova/auth/manager.py:275
+#: ../nova/tests/test_rpc.py:95
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
+msgid "Nested return %s"
msgstr ""
-#: nova/auth/manager.py:277
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
#, python-format
-msgid "No project called %s could be found"
+msgid "Received %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:133
+#, python-format
+msgid "No service for id %s"
msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/db/sqlalchemy/api.py:251
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "No service for %(host)s, %(binary)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
msgstr ""
-#: nova/auth/manager.py:283
+#: ../nova/db/sqlalchemy/api.py:608
#, python-format
-msgid "User %s is not a member of project %s"
+msgid "No floating ip for address %s"
msgstr ""
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/db/sqlalchemy/api.py:629
#, python-format
-msgid "Invalid signature for user %s"
+msgid "No address for instance %s"
msgstr ""
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
+#: ../nova/db/sqlalchemy/api.py:961
+#, python-format
+msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""
-#: nova/auth/manager.py:374
-msgid "Must specify project"
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
+#, python-format
+msgid "No network for id %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
msgstr ""
-#: nova/auth/manager.py:408
+#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
-msgid "The %s role can not be found"
+msgid "No network for bridge %s"
msgstr ""
-#: nova/auth/manager.py:410
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
#, python-format
-msgid "The %s role is global only"
+msgid "No network for instance %s"
msgstr ""
-#: nova/auth/manager.py:412
+#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
-msgid "Adding role %s to user %s in project %s"
+msgid "Token %s does not exist"
msgstr ""
-#: nova/auth/manager.py:438
+#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
-msgid "Removing role %s from user %s on project %s"
+msgid "No quota for project_id %s"
msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
#, python-format
-msgid "Created project %s with manager %s"
+msgid "Volume %s not found"
msgstr ""
-#: nova/auth/manager.py:523
+#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
-msgid "modifying project %s"
+msgid "No export device found for volume %s"
msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
-msgid "Remove user %s from project %s"
+msgid "No target id found for volume %s"
msgstr ""
-#: nova/auth/manager.py:581
+#: ../nova/db/sqlalchemy/api.py:1572
#, python-format
-msgid "Deleting project %s"
+msgid "No security group with id %s"
msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/db/sqlalchemy/api.py:1589
#, python-format
-msgid "Created user %s (admin: %r)"
+msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/db/sqlalchemy/api.py:1682
#, python-format
-msgid "Deleting user %s"
+msgid "No secuity group rule with id %s"
msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/db/sqlalchemy/api.py:1756
#, python-format
-msgid "Access Key change for user %s"
+msgid "No user for id %s"
msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/db/sqlalchemy/api.py:1772
#, python-format
-msgid "Secret Key change for user %s"
+msgid "No user for access key %s"
msgstr ""
-#: nova/auth/manager.py:659
+#: ../nova/db/sqlalchemy/api.py:1834
#, python-format
-msgid "Admin status set to %r for user %s"
+msgid "No project with id %s"
msgstr ""
-#: nova/auth/manager.py:708
+#: ../nova/db/sqlalchemy/api.py:1979
#, python-format
-msgid "No vpn data for project %s"
+msgid "No console pool with id %(pool_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/db/sqlalchemy/api.py:1996
+#, python-format
+msgid ""
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:2035
+#, python-format
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:2057
+#, python-format
+msgid "on instance %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
-msgid "Launching VPN for %s"
+msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""
-#: nova/compute/api.py:67
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
-msgid "Instance %d was not found in get_network_topic"
+msgid "No zone with id %(zone_id)s"
msgstr ""
-#: nova/compute/api.py:73
+#: ../nova/virt/libvirt_conn.py:160
#, python-format
-msgid "Instance %d has no host"
+msgid "Checking state of %s"
msgstr ""
-#: nova/compute/api.py:92
+#: ../nova/virt/libvirt_conn.py:165
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
+msgid "Current state of %(name)s was %(state)s."
msgstr ""
-#: nova/compute/api.py:94
+#: ../nova/virt/libvirt_conn.py:183
#, python-format
-msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+msgid "Connecting to libvirt: %s"
msgstr ""
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/virt/libvirt_conn.py:258
#, python-format
-msgid "Going to run %s instances..."
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/virt/libvirt_conn.py:283
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
+msgid "Invalid device path %s"
msgstr ""
-#: nova/compute/api.py:279
+#: ../nova/virt/libvirt_conn.py:313
#, python-format
-msgid "Going to try and terminate %s"
+msgid "No disk at %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
msgstr ""
-#: nova/compute/api.py:283
+#: ../nova/virt/libvirt_conn.py:336
#, python-format
-msgid "Instance %d was not found during terminate"
+msgid "instance %s: rebooted"
msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/virt/libvirt_conn.py:339
#, python-format
-msgid "Instance %d is already being terminated"
+msgid "_wait_for_reboot failed: %s"
msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/virt/libvirt_conn.py:382
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "instance %s: rescued"
msgstr ""
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
+#: ../nova/virt/libvirt_conn.py:385
+#, python-format
+msgid "_wait_for_rescue failed: %s"
msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "instance %s: is running"
msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "instance %s: booted"
msgstr ""
-#: nova/compute/disk.py:128
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid "Could not attach image to loopback: %s"
+msgid "instance %s: failed to boot"
msgstr ""
-#: nova/compute/disk.py:136
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "Failed to load partition: %s"
+msgid "virsh said: %r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
msgstr ""
-#: nova/compute/disk.py:158
+#: ../nova/virt/libvirt_conn.py:448
#, python-format
-msgid "Failed to mount filesystem: %s"
+msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""
-#: nova/compute/instance_types.py:41
+#: ../nova/virt/libvirt_conn.py:456
#, python-format
-msgid "Unknown instance type: %s"
+msgid "Contents of file %(fpath)s: %(contents)r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/virt/libvirt_conn.py:563
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
+msgid "instance %s: Creating image"
msgstr ""
-#: nova/compute/manager.py:71
+#: ../nova/virt/libvirt_conn.py:646
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:75
+#: ../nova/virt/libvirt_conn.py:649
#, python-format
-msgid "check_instance_lock: locked: |%s|"
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:77
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
#, python-format
-msgid "check_instance_lock: admin: |%s|"
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
msgstr ""
-#: nova/compute/manager.py:82
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
#, python-format
-msgid "check_instance_lock: executing: |%s|"
+msgid "instance %s: starting toXML method"
msgstr ""
-#: nova/compute/manager.py:86
+#: ../nova/virt/libvirt_conn.py:732
#, python-format
-msgid "check_instance_lock: not executing |%s|"
+msgid "instance %s: finished toXML method"
msgstr ""
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
msgstr ""
-#: nova/compute/manager.py:158
+#: ../nova/virt/libvirt_conn.py:1225
#, python-format
-msgid "instance %s: starting..."
+msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""
-#: nova/compute/manager.py:197
+#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
-msgid "instance %s: Failed to spawn"
+msgid "Failed to get metadata for ip: %s"
msgstr ""
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
+msgstr ""
+
+#: ../nova/network/api.py:39
#, python-format
-msgid "Terminating instance %s"
+msgid "Quota exceeeded for %s, tried to allocate address"
msgstr ""
-#: nova/compute/manager.py:217
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
+msgstr ""
+
+#: ../nova/tests/test_volume.py:162
#, python-format
-msgid "Disassociating address %s"
+msgid "Target %s allocated"
msgstr ""
-#: nova/compute/manager.py:230
+#: ../nova/virt/images.py:70
#, python-format
-msgid "Deallocating address %s"
+msgid "Finished retreving %(url)s -- placed in %(path)s"
+msgstr ""
+
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
msgstr ""
-#: nova/compute/manager.py:243
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
+msgid "Tried to remove non-existant console %(console_id)s."
msgstr ""
-#: nova/compute/manager.py:257
+#: ../nova/api/direct.py:149
+msgid "not available"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:62
#, python-format
-msgid "Rebooting instance %s"
+msgid "The key_pair %s already exists"
msgstr ""
-#: nova/compute/manager.py:260
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Generating root CA: %s"
msgstr ""
-#: nova/compute/manager.py:286
+#: ../nova/api/ec2/cloud.py:303
#, python-format
-msgid "instance %s: snapshotting"
+msgid "Create key pair %s"
msgstr ""
-#: nova/compute/manager.py:289
+#: ../nova/api/ec2/cloud.py:311
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Delete key pair %s"
msgstr ""
-#: nova/compute/manager.py:301
+#: ../nova/api/ec2/cloud.py:386
#, python-format
-msgid "instance %s: rescuing"
+msgid "%s is not a valid ipProtocol"
msgstr ""
-#: nova/compute/manager.py:316
+#: ../nova/api/ec2/cloud.py:390
+msgid "Invalid port range"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:421
#, python-format
-msgid "instance %s: unrescuing"
+msgid "Revoke security group ingress %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:443
+msgid "No rule for the specified parameters."
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/api/ec2/cloud.py:450
#, python-format
-msgid "instance %s: pausing"
+msgid "Authorize security group ingress %s"
msgstr ""
-#: nova/compute/manager.py:352
+#: ../nova/api/ec2/cloud.py:464
#, python-format
-msgid "instance %s: unpausing"
+msgid "This rule already exists in group %s"
msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/api/ec2/cloud.py:492
#, python-format
-msgid "instance %s: retrieving diagnostics"
+msgid "Create Security Group %s"
msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/api/ec2/cloud.py:495
#, python-format
-msgid "instance %s: suspending"
+msgid "group %s already exists"
msgstr ""
-#: nova/compute/manager.py:401
+#: ../nova/api/ec2/cloud.py:507
#, python-format
-msgid "instance %s: resuming"
+msgid "Delete security group %s"
msgstr ""
-#: nova/compute/manager.py:420
+#: ../nova/api/ec2/cloud.py:584
#, python-format
-msgid "instance %s: locking"
+msgid "Create volume of %s GB"
msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/api/ec2/cloud.py:612
#, python-format
-msgid "instance %s: unlocking"
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""
-#: nova/compute/manager.py:442
+#: ../nova/api/ec2/cloud.py:629
#, python-format
-msgid "instance %s: getting locked state"
+msgid "Detach volume %s"
msgstr ""
-#: nova/compute/manager.py:462
+#: ../nova/api/ec2/cloud.py:761
+msgid "Allocate address"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:766
#, python-format
-msgid "instance %s: attaching volume %s to %s"
+msgid "Release address %s"
msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "instance %s: attach failed %s, removing"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/api/ec2/cloud.py:780
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
+msgid "Disassociate address %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:807
+msgid "Going to start terminating instances"
msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/api/ec2/cloud.py:815
#, python-format
-msgid "Detaching volume from unknown instance %s"
+msgid "Reboot instance %r"
msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/api/ec2/cloud.py:867
#, python-format
-msgid "updating %s..."
+msgid "De-registering image %s"
msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
+#: ../nova/api/ec2/cloud.py:875
+#, python-format
+msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""
-#: nova/compute/monitor.py:355
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
+msgid "attribute not supported: %s"
msgstr ""
-#: nova/compute/monitor.py:377
+#: ../nova/api/ec2/cloud.py:890
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
+msgid "invalid id: %s"
msgstr ""
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
+#: ../nova/api/ec2/cloud.py:903
+msgid "user or group not specified"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:905
+msgid "only group \"all\" is supported"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:907
+msgid "operation_type must be add or remove"
msgstr ""
-#: nova/compute/monitor.py:427
+#: ../nova/api/ec2/cloud.py:908
#, python-format
-msgid "Found instance: %s"
+msgid "Updating image %s publicity"
msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
+#: ../bin/nova-api.py:52
+#, python-format
+msgid "Using paste.deploy config at: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:132
+#: ../bin/nova-api.py:57
#, python-format
-msgid "No service for id %s"
+msgid "No paste configuration for app: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../bin/nova-api.py:59
#, python-format
-msgid "No service for %s, %s"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../bin/nova-api.py:64
#, python-format
-msgid "No floating ip for address %s"
+msgid "Running %s API"
msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../bin/nova-api.py:69
#, python-format
-msgid "No instance for id %s"
+msgid "No known API applications configured in %s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../bin/nova-api.py:83
#, python-format
-msgid "Instance %s not found"
+msgid "Starting nova-api node (version %s)"
msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../bin/nova-api.py:89
#, python-format
-msgid "no keypair for user %s, name %s"
+msgid "No paste configuration found for: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "No network for id %s"
+msgid "Argument %(key)s value %(value)s is too short."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1036
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "No network for bridge %s"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "No network for instance %s"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "Token %s does not exist"
+msgid "Argument %s is required."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1205
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "No quota for project_id %s"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1356
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "No volume for id %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1401
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "Volume %s not found"
+msgid "Attempted to create non-unique name %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1413
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "No export device found for volume %s"
+msgid "instance %(name)s: not enough free memory"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1426
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "No target id found for volume %s"
+msgid "Starting VM %s..."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "No security group with id %s"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "No security group named %s for project: %s"
+msgid "Invalid value for onset_files: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "No secuity group rule with id %s"
+msgid "Injecting file path: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "No user for id %s"
+msgid "Instance %s: booted"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1666
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "No user for access key %s"
+msgid "Instance not present %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "No project with id %s"
+msgid "Starting snapshot for VM %s"
msgstr ""
-#: nova/image/glance.py:78
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""
-#: nova/image/glance.py:97
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid "Finished snapshot and upload for VM %s"
msgstr ""
-#: nova/image/s3.py:82
+#: ../nova/virt/xenapi/vmops.py:356
#, python-format
-msgid "Image %s could not be found"
+msgid "VM %(vm)s already halted, skipping shutdown..."
msgstr ""
-#: nova/network/api.py:39
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../nova/virt/xenapi/vmops.py:564
+#, python-format
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:176
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "Starting VLAN inteface %s"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:186
+#: ../nova/virt/xenapi/vmops.py:760
#, python-format
-msgid "Starting Bridge interface for %s"
+msgid "OpenSSL error: %s"
msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "Hupping dnsmasq threw %s"
+msgid "Running instances: %s"
msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
+msgid "After terminating instances: %s"
msgstr ""
-#: nova/network/linux_net.py:334
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "Killing dnsmasq threw %s"
+msgid "Launching VPN for %s"
msgstr ""
-#: nova/network/manager.py:135
-msgid "setting network host"
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
msgstr ""
-#: nova/network/manager.py:190
+#: ../nova/image/s3.py:99
#, python-format
-msgid "Leasing IP %s"
+msgid "Image %s could not be found"
msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
msgstr ""
-#: nova/network/manager.py:197
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
+msgid "Authentication Failure: %s"
msgstr ""
-#: nova/network/manager.py:205
+#: ../nova/api/ec2/__init__.py:182
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "IP %s released that isn't associated"
+msgid "action: %s"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/api/ec2/__init__.py:209
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "IP %s released that was not leased"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid "InstanceNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/api/ec2/__init__.py:320
#, python-format
-msgid "Unknown S3 value type %r"
+msgid "VolumeNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:137
-msgid "Authenticated request"
+#: ../nova/api/ec2/__init__.py:326
+#, python-format
+msgid "NotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:182
-msgid "List of buckets requested"
+#: ../nova/api/ec2/__init__.py:329
+#, python-format
+msgid "ApiError raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:209
+#: ../nova/api/ec2/__init__.py:338
#, python-format
-msgid "List keys for bucket %s"
+msgid "Unexpected error raised: %s"
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
msgstr ""
-#: nova/objectstore/handler.py:217
+#: ../nova/auth/dbdriver.py:84
#, python-format
-msgid "Unauthorized attempt to access bucket %s"
+msgid "User %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:235
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
#, python-format
-msgid "Creating bucket %s"
+msgid "Project can't be created because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:245
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
-msgid "Deleting bucket %s"
+msgid "Project can't be created because user %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:249
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
-msgid "Unauthorized attempt to delete bucket %s"
+msgid "Project can't be created because project %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:271
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Getting object: %s / %s"
+msgid "Project can't be modified because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/auth/dbdriver.py:245
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "User \"%s\" not found"
msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/auth/dbdriver.py:248
#, python-format
-msgid "Putting object: %s / %s"
+msgid "Project \"%s\" not found"
msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/virt/xenapi_conn.py:129
+msgid ""
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
+msgstr ""
+
+#: ../nova/virt/xenapi_conn.py:311
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
msgstr ""
-#: nova/objectstore/handler.py:314
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Deleting object: %s / %s"
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Not authorized to upload image: invalid directory %s"
+msgid "Got exception: %s"
msgstr ""
-#: nova/objectstore/handler.py:401
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Not authorized to upload image: unauthorized bucket %s"
+msgid "updating %s..."
+msgstr ""
+
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
msgstr ""
-#: nova/objectstore/handler.py:406
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Starting image upload: %s"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:420
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Not authorized to update attributes of image %s"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:428
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
+msgstr ""
+
+#: ../nova/compute/monitor.py:429
#, python-format
-msgid "Toggling publicity flag of image %s %r"
+msgid "Found instance: %s"
msgstr ""
-#: nova/objectstore/handler.py:433
+#: ../nova/volume/san.py:67
#, python-format
-msgid "Updating user fields on image %s"
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-#: nova/objectstore/handler.py:447
+#: ../nova/api/ec2/apirequest.py:100
#, python-format
-msgid "Unauthorized attempt to delete image %s"
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""
-#: nova/objectstore/handler.py:452
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Deleted image: %s"
+msgid "Caught error: %s"
msgstr ""
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
msgstr ""
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
msgstr ""
-#: nova/scheduler/manager.py:69
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "Re-wrote %s"
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
msgstr ""
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
+#: ../nova/console/xvp.py:141
+#, python-format
+msgid "Error starting xvp: %s"
msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
msgstr ""
-#: nova/tests/test_cloud.py:210
-#, python-format
-msgid "Need to watch instance %s until it's running..."
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
msgstr ""
-#: nova/tests/test_compute.py:104
-#, python-format
-msgid "Running instances: %s"
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
msgstr ""
-#: nova/tests/test_compute.py:110
-#, python-format
-msgid "After terminating instances: %s"
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
+msgstr ""
+
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
+msgstr ""
+
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
+msgstr ""
+
+#: ../bin/nova-manage.py:448
+msgid "IP address"
+msgstr ""
+
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
-msgid "Nested received %s, %s"
+msgid "Failed to load partition: %s"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../nova/virt/disk.py:91
#, python-format
-msgid "Nested return %s"
+msgid "Failed to mount filesystem: %s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Received %s"
+msgid "nbd device %s did not show up"
msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "Target %s allocated"
+msgid "Could not attach image to loopback: %s"
msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
msgstr ""
-#: nova/virt/fake.py:210
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "Instance %s Not Found"
+msgid "%(filename)s, line %(line_info)d"
msgstr ""
-#: nova/virt/hyperv.py:118
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr ""
-#: nova/virt/hyperv.py:152
+#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
-#, python-format
-msgid "Created VM %s..."
-msgstr ""
-
-#: nova/virt/hyperv.py:188
+#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:198
+#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""
-#: nova/virt/hyperv.py:227
+#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:272
+#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "Created switch port %s on switch %s"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "Del: disk %s vm %s"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "duplicate name found: %s"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "Successfully changed vm state of %s to %s"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/compute/api.py:71
#, python-format
-msgid "Failed to change vm state of %s to %s"
+msgid "Instance %d was not found in get_network_topic"
msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Finished retreving %s -- placed in %s"
+msgid "Instance %d has no host"
msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Connecting to libvirt: %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
+#: ../nova/compute/api.py:99
+#, python-format
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""
-#: nova/virt/libvirt_conn.py:229
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
+msgstr ""
+
+#: ../nova/compute/api.py:160
#, python-format
-msgid "instance %s: deleting instance files %s"
+msgid "Going to run %s instances..."
msgstr ""
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/compute/api.py:187
#, python-format
-msgid "No disk at %s"
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+#: ../nova/compute/api.py:292
+#, python-format
+msgid "Going to try to terminate %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:294
+#: ../nova/compute/api.py:296
#, python-format
-msgid "instance %s: rebooted"
+msgid "Instance %d was not found during terminate"
msgstr ""
-#: nova/virt/libvirt_conn.py:297
+#: ../nova/compute/api.py:301
#, python-format
-msgid "_wait_for_reboot failed: %s"
+msgid "Instance %d is already being terminated"
msgstr ""
-#: nova/virt/libvirt_conn.py:340
+#: ../nova/compute/api.py:481
#, python-format
-msgid "instance %s: rescued"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
msgstr ""
-#: nova/virt/libvirt_conn.py:343
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
+msgstr ""
+
+#: ../nova/rpc.py:98
#, python-format
-msgid "_wait_for_rescue failed: %s"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
msgstr ""
-#: nova/virt/libvirt_conn.py:370
+#: ../nova/rpc.py:103
#, python-format
-msgid "instance %s: is running"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
msgstr ""
-#: nova/virt/libvirt_conn.py:381
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr ""
+
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr ""
+
+#: ../nova/rpc.py:159
#, python-format
-msgid "instance %s: booted"
+msgid "Initing the Adapter Consumer for %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
+#: ../nova/rpc.py:178
#, python-format
-msgid "instance %s: failed to boot"
+msgid "received %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:395
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
#, python-format
-msgid "virsh said: %r"
+msgid "no method for message: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
+#: ../nova/rpc.py:192
+#, python-format
+msgid "No method for message: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:407
+#: ../nova/rpc.py:253
#, python-format
-msgid "data: %r, fpath: %r"
+msgid "Returning exception %s to caller"
msgstr ""
-#: nova/virt/libvirt_conn.py:415
+#: ../nova/rpc.py:294
#, python-format
-msgid "Contents of file %s: %r"
+msgid "unpacked context: %s"
+msgstr ""
+
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
msgstr ""
-#: nova/virt/libvirt_conn.py:449
+#: ../nova/rpc.py:316
#, python-format
-msgid "instance %s: Creating image"
+msgid "MSG_ID is %s"
+msgstr ""
+
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
msgstr ""
-#: nova/virt/libvirt_conn.py:505
+#: ../nova/rpc.py:364
#, python-format
-msgid "instance %s: injecting key into image %s"
+msgid "response %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:508
+#: ../nova/rpc.py:373
#, python-format
-msgid "instance %s: injecting net into image %s"
+msgid "topic is %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:516
+#: ../nova/rpc.py:374
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
+msgid "message %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
+#: ../nova/volume/driver.py:78
#, python-format
-msgid "instance %s: starting toXML method"
+msgid "Recovering from a failed execute. Try number %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:589
+#: ../nova/volume/driver.py:87
#, python-format
-msgid "instance %s: finished toXML method"
+msgid "volume group %s doesn't exist"
+msgstr ""
+
+#: ../nova/volume/driver.py:220
+#, python-format
+msgid "FAKE AOE: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
+#, python-format
+msgid "FAKE ISCSI: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:359
+#, python-format
+msgid "rbd has no pool %s"
msgstr ""
-#: nova/virt/xenapi_conn.py:113
+#: ../nova/volume/driver.py:414
+#, python-format
+msgid "Sheepdog is not working: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
+msgstr ""
+
+#: ../nova/wsgi.py:68
+#, python-format
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
+msgstr ""
+
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
+
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:123
+#, python-format
msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
msgstr ""
-#: nova/virt/xenapi_conn.py:263
+#: ../nova/virt/fake.py:239
#, python-format
-msgid "Task [%s] %s status: success %s"
+msgid "Instance %s Not Found"
msgstr ""
-#: nova/virt/xenapi_conn.py:271
+#: ../nova/network/manager.py:153
#, python-format
-msgid "Task [%s] %s status: %s %s"
+msgid "Dissassociated %s stale fixed ip(s)"
msgstr ""
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
+#: ../nova/network/manager.py:157
+msgid "setting network host"
+msgstr ""
+
+#: ../nova/network/manager.py:212
#, python-format
-msgid "Got exception: %s"
+msgid "Leasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:72
+#: ../nova/network/manager.py:216
#, python-format
-msgid "%s: _db_content => %s"
+msgid "IP %s leased that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
+#: ../nova/network/manager.py:220
+#, python-format
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:249
+#: ../nova/network/manager.py:228
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
+msgid "IP %s leased that was already deallocated"
msgstr ""
-#: nova/virt/xenapi/fake.py:283
+#: ../nova/network/manager.py:233
#, python-format
-msgid "Calling %s %s"
+msgid "Releasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:288
+#: ../nova/network/manager.py:237
#, python-format
-msgid "Calling getter %s"
+msgid "IP %s released that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:340
+#: ../nova/network/manager.py:241
#, python-format
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
+
+#: ../nova/network/manager.py:244
+#, python-format
+msgid "IP %s released that was not leased"
+msgstr ""
+
+#: ../nova/network/manager.py:519
msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:40
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Found non-unique network for bridge %s"
+msgid "Introducing %s..."
msgstr ""
-#: nova/virt/xenapi/network_utils.py:43
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Found no network for bridge %s"
+msgid "Introduced %(label)s as %(sr_ref)s."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:127
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Created VM %s as %s."
+msgid "Unable to find SR from VBD %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:147
+#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
+msgid "Forgetting SR %s ... "
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:149
+#: ../nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:165
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "VBD not found in instance %s"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:175
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Unable to unplug VBD %s"
+msgid "Forgetting SR %s done."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:187
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Unable to destroy VBD %s"
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:202
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "Creating VIF for VM %s, network %s."
+msgid "Unable to introduce VDI on SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:205
+#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
+msgid "Unable to get record of VDI %s on"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:216
+#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
+msgid "Unable to introduce VDI for SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:229
+#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Created snapshot %s from VM %s."
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:243
+#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
+msgid "Mountpoint cannot be translated: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:261
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "Asking xapi to fetch %s as %s"
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:279
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "Looking up vdi %s for PV kernel"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:290
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:318
+#: ../nova/objectstore/handler.py:106
#, python-format
-msgid "VDI %s is still available"
+msgid "Unknown S3 value type %r"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:331
+#: ../nova/objectstore/handler.py:137
+msgid "Authenticated request"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:182
+msgid "List of buckets requested"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:209
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgid "List keys for bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:333
+#: ../nova/objectstore/handler.py:217
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgid "Unauthorized attempt to access bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:390
+#: ../nova/objectstore/handler.py:235
#, python-format
-msgid "VHD %s has parent %s"
+msgid "Creating bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:407
+#: ../nova/objectstore/handler.py:245
#, python-format
-msgid "Re-scanning SR %s"
+msgid "Deleting bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:431
+#: ../nova/objectstore/handler.py:249
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+msgid "Unauthorized attempt to delete bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:448
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "No VDIs found for VM %s"
+msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:452
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:62
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Attempted to create non-unique name %s"
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:99
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "Starting VM %s..."
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:101
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "Spawning VM %s created %s."
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:112
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "Instance %s: booted"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:137
+#: ../nova/objectstore/handler.py:396
#, python-format
-msgid "Instance not present %s"
+msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:166
+#: ../nova/objectstore/handler.py:404
#, python-format
-msgid "Starting snapshot for VM %s"
+msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:174
+#: ../nova/objectstore/handler.py:409
#, python-format
-msgid "Unable to Snapshot %s: %s"
+msgid "Starting image upload: %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:184
+#: ../nova/objectstore/handler.py:423
#, python-format
-msgid "Finished snapshot and upload for VM %s"
+msgid "Not authorized to update attributes of image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:252
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "suspend: instance not present %s"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""
-#: nova/virt/xenapi/vmops.py:262
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
-msgid "resume: instance not present %s"
+msgid "Updating user fields on image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:271
+#: ../nova/objectstore/handler.py:450
#, python-format
-msgid "Instance not found %s"
+msgid "Unauthorized attempt to delete image %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:57
+#: ../nova/objectstore/handler.py:455
#, python-format
-msgid "Introducing %s..."
+msgid "Deleted image: %s"
+msgstr ""
+
+#: ../nova/auth/manager.py:259
+#, python-format
+msgid "Looking up user: %r"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:74
+#: ../nova/auth/manager.py:263
#, python-format
-msgid "Introduced %s as %s."
+msgid "Failed authorization for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
+#: ../nova/auth/manager.py:264
+#, python-format
+msgid "No user found for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:90
+#: ../nova/auth/manager.py:270
#, python-format
-msgid "Unable to find SR from VBD %s"
+msgid "Using project name = user name (%s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:96
+#: ../nova/auth/manager.py:277
#, python-format
-msgid "Forgetting SR %s ... "
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:101
+#: ../nova/auth/manager.py:279
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
+msgid "No project called %s could be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:107
+#: ../nova/auth/manager.py:287
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:111
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "Forgetting SR %s done."
+msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:113
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
+msgid "Invalid signature for user %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:123
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
+msgstr ""
+
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
+msgstr ""
+
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "Unable to introduce VDI on SR %s"
+msgid "The %s role can not be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:128
+#: ../nova/auth/manager.py:416
#, python-format
-msgid "Unable to get record of VDI %s on"
+msgid "The %s role is global only"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:146
+#: ../nova/auth/manager.py:420
#, python-format
-msgid "Unable to introduce VDI for SR %s"
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:175
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Unable to obtain target information %s, %s"
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:197
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Mountpoint cannot be translated: %s"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:51
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Attach_volume: %s, %s, %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:69
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
+msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:81
+#: ../nova/auth/manager.py:533
#, python-format
-msgid "Unable to use SR %s for instance %s"
+msgid "modifying project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:93
+#: ../nova/auth/manager.py:545
#, python-format
-msgid "Unable to attach volume to instance %s"
+msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:95
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Mountpoint %s attached to instance %s"
+msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:106
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Detach_volume: %s, %s"
+msgid "Deleting project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:113
+#: ../nova/auth/manager.py:650
#, python-format
-msgid "Unable to locate volume %s"
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:121
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Unable to detach volume %s"
+msgid "Deleting user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:128
+#: ../nova/auth/manager.py:669
#, python-format
-msgid "Mountpoint %s detached from instance %s"
+msgid "Access Key change for user %s"
msgstr ""
-#: nova/volume/api.py:44
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
+msgid "Secret Key change for user %s"
msgstr ""
-#: nova/volume/api.py:46
+#: ../nova/auth/manager.py:673
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
+msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
+#: ../nova/auth/manager.py:722
+#, python-format
+msgid "No vpn data for project %s"
msgstr ""
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
+#: ../nova/service.py:161
+#, python-format
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
msgstr ""
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
+msgstr ""
+
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr ""
+
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
msgstr ""
-#: nova/volume/driver.py:76
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr ""
+
+#: ../nova/auth/ldapdriver.py:174
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
+msgid "LDAP user %s already exists"
msgstr ""
-#: nova/volume/driver.py:85
+#: ../nova/auth/ldapdriver.py:205
#, python-format
-msgid "volume group %s doesn't exist"
+msgid "LDAP object for %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:210
+#: ../nova/auth/ldapdriver.py:348
#, python-format
-msgid "FAKE AOE: %s"
+msgid "User %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:315
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "FAKE ISCSI: %s"
+msgid "Group can't be created because group %s already exists"
msgstr ""
-#: nova/volume/manager.py:85
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Re-exporting %s volumes"
+msgid "Group can't be created because user %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:93
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "volume %s: creating"
+msgid "User %s can't be searched in group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:102
+#: ../nova/auth/ldapdriver.py:507
#, python-format
-msgid "volume %s: creating lv of size %sG"
+msgid "User %s can't be added to the group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:106
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
#, python-format
-msgid "volume %s: creating export"
+msgid "The group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:113
+#: ../nova/auth/ldapdriver.py:513
#, python-format
-msgid "volume %s: created successfully"
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
msgstr ""
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
+#: ../nova/auth/ldapdriver.py:524
+#, python-format
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
+#: ../nova/auth/ldapdriver.py:528
+#, python-format
+msgid "User %s is not a member of the group"
msgstr ""
-#: nova/volume/manager.py:124
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "volume %s: removing export"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
msgstr ""
-#: nova/volume/manager.py:126
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "volume %s: deleting"
+msgid "User %s can't be removed from all because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:129
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "volume %s: deleted successfully"
-msgstr "bind %s: slettet"
+msgid "Group at dn %s doesn't exist"
+msgstr ""
+
+#: ../nova/virt/xenapi/network_utils.py:40
+#, python-format
+msgid "Found non-unique network for bridge %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/network_utils.py:43
+#, python-format
+msgid "Found no network for bridge %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:97
+#, python-format
+msgid "Creating new user: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:105
+#, python-format
+msgid "Deleting user: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:131
+#, python-format
+msgid "Adding sitewide role %(role)s to user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:137
+#, python-format
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:141
+#, python-format
+msgid "Removing sitewide role %(role)s from user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:159
+#, python-format
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:177
+#, python-format
+msgid "Create project %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:190
+#, python-format
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:200
+#, python-format
+msgid "Delete project: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:214
+#, python-format
+msgid "Adding user %(user)s to project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
+msgstr ""
diff --git a/po/de.po b/po/de.po
index 3b30c2fa9..8b4a00d72 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,2131 +7,2883 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
-"PO-Revision-Date: 2011-02-09 10:49+0000\n"
-"Last-Translator: Christian Berendt <Unknown>\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
+"PO-Revision-Date: 2011-04-03 19:42+0000\n"
+"Last-Translator: Matthias Loidolt <kedapperdrake@googlemail.com>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-10 05:13+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-04-04 05:19+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr "Keine Computer gefunden."
+
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr "Unerwarteter Fehler bei Ausführung des Kommandos."
+
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
+"%(description)s\n"
+"Befehl: %(cmd)s\n"
+"Exit-Code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
+
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr "Nicht abgefangene Ausnahme"
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr ""
+
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
+msgstr ""
+
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr ""
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr ""
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:152
+#, python-format
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:238
+#, python-format
+msgid "Compute.api::lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:253
+#, python-format
+msgid "Compute.api::unlock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:267
+#, python-format
+msgid "Compute.api::get_lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:292
+#, python-format
+msgid "Compute.api::pause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:303
+#, python-format
+msgid "Compute.api::unpause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:314
+#, python-format
+msgid "compute.api::suspend %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:325
+#, python-format
+msgid "compute.api::resume %s"
+msgstr ""
+
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr ""
+
+#: ../nova/twistd.py:209
+#, python-format
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr "PID-Datei %s existiert nicht. Läuft der Daemon nicht?\n"
+
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr ""
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr ""
+
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr "Alle vorhandenen FLAGS:"
+
+#: ../nova/twistd.py:266
+#, python-format
+msgid "Starting %s"
+msgstr "%s wird gestartet"
+
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
+#, python-format
+msgid "Instance %s not found"
+msgstr ""
+
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
+#, python-format
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:91
+#, python-format
+msgid "Unable to attach volume to instance %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr ""
+
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
+#, python-format
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:112
+#, python-format
+msgid "Unable to locate volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:120
+#, python-format
+msgid "Unable to detach volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:127
+#, python-format
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr ""
+
+#: ../nova/crypto.py:46
msgid "Filename of root CA"
msgstr "Dateiname der Root CA"
-#: nova/crypto.py:49
+#: ../nova/crypto.py:49
msgid "Filename of private key"
msgstr "Dateiname des Private Key"
-#: nova/crypto.py:51
+#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
msgstr "Dateiname der Certificate Revocation List"
-#: nova/crypto.py:53
+#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr ""
-#: nova/crypto.py:55
+#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr ""
-#: nova/crypto.py:57
+#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr "Soll eine eigenständige CA für jedes Projekt verwendet werden?"
-#: nova/crypto.py:61
+#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr ""
-#: nova/crypto.py:66
+#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:71
+#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:258
+#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr ""
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
-msgstr "Unerwarteter Fehler bei Ausführung des Kommandos."
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr ""
-#: nova/exception.py:36
+#: ../nova/compute/manager.py:78
#, python-format
-msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-msgstr ""
-"%s\n"
-"Kommando: %s\n"
-"Exit Code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-
-#: nova/exception.py:86
-msgid "Uncaught exception"
-msgstr "Nicht abgefangene Ausnahme"
+msgid "check_instance_lock: decorating: |%s|"
+msgstr ""
-#: nova/fakerabbit.py:48
+#: ../nova/compute/manager.py:80
#, python-format
-msgid "(%s) publish (key: %s) %s"
-msgstr "(%s) öffentlich (Schlüssel: %s) %s"
+msgid ""
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
+msgstr ""
-#: nova/fakerabbit.py:53
+#: ../nova/compute/manager.py:84
#, python-format
-msgid "Publishing to route %s"
+msgid "check_instance_lock: locked: |%s|"
msgstr ""
-#: nova/fakerabbit.py:83
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "Declaring queue %s"
+msgid "check_instance_lock: admin: |%s|"
msgstr ""
-#: nova/fakerabbit.py:89
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Declaring exchange %s"
+msgid "check_instance_lock: executing: |%s|"
msgstr ""
-#: nova/fakerabbit.py:95
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Binding %s to %s with key %s"
+msgid "check_instance_lock: not executing |%s|"
msgstr ""
-#: nova/fakerabbit.py:120
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
+msgstr ""
+
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "Getting from %s: %s"
-msgstr "Beziehe von %s: %s"
+msgid "instance %s: starting..."
+msgstr ""
-#: nova/rpc.py:92
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+msgid "instance %s: Failed to spawn"
msgstr ""
-"Der AMQP server %s:%d ist nicht erreichbar. Erneuter Versuch in %d Sekunden."
-#: nova/rpc.py:99
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgid "Terminating instance %s"
msgstr ""
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
+#: ../nova/compute/manager.py:255
+#, python-format
+msgid "Deallocating address %s"
msgstr ""
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
+#: ../nova/compute/manager.py:268
+#, python-format
+msgid "trying to destroy already destroyed instance: %s"
msgstr ""
-#: nova/rpc.py:155
+#: ../nova/compute/manager.py:282
#, python-format
-msgid "Initing the Adapter Consumer for %s"
+msgid "Rebooting instance %s"
msgstr ""
-#: nova/rpc.py:170
+#: ../nova/compute/manager.py:287
#, python-format
-msgid "received %s"
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-#: nova/rpc.py:183
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "no method for message: %s"
-msgstr "keine Methode für diese Nachricht gefunden: %s"
+msgid "instance %s: snapshotting"
+msgstr ""
-#: nova/rpc.py:184
+#: ../nova/compute/manager.py:316
#, python-format
-msgid "No method for message: %s"
-msgstr "keine Methode für diese Nachricht gefunden: %s"
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
-#: nova/rpc.py:245
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "Returning exception %s to caller"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
msgstr ""
-#: nova/rpc.py:286
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "unpacked context: %s"
+msgid "instance %s: setting admin password"
msgstr ""
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
-msgstr "führe asynchronen Aufruf durch..."
+#: ../nova/compute/manager.py:353
+#, python-format
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
+msgstr ""
-#: nova/rpc.py:308
+#: ../nova/compute/manager.py:362
#, python-format
-msgid "MSG_ID is %s"
-msgstr "MSG_ID ist %s"
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
+msgstr ""
-#: nova/rpc.py:356
+#: ../nova/compute/manager.py:372
#, python-format
-msgid "response %s"
+msgid "instance %s: rescuing"
msgstr ""
-#: nova/rpc.py:365
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "topic is %s"
-msgstr "Betreff ist %s"
+msgid "instance %s: unrescuing"
+msgstr ""
-#: nova/rpc.py:366
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "message %s"
-msgstr "Nachricht %s"
+msgid "instance %s: pausing"
+msgstr ""
-#: nova/service.py:157
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "Starting %s node"
+msgid "instance %s: unpausing"
msgstr ""
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
+#: ../nova/compute/manager.py:440
+#, python-format
+msgid "instance %s: retrieving diagnostics"
msgstr ""
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
+#: ../nova/compute/manager.py:453
+#, python-format
+msgid "instance %s: suspending"
msgstr ""
-#: nova/service.py:202
-msgid "Recovered model server connection!"
+#: ../nova/compute/manager.py:472
+#, python-format
+msgid "instance %s: resuming"
msgstr ""
-#: nova/service.py:208
-msgid "model server went away"
+#: ../nova/compute/manager.py:491
+#, python-format
+msgid "instance %s: locking"
msgstr ""
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/compute/manager.py:503
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
+msgid "instance %s: unlocking"
msgstr ""
-"Datastore %s ist nicht erreichbar. Versuche es erneut in %d Sekunden."
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/compute/manager.py:513
#, python-format
-msgid "Serving %s"
+msgid "instance %s: getting locked state"
msgstr ""
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
-msgstr "Alle vorhandenen FLAGS:"
+#: ../nova/compute/manager.py:526
+#, python-format
+msgid "instance %s: reset network"
+msgstr ""
-#: nova/twistd.py:211
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
-msgstr "PID-Datei %s existiert nicht. Läuft der Daemon nicht?\n"
+msgid "Get console output for instance %s"
+msgstr ""
-#: nova/twistd.py:268
+#: ../nova/compute/manager.py:543
#, python-format
-msgid "Starting %s"
-msgstr "%s wird gestartet"
+msgid "instance %s: getting ajax console"
+msgstr ""
-#: nova/utils.py:53
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "Inner Exception: %s"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
msgstr ""
-#: nova/utils.py:54
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "Class %s cannot be found"
-msgstr "Klasse %s konnte nicht gefunden werden"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
+msgstr ""
-#: nova/utils.py:113
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Fetching %s"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
msgstr ""
-#: nova/utils.py:125
+#: ../nova/compute/manager.py:588
#, python-format
-msgid "Running cmd (subprocess): %s"
-msgstr "Führe Kommando (subprocess) aus: %s"
+msgid "Detaching volume from unknown instance %s"
+msgstr ""
-#: nova/utils.py:138
+#: ../nova/scheduler/simple.py:53
#, python-format
-msgid "Result was %s"
-msgstr "Ergebnis war %s"
+msgid "Host %s is not alive"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
+msgstr ""
-#: nova/utils.py:171
+#: ../nova/scheduler/simple.py:87
#, python-format
-msgid "debug in callback: %s"
+msgid "Host %s not available"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
msgstr ""
-#: nova/utils.py:176
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "Running %s"
+msgid "Re-exporting %s volumes"
msgstr ""
-#: nova/utils.py:207
+#: ../nova/volume/manager.py:90
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
+msgid "volume %s: skipping export"
msgstr ""
-#: nova/utils.py:289
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Invalid backend: %s"
+msgid "volume %s: creating"
+msgstr "Volume %s: wird erstellt"
+
+#: ../nova/volume/manager.py:108
+#, python-format
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
msgstr ""
-#: nova/utils.py:300
+#: ../nova/volume/manager.py:112
#, python-format
-msgid "backend %s"
+msgid "volume %s: creating export"
+msgstr "Volume %s: erstelle Export"
+
+#: ../nova/volume/manager.py:123
+#, python-format
+msgid "volume %s: created successfully"
+msgstr "Volume %s: erfolgreich erstellt"
+
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
msgstr ""
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
msgstr ""
-#: nova/api/ec2/__init__.py:142
+#: ../nova/volume/manager.py:136
#, python-format
-msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
+msgid "volume %s: removing export"
+msgstr "Volume %s: entferne Export"
+
+#: ../nova/volume/manager.py:138
+#, python-format
+msgid "volume %s: deleting"
+msgstr "Volume %s: wird entfernt"
+
+#: ../nova/volume/manager.py:147
+#, python-format
+msgid "volume %s: deleted successfully"
+msgstr "Volume %s: erfolgreich entfernt"
+
+#: ../nova/virt/xenapi/fake.py:74
+#, python-format
+msgid "%(text)s: _db_content => %(content)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
msgstr ""
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#: ../nova/virt/xenapi/fake.py:306
#, python-format
-msgid "Authentication Failure: %s"
+msgid "xenapi.fake does not have an implementation for %s"
msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/virt/xenapi/fake.py:341
#, python-format
-msgid "Authenticated Request For %s:%s)"
+msgid "Calling %(localname)s %(impl)s"
msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/virt/xenapi/fake.py:346
#, python-format
-msgid "action: %s"
+msgid "Calling getter %s"
msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/virt/xenapi/fake.py:406
#, python-format
-msgid "arg: %s\t\tval: %s"
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
+msgstr ""
+
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/tests/test_cloud.py:268
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
+msgid "Need to watch instance %s until it's running..."
+msgstr ""
+
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
msgstr ""
-#: nova/api/ec2/__init__.py:339
+#: ../nova/network/linux_net.py:187
#, python-format
-msgid "NotFound raised: %s"
+msgid "Starting VLAN inteface %s"
msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/network/linux_net.py:208
#, python-format
-msgid "ApiError raised: %s"
+msgid "Starting Bridge interface for %s"
msgstr ""
-#: nova/api/ec2/__init__.py:349
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
#, python-format
-msgid "Unexpected error raised: %s"
+msgid "Hupping dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
+#: ../nova/network/linux_net.py:316
+#, python-format
+msgid "Pid %d is stale, relaunching dnsmasq"
msgstr ""
-#: nova/api/ec2/admin.py:84
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
#, python-format
-msgid "Creating new user: %s"
+msgid "killing radvd threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:92
+#: ../nova/network/linux_net.py:360
#, python-format
-msgid "Deleting user: %s"
+msgid "Pid %d is stale, relaunching radvd"
msgstr ""
-#: nova/api/ec2/admin.py:114
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
#, python-format
-msgid "Adding role %s to user %s for project %s"
+msgid "Killing dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/utils.py:58
#, python-format
-msgid "Adding sitewide role %s to user %s"
+msgid "Inner Exception: %s"
msgstr ""
-#: nova/api/ec2/admin.py:122
+#: ../nova/utils.py:59
+#, python-format
+msgid "Class %s cannot be found"
+msgstr "Klasse %s konnte nicht gefunden werden"
+
+#: ../nova/utils.py:118
#, python-format
-msgid "Removing role %s from user %s for project %s"
+msgid "Fetching %s"
msgstr ""
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/utils.py:130
+#, python-format
+msgid "Running cmd (subprocess): %s"
+msgstr "Führe Kommando (subprocess) aus: %s"
+
+#: ../nova/utils.py:143 ../nova/utils.py:183
+#, python-format
+msgid "Result was %s"
+msgstr "Ergebnis war %s"
+
+#: ../nova/utils.py:159
#, python-format
-msgid "Removing sitewide role %s from user %s"
+msgid "Running cmd (SSH): %s"
msgstr ""
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
+#: ../nova/utils.py:217
+#, python-format
+msgid "debug in callback: %s"
msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/utils.py:222
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
+msgid "Running %s"
msgstr ""
-#: nova/api/ec2/admin.py:159
+#: ../nova/utils.py:262
#, python-format
-msgid "Create project %s managed by %s"
+msgid "Link Local address is not found.:%s"
msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/utils.py:265
#, python-format
-msgid "Delete project: %s"
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
msgstr ""
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/utils.py:363
#, python-format
-msgid "Adding user %s to project %s"
+msgid "Invalid backend: %s"
msgstr ""
-#: nova/api/ec2/admin.py:188
+#: ../nova/utils.py:374
#, python-format
-msgid "Removing user %s from project %s"
+msgid "backend %s"
msgstr ""
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/fakerabbit.py:49
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:117
+#: ../nova/fakerabbit.py:54
#, python-format
-msgid "Generating root CA: %s"
+msgid "Publishing to route %s"
msgstr ""
-#: nova/api/ec2/cloud.py:277
+#: ../nova/fakerabbit.py:84
#, python-format
-msgid "Create key pair %s"
+msgid "Declaring queue %s"
msgstr ""
-#: nova/api/ec2/cloud.py:285
+#: ../nova/fakerabbit.py:90
#, python-format
-msgid "Delete key pair %s"
+msgid "Declaring exchange %s"
msgstr ""
-#: nova/api/ec2/cloud.py:357
+#: ../nova/fakerabbit.py:96
#, python-format
-msgid "%s is not a valid ipProtocol"
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
msgstr ""
-#: nova/api/ec2/cloud.py:361
-msgid "Invalid port range"
+#: ../nova/fakerabbit.py:121
+#, python-format
+msgid "Getting from %(queue)s: %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:392
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
-msgid "Revoke security group ingress %s"
+msgid "Created VM %s..."
msgstr ""
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
-msgid "No rule for the specified parameters."
+#: ../nova/virt/xenapi/vm_utils.py:138
+#, python-format
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:421
+#: ../nova/virt/xenapi/vm_utils.py:168
#, python-format
-msgid "Authorize security group ingress %s"
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
msgstr ""
-#: nova/api/ec2/cloud.py:432
+#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
-msgid "This rule already exists in group %s"
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:460
+#: ../nova/virt/xenapi/vm_utils.py:187
#, python-format
-msgid "Create Security Group %s"
+msgid "VBD not found in instance %s"
msgstr ""
-#: nova/api/ec2/cloud.py:463
+#: ../nova/virt/xenapi/vm_utils.py:197
#, python-format
-msgid "group %s already exists"
+msgid "Unable to unplug VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:475
+#: ../nova/virt/xenapi/vm_utils.py:209
#, python-format
-msgid "Delete security group %s"
+msgid "Unable to destroy VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
+#: ../nova/virt/xenapi/vm_utils.py:224
#, python-format
-msgid "Get console output for instance %s"
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:543
+#: ../nova/virt/xenapi/vm_utils.py:227
#, python-format
-msgid "Create volume of %s GB"
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:567
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:579
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "Detach volume %s"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
msgstr ""
-#: nova/api/ec2/cloud.py:686
-msgid "Allocate address"
+#: ../nova/virt/xenapi/vm_utils.py:272
+#, python-format
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:691
+#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
-msgid "Release address %s"
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
msgstr ""
-#: nova/api/ec2/cloud.py:696
+#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
-msgid "Associate address %s to instance %s"
+msgid "Size for image %(image)s:%(virtual_size)d"
msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/virt/xenapi/vm_utils.py:332
#, python-format
-msgid "Disassociate address %s"
+msgid "Glance image %s"
msgstr ""
-#: nova/api/ec2/cloud.py:730
-msgid "Going to start terminating instances"
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
+#, python-format
+msgid "Copying VDI %s to /boot/guest on dom0"
msgstr ""
-#: nova/api/ec2/cloud.py:738
+#: ../nova/virt/xenapi/vm_utils.py:352
#, python-format
-msgid "Reboot instance %r"
+msgid "Kernel/Ramdisk VDI %s destroyed"
msgstr ""
-#: nova/api/ec2/cloud.py:775
+#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
-msgid "De-registering image %s"
+msgid "Asking xapi to fetch %(url)s as %(access)s"
msgstr ""
-#: nova/api/ec2/cloud.py:783
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
#, python-format
-msgid "Registered image %s with id %s"
+msgid "Looking up vdi %s for PV kernel"
msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid "attribute not supported: %s"
+msgid "PV Kernel in VDI:%s"
msgstr ""
-#: nova/api/ec2/cloud.py:794
+#: ../nova/virt/xenapi/vm_utils.py:405
#, python-format
-msgid "invalid id: %s"
+msgid "Running pygrub against %s"
msgstr ""
-#: nova/api/ec2/cloud.py:807
-msgid "user or group not specified"
+#: ../nova/virt/xenapi/vm_utils.py:411
+#, python-format
+msgid "Found Xen kernel %s"
msgstr ""
-#: nova/api/ec2/cloud.py:809
-msgid "only group \"all\" is supported"
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
msgstr ""
-#: nova/api/ec2/cloud.py:811
-msgid "operation_type must be add or remove"
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
+#, python-format
+msgid "duplicate name found: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:812
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "Updating image %s publicity"
+msgid "VDI %s is still available"
msgstr ""
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "Failed to get metadata for ip: %s"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "Caught error: %s"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
msgstr ""
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
+#: ../nova/virt/xenapi/vm_utils.py:525
+#, python-format
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "Compute.api::lock %s"
+msgid "Re-scanning SR %s"
msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "Compute.api::unlock %s"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "Compute.api::get_lock %s"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
msgstr ""
-#: nova/api/openstack/servers.py:224
+#: ../nova/virt/xenapi/vm_utils.py:590
#, python-format
-msgid "Compute.api::pause %s"
+msgid "No VDIs found for VM %s"
msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../nova/virt/xenapi/vm_utils.py:594
#, python-format
-msgid "Compute.api::unpause %s"
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
-msgid "compute.api::suspend %s"
+msgid "Creating VBD for VDI %s ... "
msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
-msgid "compute.api::resume %s"
+msgid "Creating VBD for VDI %s done."
msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
#, python-format
-msgid "User %s already exists"
+msgid "Plugging VBD %s ... "
msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
+msgid "Plugging VBD %s done."
msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../nova/virt/xenapi/vm_utils.py:661
#, python-format
-msgid "Project can't be created because project %s already exists"
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vm_utils.py:664
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
msgstr ""
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
-msgid "User \"%s\" not found"
+msgid "Destroying VBD for VDI %s ... "
msgstr ""
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
-msgid "Project \"%s\" not found"
+msgid "Destroying VBD for VDI %s done."
msgstr ""
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
msgstr ""
-#: nova/auth/ldapdriver.py:181
-#, python-format
-msgid "LDAP object for %s doesn't exist"
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
msgstr ""
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
-msgid "User %s is already a member of the group %s"
+msgid "Ignoring XenAPI.Failure %s"
msgstr ""
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""
-#: nova/auth/ldapdriver.py:528
+#: ../nova/virt/xenapi/vm_utils.py:747
#, python-format
-msgid "Group at dn %s doesn't exist"
+msgid "Writing partition table %s done."
msgstr ""
-#: nova/auth/manager.py:259
+#: ../nova/tests/test_rpc.py:89
#, python-format
-msgid "Looking up user: %r"
+msgid "Nested received %(queue)s, %(value)s"
msgstr ""
-#: nova/auth/manager.py:263
+#: ../nova/tests/test_rpc.py:95
#, python-format
-msgid "Failed authorization for access key %s"
+msgid "Nested return %s"
msgstr ""
-#: nova/auth/manager.py:264
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
#, python-format
-msgid "No user found for access key %s"
+msgid "Received %s"
msgstr ""
-#: nova/auth/manager.py:270
-#, python-format
-msgid "Using project name = user name (%s)"
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
msgstr ""
-#: nova/auth/manager.py:275
+#: ../nova/db/sqlalchemy/api.py:133
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
+msgid "No service for id %s"
msgstr ""
-#: nova/auth/manager.py:277
+#: ../nova/db/sqlalchemy/api.py:251
#, python-format
-msgid "No project called %s could be found"
+msgid "No service for %(host)s, %(binary)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/db/sqlalchemy/api.py:608
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "No floating ip for address %s"
msgstr ""
-#: nova/auth/manager.py:283
+#: ../nova/db/sqlalchemy/api.py:629
#, python-format
-msgid "User %s is not a member of project %s"
+msgid "No address for instance %s"
msgstr ""
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/db/sqlalchemy/api.py:961
#, python-format
-msgid "Invalid signature for user %s"
+msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
+#, python-format
+msgid "No network for id %s"
msgstr ""
-#: nova/auth/manager.py:374
-msgid "Must specify project"
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
msgstr ""
-#: nova/auth/manager.py:408
+#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
-msgid "The %s role can not be found"
+msgid "No network for bridge %s"
msgstr ""
-#: nova/auth/manager.py:410
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
#, python-format
-msgid "The %s role is global only"
+msgid "No network for instance %s"
msgstr ""
-#: nova/auth/manager.py:412
+#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
-msgid "Adding role %s to user %s in project %s"
+msgid "Token %s does not exist"
msgstr ""
-#: nova/auth/manager.py:438
+#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
-msgid "Removing role %s from user %s on project %s"
+msgid "No quota for project_id %s"
msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
#, python-format
-msgid "Created project %s with manager %s"
+msgid "Volume %s not found"
msgstr ""
-#: nova/auth/manager.py:523
+#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
-msgid "modifying project %s"
+msgid "No export device found for volume %s"
msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
-msgid "Remove user %s from project %s"
+msgid "No target id found for volume %s"
msgstr ""
-#: nova/auth/manager.py:581
+#: ../nova/db/sqlalchemy/api.py:1572
#, python-format
-msgid "Deleting project %s"
+msgid "No security group with id %s"
msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/db/sqlalchemy/api.py:1589
#, python-format
-msgid "Created user %s (admin: %r)"
+msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/db/sqlalchemy/api.py:1682
#, python-format
-msgid "Deleting user %s"
+msgid "No secuity group rule with id %s"
msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/db/sqlalchemy/api.py:1756
#, python-format
-msgid "Access Key change for user %s"
+msgid "No user for id %s"
msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/db/sqlalchemy/api.py:1772
#, python-format
-msgid "Secret Key change for user %s"
+msgid "No user for access key %s"
msgstr ""
-#: nova/auth/manager.py:659
+#: ../nova/db/sqlalchemy/api.py:1834
#, python-format
-msgid "Admin status set to %r for user %s"
+msgid "No project with id %s"
msgstr ""
-#: nova/auth/manager.py:708
+#: ../nova/db/sqlalchemy/api.py:1979
#, python-format
-msgid "No vpn data for project %s"
+msgid "No console pool with id %(pool_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/db/sqlalchemy/api.py:1996
+#, python-format
+msgid ""
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:2035
+#, python-format
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:2057
+#, python-format
+msgid "on instance %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
-msgid "Launching VPN for %s"
+msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""
-#: nova/compute/api.py:67
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
-msgid "Instance %d was not found in get_network_topic"
+msgid "No zone with id %(zone_id)s"
msgstr ""
-#: nova/compute/api.py:73
+#: ../nova/virt/libvirt_conn.py:160
#, python-format
-msgid "Instance %d has no host"
+msgid "Checking state of %s"
msgstr ""
-#: nova/compute/api.py:92
+#: ../nova/virt/libvirt_conn.py:165
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
+msgid "Current state of %(name)s was %(state)s."
msgstr ""
-#: nova/compute/api.py:94
+#: ../nova/virt/libvirt_conn.py:183
#, python-format
-msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+msgid "Connecting to libvirt: %s"
msgstr ""
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/virt/libvirt_conn.py:258
#, python-format
-msgid "Going to run %s instances..."
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/virt/libvirt_conn.py:283
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
+msgid "Invalid device path %s"
msgstr ""
-#: nova/compute/api.py:279
+#: ../nova/virt/libvirt_conn.py:313
#, python-format
-msgid "Going to try and terminate %s"
+msgid "No disk at %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
msgstr ""
-#: nova/compute/api.py:283
+#: ../nova/virt/libvirt_conn.py:336
#, python-format
-msgid "Instance %d was not found during terminate"
+msgid "instance %s: rebooted"
msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/virt/libvirt_conn.py:339
#, python-format
-msgid "Instance %d is already being terminated"
+msgid "_wait_for_reboot failed: %s"
msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/virt/libvirt_conn.py:382
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "instance %s: rescued"
msgstr ""
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
+#: ../nova/virt/libvirt_conn.py:385
+#, python-format
+msgid "_wait_for_rescue failed: %s"
msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "instance %s: is running"
msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "instance %s: booted"
msgstr ""
-#: nova/compute/disk.py:128
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid "Could not attach image to loopback: %s"
+msgid "instance %s: failed to boot"
msgstr ""
-#: nova/compute/disk.py:136
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "Failed to load partition: %s"
+msgid "virsh said: %r"
msgstr ""
-#: nova/compute/disk.py:158
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:448
#, python-format
-msgid "Failed to mount filesystem: %s"
+msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""
-#: nova/compute/instance_types.py:41
+#: ../nova/virt/libvirt_conn.py:456
#, python-format
-msgid "Unknown instance type: %s"
+msgid "Contents of file %(fpath)s: %(contents)r"
msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:563
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
+msgid "instance %s: Creating image"
msgstr ""
-#: nova/compute/manager.py:71
+#: ../nova/virt/libvirt_conn.py:646
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:75
+#: ../nova/virt/libvirt_conn.py:649
#, python-format
-msgid "check_instance_lock: locked: |%s|"
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:77
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
#, python-format
-msgid "check_instance_lock: admin: |%s|"
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
msgstr ""
-#: nova/compute/manager.py:82
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
#, python-format
-msgid "check_instance_lock: executing: |%s|"
+msgid "instance %s: starting toXML method"
msgstr ""
-#: nova/compute/manager.py:86
+#: ../nova/virt/libvirt_conn.py:732
#, python-format
-msgid "check_instance_lock: not executing |%s|"
+msgid "instance %s: finished toXML method"
msgstr ""
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
msgstr ""
-#: nova/compute/manager.py:158
+#: ../nova/virt/libvirt_conn.py:1225
#, python-format
-msgid "instance %s: starting..."
+msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""
-#: nova/compute/manager.py:197
+#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
-msgid "instance %s: Failed to spawn"
+msgid "Failed to get metadata for ip: %s"
+msgstr ""
+
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
msgstr ""
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/network/api.py:39
#, python-format
-msgid "Terminating instance %s"
+msgid "Quota exceeeded for %s, tried to allocate address"
msgstr ""
-#: nova/compute/manager.py:217
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
+msgstr ""
+
+#: ../nova/tests/test_volume.py:162
#, python-format
-msgid "Disassociating address %s"
+msgid "Target %s allocated"
msgstr ""
-#: nova/compute/manager.py:230
+#: ../nova/virt/images.py:70
#, python-format
-msgid "Deallocating address %s"
+msgid "Finished retreving %(url)s -- placed in %(path)s"
+msgstr ""
+
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
msgstr ""
-#: nova/compute/manager.py:243
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
+
+#: ../nova/api/direct.py:149
+msgid "not available"
msgstr ""
-#: nova/compute/manager.py:257
+#: ../nova/api/ec2/cloud.py:62
#, python-format
-msgid "Rebooting instance %s"
+msgid "The key_pair %s already exists"
msgstr ""
-#: nova/compute/manager.py:260
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Generating root CA: %s"
msgstr ""
-#: nova/compute/manager.py:286
+#: ../nova/api/ec2/cloud.py:303
#, python-format
-msgid "instance %s: snapshotting"
+msgid "Create key pair %s"
msgstr ""
-#: nova/compute/manager.py:289
+#: ../nova/api/ec2/cloud.py:311
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Delete key pair %s"
msgstr ""
-#: nova/compute/manager.py:301
+#: ../nova/api/ec2/cloud.py:386
#, python-format
-msgid "instance %s: rescuing"
+msgid "%s is not a valid ipProtocol"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:390
+msgid "Invalid port range"
msgstr ""
-#: nova/compute/manager.py:316
+#: ../nova/api/ec2/cloud.py:421
#, python-format
-msgid "instance %s: unrescuing"
+msgid "Revoke security group ingress %s"
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:443
+msgid "No rule for the specified parameters."
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:450
#, python-format
-msgid "instance %s: pausing"
+msgid "Authorize security group ingress %s"
msgstr ""
-#: nova/compute/manager.py:352
+#: ../nova/api/ec2/cloud.py:464
#, python-format
-msgid "instance %s: unpausing"
+msgid "This rule already exists in group %s"
msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/api/ec2/cloud.py:492
#, python-format
-msgid "instance %s: retrieving diagnostics"
+msgid "Create Security Group %s"
msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/api/ec2/cloud.py:495
#, python-format
-msgid "instance %s: suspending"
+msgid "group %s already exists"
msgstr ""
-#: nova/compute/manager.py:401
+#: ../nova/api/ec2/cloud.py:507
#, python-format
-msgid "instance %s: resuming"
+msgid "Delete security group %s"
msgstr ""
-#: nova/compute/manager.py:420
+#: ../nova/api/ec2/cloud.py:584
#, python-format
-msgid "instance %s: locking"
+msgid "Create volume of %s GB"
msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/api/ec2/cloud.py:612
#, python-format
-msgid "instance %s: unlocking"
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""
-#: nova/compute/manager.py:442
+#: ../nova/api/ec2/cloud.py:629
#, python-format
-msgid "instance %s: getting locked state"
+msgid "Detach volume %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:761
+msgid "Allocate address"
msgstr ""
-#: nova/compute/manager.py:462
+#: ../nova/api/ec2/cloud.py:766
#, python-format
-msgid "instance %s: attaching volume %s to %s"
+msgid "Release address %s"
msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "instance %s: attach failed %s, removing"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/api/ec2/cloud.py:780
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
+msgid "Disassociate address %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:807
+msgid "Going to start terminating instances"
msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/api/ec2/cloud.py:815
#, python-format
-msgid "Detaching volume from unknown instance %s"
+msgid "Reboot instance %r"
msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/api/ec2/cloud.py:867
#, python-format
-msgid "updating %s..."
+msgid "De-registering image %s"
msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
+#: ../nova/api/ec2/cloud.py:875
+#, python-format
+msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""
-#: nova/compute/monitor.py:355
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
+msgid "attribute not supported: %s"
msgstr ""
-#: nova/compute/monitor.py:377
+#: ../nova/api/ec2/cloud.py:890
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
+msgid "invalid id: %s"
msgstr ""
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
+#: ../nova/api/ec2/cloud.py:903
+msgid "user or group not specified"
msgstr ""
-#: nova/compute/monitor.py:427
+#: ../nova/api/ec2/cloud.py:905
+msgid "only group \"all\" is supported"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:907
+msgid "operation_type must be add or remove"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:908
#, python-format
-msgid "Found instance: %s"
+msgid "Updating image %s publicity"
msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
+#: ../bin/nova-api.py:52
+#, python-format
+msgid "Using paste.deploy config at: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:132
+#: ../bin/nova-api.py:57
#, python-format
-msgid "No service for id %s"
+msgid "No paste configuration for app: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../bin/nova-api.py:59
#, python-format
-msgid "No service for %s, %s"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../bin/nova-api.py:64
#, python-format
-msgid "No floating ip for address %s"
+msgid "Running %s API"
msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../bin/nova-api.py:69
#, python-format
-msgid "No instance for id %s"
+msgid "No known API applications configured in %s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../bin/nova-api.py:83
#, python-format
-msgid "Instance %s not found"
+msgid "Starting nova-api node (version %s)"
msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../bin/nova-api.py:89
#, python-format
-msgid "no keypair for user %s, name %s"
+msgid "No paste configuration found for: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "No network for id %s"
+msgid "Argument %(key)s value %(value)s is too short."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1036
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "No network for bridge %s"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "No network for instance %s"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "Token %s does not exist"
+msgid "Argument %s is required."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1205
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "No quota for project_id %s"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1356
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "No volume for id %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1401
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "Volume %s not found"
+msgid "Attempted to create non-unique name %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1413
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "No export device found for volume %s"
+msgid "instance %(name)s: not enough free memory"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1426
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "No target id found for volume %s"
+msgid "Starting VM %s..."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "No security group with id %s"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "No security group named %s for project: %s"
+msgid "Invalid value for onset_files: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "No secuity group rule with id %s"
+msgid "Injecting file path: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "No user for id %s"
+msgid "Instance %s: booted"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1666
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "No user for access key %s"
+msgid "Instance not present %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "No project with id %s"
+msgid "Starting snapshot for VM %s"
msgstr ""
-#: nova/image/glance.py:78
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""
-#: nova/image/glance.py:97
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid "Finished snapshot and upload for VM %s"
msgstr ""
-#: nova/image/s3.py:82
+#: ../nova/virt/xenapi/vmops.py:356
#, python-format
-msgid "Image %s could not be found"
+msgid "VM %(vm)s already halted, skipping shutdown..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
msgstr ""
-#: nova/network/api.py:39
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../nova/virt/xenapi/vmops.py:564
+#, python-format
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:176
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "Starting VLAN inteface %s"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:186
+#: ../nova/virt/xenapi/vmops.py:760
#, python-format
-msgid "Starting Bridge interface for %s"
+msgid "OpenSSL error: %s"
msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "Hupping dnsmasq threw %s"
+msgid "Running instances: %s"
msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
+msgid "After terminating instances: %s"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
msgstr ""
-#: nova/network/linux_net.py:334
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "Killing dnsmasq threw %s"
+msgid "Launching VPN for %s"
msgstr ""
-#: nova/network/manager.py:135
-msgid "setting network host"
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
msgstr ""
-#: nova/network/manager.py:190
+#: ../nova/image/s3.py:99
#, python-format
-msgid "Leasing IP %s"
+msgid "Image %s could not be found"
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
msgstr ""
-#: nova/network/manager.py:197
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
+msgid "Authentication Failure: %s"
msgstr ""
-#: nova/network/manager.py:205
+#: ../nova/api/ec2/__init__.py:182
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "IP %s released that isn't associated"
+msgid "action: %s"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/api/ec2/__init__.py:209
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "IP %s released that was not leased"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid "InstanceNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/api/ec2/__init__.py:320
#, python-format
-msgid "Unknown S3 value type %r"
+msgid "VolumeNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:137
-msgid "Authenticated request"
+#: ../nova/api/ec2/__init__.py:326
+#, python-format
+msgid "NotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:182
-msgid "List of buckets requested"
+#: ../nova/api/ec2/__init__.py:329
+#, python-format
+msgid "ApiError raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:209
+#: ../nova/api/ec2/__init__.py:338
#, python-format
-msgid "List keys for bucket %s"
+msgid "Unexpected error raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:217
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
+msgstr ""
+
+#: ../nova/auth/dbdriver.py:84
#, python-format
-msgid "Unauthorized attempt to access bucket %s"
+msgid "User %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:235
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
#, python-format
-msgid "Creating bucket %s"
+msgid "Project can't be created because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:245
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
-msgid "Deleting bucket %s"
+msgid "Project can't be created because user %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:249
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
-msgid "Unauthorized attempt to delete bucket %s"
+msgid "Project can't be created because project %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:271
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Getting object: %s / %s"
+msgid "Project can't be modified because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/auth/dbdriver.py:245
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "User \"%s\" not found"
msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/auth/dbdriver.py:248
#, python-format
-msgid "Putting object: %s / %s"
+msgid "Project \"%s\" not found"
+msgstr ""
+
+#: ../nova/virt/xenapi_conn.py:129
+msgid ""
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/virt/xenapi_conn.py:311
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
msgstr ""
-#: nova/objectstore/handler.py:314
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Deleting object: %s / %s"
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Not authorized to upload image: invalid directory %s"
+msgid "Got exception: %s"
msgstr ""
-#: nova/objectstore/handler.py:401
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Not authorized to upload image: unauthorized bucket %s"
+msgid "updating %s..."
+msgstr ""
+
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
msgstr ""
-#: nova/objectstore/handler.py:406
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Starting image upload: %s"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:420
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Not authorized to update attributes of image %s"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
+msgstr ""
+
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
msgstr ""
-#: nova/objectstore/handler.py:428
+#: ../nova/compute/monitor.py:429
#, python-format
-msgid "Toggling publicity flag of image %s %r"
+msgid "Found instance: %s"
msgstr ""
-#: nova/objectstore/handler.py:433
+#: ../nova/volume/san.py:67
#, python-format
-msgid "Updating user fields on image %s"
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-#: nova/objectstore/handler.py:447
+#: ../nova/api/ec2/apirequest.py:100
#, python-format
-msgid "Unauthorized attempt to delete image %s"
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""
-#: nova/objectstore/handler.py:452
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Deleted image: %s"
+msgid "Caught error: %s"
msgstr ""
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
msgstr ""
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
msgstr ""
-#: nova/scheduler/manager.py:69
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "Re-wrote %s"
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
msgstr ""
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
+#: ../nova/console/xvp.py:141
+#, python-format
+msgid "Error starting xvp: %s"
msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
msgstr ""
-#: nova/tests/test_cloud.py:210
-#, python-format
-msgid "Need to watch instance %s until it's running..."
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
msgstr ""
-#: nova/tests/test_compute.py:104
-#, python-format
-msgid "Running instances: %s"
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
msgstr ""
-#: nova/tests/test_compute.py:110
-#, python-format
-msgid "After terminating instances: %s"
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
+msgstr ""
+
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
+msgstr ""
+
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
+msgstr ""
+
+#: ../bin/nova-manage.py:448
+msgid "IP address"
+msgstr ""
+
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
+msgstr ""
+
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../nova/virt/disk.py:69
#, python-format
-msgid "Nested received %s, %s"
+msgid "Failed to load partition: %s"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../nova/virt/disk.py:91
#, python-format
-msgid "Nested return %s"
+msgid "Failed to mount filesystem: %s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Received %s"
+msgid "nbd device %s did not show up"
msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "Target %s allocated"
+msgid "Could not attach image to loopback: %s"
msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
msgstr ""
-#: nova/virt/fake.py:210
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "Instance %s Not Found"
+msgid "%(filename)s, line %(line_info)d"
msgstr ""
-#: nova/virt/hyperv.py:118
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr ""
-#: nova/virt/hyperv.py:152
+#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
-#, python-format
-msgid "Created VM %s..."
-msgstr ""
-
-#: nova/virt/hyperv.py:188
+#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:198
+#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""
-#: nova/virt/hyperv.py:227
+#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:272
+#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "Created switch port %s on switch %s"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "Del: disk %s vm %s"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "duplicate name found: %s"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "Successfully changed vm state of %s to %s"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/compute/api.py:71
#, python-format
-msgid "Failed to change vm state of %s to %s"
+msgid "Instance %d was not found in get_network_topic"
msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Finished retreving %s -- placed in %s"
+msgid "Instance %d has no host"
msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Connecting to libvirt: %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
+#: ../nova/compute/api.py:99
+#, python-format
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""
-#: nova/virt/libvirt_conn.py:229
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
+msgstr ""
+
+#: ../nova/compute/api.py:160
#, python-format
-msgid "instance %s: deleting instance files %s"
+msgid "Going to run %s instances..."
msgstr ""
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/compute/api.py:187
#, python-format
-msgid "No disk at %s"
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+#: ../nova/compute/api.py:292
+#, python-format
+msgid "Going to try to terminate %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:294
+#: ../nova/compute/api.py:296
#, python-format
-msgid "instance %s: rebooted"
+msgid "Instance %d was not found during terminate"
msgstr ""
-#: nova/virt/libvirt_conn.py:297
+#: ../nova/compute/api.py:301
#, python-format
-msgid "_wait_for_reboot failed: %s"
+msgid "Instance %d is already being terminated"
msgstr ""
-#: nova/virt/libvirt_conn.py:340
+#: ../nova/compute/api.py:481
#, python-format
-msgid "instance %s: rescued"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgstr ""
+
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
msgstr ""
-#: nova/virt/libvirt_conn.py:343
+#: ../nova/rpc.py:98
#, python-format
-msgid "_wait_for_rescue failed: %s"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
msgstr ""
-#: nova/virt/libvirt_conn.py:370
+#: ../nova/rpc.py:103
#, python-format
-msgid "instance %s: is running"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
msgstr ""
-#: nova/virt/libvirt_conn.py:381
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr ""
+
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr ""
+
+#: ../nova/rpc.py:159
#, python-format
-msgid "instance %s: booted"
+msgid "Initing the Adapter Consumer for %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
+#: ../nova/rpc.py:178
#, python-format
-msgid "instance %s: failed to boot"
+msgid "received %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:395
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
#, python-format
-msgid "virsh said: %r"
+msgid "no method for message: %s"
+msgstr "keine Methode für diese Nachricht gefunden: %s"
+
+#: ../nova/rpc.py:192
+#, python-format
+msgid "No method for message: %s"
+msgstr "keine Methode für diese Nachricht gefunden: %s"
+
+#: ../nova/rpc.py:253
+#, python-format
+msgid "Returning exception %s to caller"
msgstr ""
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
+#: ../nova/rpc.py:294
+#, python-format
+msgid "unpacked context: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:407
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
+msgstr "führe asynchronen Aufruf durch..."
+
+#: ../nova/rpc.py:316
#, python-format
-msgid "data: %r, fpath: %r"
+msgid "MSG_ID is %s"
+msgstr "MSG_ID ist %s"
+
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
msgstr ""
-#: nova/virt/libvirt_conn.py:415
+#: ../nova/rpc.py:364
#, python-format
-msgid "Contents of file %s: %r"
+msgid "response %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:449
+#: ../nova/rpc.py:373
#, python-format
-msgid "instance %s: Creating image"
+msgid "topic is %s"
+msgstr "Betreff ist %s"
+
+#: ../nova/rpc.py:374
+#, python-format
+msgid "message %s"
+msgstr "Nachricht %s"
+
+#: ../nova/volume/driver.py:78
+#, python-format
+msgid "Recovering from a failed execute. Try number %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:505
+#: ../nova/volume/driver.py:87
#, python-format
-msgid "instance %s: injecting key into image %s"
+msgid "volume group %s doesn't exist"
msgstr ""
-#: nova/virt/libvirt_conn.py:508
+#: ../nova/volume/driver.py:220
#, python-format
-msgid "instance %s: injecting net into image %s"
+msgid "FAKE AOE: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
msgstr ""
-#: nova/virt/libvirt_conn.py:516
+#: ../nova/volume/driver.py:347
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
+msgid "FAKE ISCSI: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
+#: ../nova/volume/driver.py:359
#, python-format
-msgid "instance %s: starting toXML method"
+msgid "rbd has no pool %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:589
+#: ../nova/volume/driver.py:414
#, python-format
-msgid "instance %s: finished toXML method"
+msgid "Sheepdog is not working: %s"
msgstr ""
-#: nova/virt/xenapi_conn.py:113
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
+msgstr ""
+
+#: ../nova/wsgi.py:68
+#, python-format
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
+msgstr ""
+
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
+
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:123
+#, python-format
msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
msgstr ""
-#: nova/virt/xenapi_conn.py:263
+#: ../nova/virt/fake.py:239
#, python-format
-msgid "Task [%s] %s status: success %s"
+msgid "Instance %s Not Found"
msgstr ""
-#: nova/virt/xenapi_conn.py:271
+#: ../nova/network/manager.py:153
#, python-format
-msgid "Task [%s] %s status: %s %s"
+msgid "Dissassociated %s stale fixed ip(s)"
msgstr ""
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
+#: ../nova/network/manager.py:157
+msgid "setting network host"
+msgstr ""
+
+#: ../nova/network/manager.py:212
#, python-format
-msgid "Got exception: %s"
+msgid "Leasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:72
+#: ../nova/network/manager.py:216
#, python-format
-msgid "%s: _db_content => %s"
+msgid "IP %s leased that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
+#: ../nova/network/manager.py:220
+#, python-format
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:249
+#: ../nova/network/manager.py:228
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
+msgid "IP %s leased that was already deallocated"
msgstr ""
-#: nova/virt/xenapi/fake.py:283
+#: ../nova/network/manager.py:233
#, python-format
-msgid "Calling %s %s"
+msgid "Releasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:288
+#: ../nova/network/manager.py:237
#, python-format
-msgid "Calling getter %s"
+msgid "IP %s released that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:340
+#: ../nova/network/manager.py:241
#, python-format
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
+
+#: ../nova/network/manager.py:244
+#, python-format
+msgid "IP %s released that was not leased"
+msgstr ""
+
+#: ../nova/network/manager.py:519
msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:40
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Found non-unique network for bridge %s"
+msgid "Introducing %s..."
msgstr ""
-#: nova/virt/xenapi/network_utils.py:43
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Found no network for bridge %s"
+msgid "Introduced %(label)s as %(sr_ref)s."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:127
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Created VM %s as %s."
+msgid "Unable to find SR from VBD %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:147
+#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
+msgid "Forgetting SR %s ... "
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:149
+#: ../nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:165
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "VBD not found in instance %s"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:175
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Unable to unplug VBD %s"
+msgid "Forgetting SR %s done."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:187
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Unable to destroy VBD %s"
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:202
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "Creating VIF for VM %s, network %s."
+msgid "Unable to introduce VDI on SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:205
+#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
+msgid "Unable to get record of VDI %s on"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:216
+#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
+msgid "Unable to introduce VDI for SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:229
+#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Created snapshot %s from VM %s."
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:243
+#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
+msgid "Mountpoint cannot be translated: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:261
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "Asking xapi to fetch %s as %s"
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:279
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "Looking up vdi %s for PV kernel"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:290
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:318
+#: ../nova/objectstore/handler.py:106
#, python-format
-msgid "VDI %s is still available"
+msgid "Unknown S3 value type %r"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:137
+msgid "Authenticated request"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:182
+msgid "List of buckets requested"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:331
+#: ../nova/objectstore/handler.py:209
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgid "List keys for bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:333
+#: ../nova/objectstore/handler.py:217
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgid "Unauthorized attempt to access bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:390
+#: ../nova/objectstore/handler.py:235
#, python-format
-msgid "VHD %s has parent %s"
+msgid "Creating bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:407
+#: ../nova/objectstore/handler.py:245
#, python-format
-msgid "Re-scanning SR %s"
+msgid "Deleting bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:431
+#: ../nova/objectstore/handler.py:249
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+msgid "Unauthorized attempt to delete bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:448
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "No VDIs found for VM %s"
+msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:452
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:62
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Attempted to create non-unique name %s"
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:99
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "Starting VM %s..."
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:101
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "Spawning VM %s created %s."
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:112
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "Instance %s: booted"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:137
+#: ../nova/objectstore/handler.py:396
#, python-format
-msgid "Instance not present %s"
+msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:166
+#: ../nova/objectstore/handler.py:404
#, python-format
-msgid "Starting snapshot for VM %s"
+msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:174
+#: ../nova/objectstore/handler.py:409
#, python-format
-msgid "Unable to Snapshot %s: %s"
+msgid "Starting image upload: %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:184
+#: ../nova/objectstore/handler.py:423
#, python-format
-msgid "Finished snapshot and upload for VM %s"
+msgid "Not authorized to update attributes of image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:252
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "suspend: instance not present %s"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""
-#: nova/virt/xenapi/vmops.py:262
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
-msgid "resume: instance not present %s"
+msgid "Updating user fields on image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:271
+#: ../nova/objectstore/handler.py:450
#, python-format
-msgid "Instance not found %s"
+msgid "Unauthorized attempt to delete image %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:57
+#: ../nova/objectstore/handler.py:455
#, python-format
-msgid "Introducing %s..."
+msgid "Deleted image: %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:74
+#: ../nova/auth/manager.py:259
#, python-format
-msgid "Introduced %s as %s."
+msgid "Looking up user: %r"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
+#: ../nova/auth/manager.py:263
+#, python-format
+msgid "Failed authorization for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:90
+#: ../nova/auth/manager.py:264
#, python-format
-msgid "Unable to find SR from VBD %s"
+msgid "No user found for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:96
+#: ../nova/auth/manager.py:270
#, python-format
-msgid "Forgetting SR %s ... "
+msgid "Using project name = user name (%s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:101
+#: ../nova/auth/manager.py:277
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:107
+#: ../nova/auth/manager.py:279
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
+msgid "No project called %s could be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:111
+#: ../nova/auth/manager.py:287
#, python-format
-msgid "Forgetting SR %s done."
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:113
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
+msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:123
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
-msgid "Unable to introduce VDI on SR %s"
+msgid "Invalid signature for user %s"
+msgstr ""
+
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
+msgstr ""
+
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:128
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "Unable to get record of VDI %s on"
+msgid "The %s role can not be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:146
+#: ../nova/auth/manager.py:416
#, python-format
-msgid "Unable to introduce VDI for SR %s"
+msgid "The %s role is global only"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:175
+#: ../nova/auth/manager.py:420
#, python-format
-msgid "Unable to obtain target information %s, %s"
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:197
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Mountpoint cannot be translated: %s"
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:51
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Attach_volume: %s, %s, %s"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:69
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:81
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Unable to use SR %s for instance %s"
+msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:93
+#: ../nova/auth/manager.py:533
#, python-format
-msgid "Unable to attach volume to instance %s"
+msgid "modifying project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:95
+#: ../nova/auth/manager.py:545
#, python-format
-msgid "Mountpoint %s attached to instance %s"
+msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:106
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Detach_volume: %s, %s"
+msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:113
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Unable to locate volume %s"
+msgid "Deleting project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:121
+#: ../nova/auth/manager.py:650
#, python-format
-msgid "Unable to detach volume %s"
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:128
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Mountpoint %s detached from instance %s"
+msgid "Deleting user %s"
msgstr ""
-#: nova/volume/api.py:44
+#: ../nova/auth/manager.py:669
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
+msgid "Access Key change for user %s"
msgstr ""
-#: nova/volume/api.py:46
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
+msgid "Secret Key change for user %s"
msgstr ""
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
+#: ../nova/auth/manager.py:673
+#, python-format
+msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
+#: ../nova/auth/manager.py:722
+#, python-format
+msgid "No vpn data for project %s"
msgstr ""
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
+#: ../nova/service.py:161
+#, python-format
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
+msgstr ""
+
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
msgstr ""
-#: nova/volume/driver.py:76
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr ""
+
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
+msgstr ""
+
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr ""
+
+#: ../nova/auth/ldapdriver.py:174
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
+msgid "LDAP user %s already exists"
msgstr ""
-#: nova/volume/driver.py:85
+#: ../nova/auth/ldapdriver.py:205
#, python-format
-msgid "volume group %s doesn't exist"
+msgid "LDAP object for %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:210
+#: ../nova/auth/ldapdriver.py:348
#, python-format
-msgid "FAKE AOE: %s"
+msgid "User %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:315
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "FAKE ISCSI: %s"
+msgid "Group can't be created because group %s already exists"
msgstr ""
-#: nova/volume/manager.py:85
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Re-exporting %s volumes"
+msgid "Group can't be created because user %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:93
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "volume %s: creating"
-msgstr "Volume %s: wird erstellt"
+msgid "User %s can't be searched in group because the user doesn't exist"
+msgstr ""
-#: nova/volume/manager.py:102
+#: ../nova/auth/ldapdriver.py:507
#, python-format
-msgid "volume %s: creating lv of size %sG"
-msgstr "Volume %s: erstelle LV mit %sG"
+msgid "User %s can't be added to the group because the user doesn't exist"
+msgstr ""
-#: nova/volume/manager.py:106
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
#, python-format
-msgid "volume %s: creating export"
-msgstr "Volume %s: erstelle Export"
+msgid "The group at dn %s doesn't exist"
+msgstr ""
-#: nova/volume/manager.py:113
+#: ../nova/auth/ldapdriver.py:513
#, python-format
-msgid "volume %s: created successfully"
-msgstr "Volume %s: erfolgreich erstellt"
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
+msgstr ""
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
+#: ../nova/auth/ldapdriver.py:524
+#, python-format
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
+#: ../nova/auth/ldapdriver.py:528
+#, python-format
+msgid "User %s is not a member of the group"
msgstr ""
-#: nova/volume/manager.py:124
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "volume %s: removing export"
-msgstr "Volume %s: entferne Export"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
+msgstr ""
-#: nova/volume/manager.py:126
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "volume %s: deleting"
-msgstr "Volume %s: wird entfernt"
+msgid "User %s can't be removed from all because the user doesn't exist"
+msgstr ""
-#: nova/volume/manager.py:129
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "volume %s: deleted successfully"
-msgstr "Volume %s: erfolgreich entfernt"
+msgid "Group at dn %s doesn't exist"
+msgstr ""
+
+#: ../nova/virt/xenapi/network_utils.py:40
+#, python-format
+msgid "Found non-unique network for bridge %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/network_utils.py:43
+#, python-format
+msgid "Found no network for bridge %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:97
+#, python-format
+msgid "Creating new user: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:105
+#, python-format
+msgid "Deleting user: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:131
+#, python-format
+msgid "Adding sitewide role %(role)s to user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:137
+#, python-format
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:141
+#, python-format
+msgid "Removing sitewide role %(role)s from user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:159
+#, python-format
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:177
+#, python-format
+msgid "Create project %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:190
+#, python-format
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:200
+#, python-format
+msgid "Delete project: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:214
+#, python-format
+msgid "Adding user %(user)s to project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
+msgstr ""
+
+#, python-format
+#~ msgid ""
+#~ "%s\n"
+#~ "Command: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+#~ msgstr ""
+#~ "%s\n"
+#~ "Kommando: %s\n"
+#~ "Exit Code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+
+#, python-format
+#~ msgid "(%s) publish (key: %s) %s"
+#~ msgstr "(%s) öffentlich (Schlüssel: %s) %s"
+
+#, python-format
+#~ msgid "Getting from %s: %s"
+#~ msgstr "Beziehe von %s: %s"
+
+#, python-format
+#~ msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+#~ msgstr ""
+#~ "Der AMQP server %s:%d ist nicht erreichbar. Erneuter Versuch in %d Sekunden."
+
+#, python-format
+#~ msgid "volume %s: creating lv of size %sG"
+#~ msgstr "Volume %s: erstelle LV mit %sG"
+
+#, python-format
+#~ msgid "Data store %s is unreachable. Trying again in %d seconds."
+#~ msgstr ""
+#~ "Datastore %s ist nicht erreichbar. Versuche es erneut in %d Sekunden."
diff --git a/po/es.po b/po/es.po
index 8d4f90b26..a54260db8 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,2171 +7,3351 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
-"PO-Revision-Date: 2011-01-18 14:56+0000\n"
-"Last-Translator: Javier Turégano <Unknown>\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
+"PO-Revision-Date: 2011-03-17 15:54+0000\n"
+"Last-Translator: Erick Huezo <erickhuezo@gmail.com>\n"
"Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-05 05:36+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-03-19 06:19+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr "No se han encontrado hosts"
+
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr "Sucedió un error inesperado mientras el comando se ejecutaba."
+
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
+
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
+
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr "Excepción no controlada"
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr ""
+
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
+msgstr "Cuota excedida. No puedes crear un volumen con tamaño %sG"
+
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr "El estado del volumen debe estar disponible"
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr "El volumen ya está asociado previamente"
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr "El volumen ya ha sido desasociado previamente"
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr "Fallo lectura de IP Privada"
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr "Fallo lectura de IP(s) Publicas"
+
+#: ../nova/api/openstack/servers.py:152
+#, python-format
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr "%(param)s propiedad no encontrada para la imagen %(_image_id)s"
+
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr "No se definio una Keypairs"
+
+#: ../nova/api/openstack/servers.py:238
+#, python-format
+msgid "Compute.api::lock %s"
+msgstr "Compute.api::lock %s"
+
+#: ../nova/api/openstack/servers.py:253
+#, python-format
+msgid "Compute.api::unlock %s"
+msgstr "Compute.api::unlock %s"
+
+#: ../nova/api/openstack/servers.py:267
+#, python-format
+msgid "Compute.api::get_lock %s"
+msgstr "Compute.api::get_lock %s"
+
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:292
+#, python-format
+msgid "Compute.api::pause %s"
+msgstr "Compute.api::pause %s"
+
+#: ../nova/api/openstack/servers.py:303
+#, python-format
+msgid "Compute.api::unpause %s"
+msgstr "Compute.api::unpause %s"
+
+#: ../nova/api/openstack/servers.py:314
+#, python-format
+msgid "compute.api::suspend %s"
+msgstr "compute.api::suspend %s"
+
+#: ../nova/api/openstack/servers.py:325
+#, python-format
+msgid "compute.api::resume %s"
+msgstr "compute.api::resume %s"
+
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr "Numero de argumentos incorrectos"
+
+#: ../nova/twistd.py:209
+#, python-format
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr "el pidfile %s no existe. ¿No estará el demonio parado?\n"
+
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr "No se encontró proceso"
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr "Sirviendo %s"
+
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr "Conjunto completo de opciones:"
+
+#: ../nova/twistd.py:266
+#, python-format
+msgid "Starting %s"
+msgstr "Comenzando %s"
+
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
+#, python-format
+msgid "Instance %s not found"
+msgstr "La instancia %s no se ha encontrado"
+
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
+#, python-format
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:91
+#, python-format
+msgid "Unable to attach volume to instance %s"
+msgstr "Imposible adjuntar volumen a la instancia %s"
+
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr ""
+
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
+#, python-format
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:112
+#, python-format
+msgid "Unable to locate volume %s"
+msgstr "Imposible encontrar volumen %s"
+
+#: ../nova/virt/xenapi/volumeops.py:120
+#, python-format
+msgid "Unable to detach volume %s"
+msgstr "Imposible desasociar volumen %s"
+
+#: ../nova/virt/xenapi/volumeops.py:127
+#, python-format
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr "Tipo de instancia desconocido: %s"
+
+#: ../nova/crypto.py:46
msgid "Filename of root CA"
msgstr "Nombre de fichero de la CA raíz"
-#: nova/crypto.py:49
+#: ../nova/crypto.py:49
msgid "Filename of private key"
msgstr "Nombre de fichero de la clave privada"
-#: nova/crypto.py:51
+#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
msgstr "Nombre de fichero de la lista de certificados de revocación raíz"
-#: nova/crypto.py:53
+#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr "Donde guardamos nuestras claves"
-#: nova/crypto.py:55
+#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr "Dónde guardamos nuestra CA raíz"
-#: nova/crypto.py:57
+#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr "¿Deberíamos usar una CA para cada proyecto?"
-#: nova/crypto.py:61
+#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr ""
"Sujeto (Subject) para el certificado de usuarios, %s para el proyecto, "
"usuario, marca de tiempo"
-#: nova/crypto.py:66
+#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr ""
"Sujeto (Subject) para el certificado del proyecto, %s para el proyecto, "
"marca de tiempo"
-#: nova/crypto.py:71
+#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr ""
"Sujeto (Subject) para el certificado para vpns, %s para el proyecto, marca "
"de tiempo"
-#: nova/crypto.py:258
+#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr ""
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
-msgstr "Sucedió un error inesperado mientras el comando se ejecutaba."
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr ""
-#: nova/exception.py:36
+#: ../nova/compute/manager.py:78
+#, python-format
+msgid "check_instance_lock: decorating: |%s|"
+msgstr "check_instance_lock: decorating: |%s|"
+
+#: ../nova/compute/manager.py:80
#, python-format
msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-msgstr ""
-"%s\n"
-"Comando: %s\n"
-"Código de salida: %s\n"
-"Stdout: %s\n"
-"Stderr: %r"
-
-#: nova/exception.py:86
-msgid "Uncaught exception"
-msgstr "Excepción no controlada"
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
+msgstr ""
-#: nova/fakerabbit.py:48
+#: ../nova/compute/manager.py:84
#, python-format
-msgid "(%s) publish (key: %s) %s"
-msgstr "(%s) públicar (clave: %s) %s"
+msgid "check_instance_lock: locked: |%s|"
+msgstr "check_instance_lock: locked: |%s|"
-#: nova/fakerabbit.py:53
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "Publishing to route %s"
-msgstr "Publicando la ruta %s"
+msgid "check_instance_lock: admin: |%s|"
+msgstr "check_instance_lock: admin: |%s|"
-#: nova/fakerabbit.py:83
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Declaring queue %s"
-msgstr "Declarando cola %s"
+msgid "check_instance_lock: executing: |%s|"
+msgstr "check_instance_lock: ejecutando: |%s|"
-#: nova/fakerabbit.py:89
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Declaring exchange %s"
-msgstr "Declarando intercambio %s"
+msgid "check_instance_lock: not executing |%s|"
+msgstr "check_instance_lock: no ejecutando |%s|"
+
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
+msgstr "La instancia ha sido creada previamente"
+
+#: ../nova/compute/manager.py:180
+#, python-format
+msgid "instance %s: starting..."
+msgstr "instancia %s: iniciando..."
+
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
+#, python-format
+msgid "instance %s: Failed to spawn"
+msgstr "Instancia %s: no se pudo iniciar"
+
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
+#, python-format
+msgid "Terminating instance %s"
+msgstr "Finalizando la instancia %s"
+
+#: ../nova/compute/manager.py:255
+#, python-format
+msgid "Deallocating address %s"
+msgstr "Desasociando la dirección %s"
-#: nova/fakerabbit.py:95
+#: ../nova/compute/manager.py:268
#, python-format
-msgid "Binding %s to %s with key %s"
-msgstr "Asociando %s a %s con clave %s"
+msgid "trying to destroy already destroyed instance: %s"
+msgstr "intentando finalizar una instancia que ya había sido finalizada: %s"
-#: nova/fakerabbit.py:120
+#: ../nova/compute/manager.py:282
#, python-format
-msgid "Getting from %s: %s"
-msgstr "Obteniendo desde %s: %s"
+msgid "Rebooting instance %s"
+msgstr "Reiniciando instancia %s"
-#: nova/rpc.py:92
+#: ../nova/compute/manager.py:287
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-"El servidor AMQP en %s:%d no se puede alcanzar. Se reintentará en %d "
-"segundos."
-#: nova/rpc.py:99
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgid "instance %s: snapshotting"
+msgstr "instancia %s: creando snapshot"
+
+#: ../nova/compute/manager.py:316
+#, python-format
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-"Imposible conectar al servidor AMQP después de %d intentos. Apagando."
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
-msgstr "Reconectado a la cola"
+#: ../nova/compute/manager.py:332
+#, python-format
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
+msgstr ""
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
-msgstr "Fallo al obtener el mensaje de la cola"
+#: ../nova/compute/manager.py:335
+#, python-format
+msgid "instance %s: setting admin password"
+msgstr ""
-#: nova/rpc.py:155
+#: ../nova/compute/manager.py:353
#, python-format
-msgid "Initing the Adapter Consumer for %s"
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
msgstr ""
-#: nova/rpc.py:170
+#: ../nova/compute/manager.py:362
#, python-format
-msgid "received %s"
-msgstr "recibido %s"
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
+msgstr ""
-#: nova/rpc.py:183
+#: ../nova/compute/manager.py:372
#, python-format
-msgid "no method for message: %s"
-msgstr "no hay método para el mensaje: %s"
+msgid "instance %s: rescuing"
+msgstr "instancia %s: rescatando"
-#: nova/rpc.py:184
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "No method for message: %s"
-msgstr "No hay método para el mensaje: %s"
+msgid "instance %s: unrescuing"
+msgstr ""
-#: nova/rpc.py:245
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "Returning exception %s to caller"
+msgid "instance %s: pausing"
+msgstr "instancia %s: pausando"
+
+#: ../nova/compute/manager.py:423
+#, python-format
+msgid "instance %s: unpausing"
+msgstr "instnacia %s: continuando tras pausa"
+
+#: ../nova/compute/manager.py:440
+#, python-format
+msgid "instance %s: retrieving diagnostics"
+msgstr "instancia %s: obteniendo los diagnosticos"
+
+#: ../nova/compute/manager.py:453
+#, python-format
+msgid "instance %s: suspending"
msgstr ""
-#: nova/rpc.py:286
+#: ../nova/compute/manager.py:472
#, python-format
-msgid "unpacked context: %s"
-msgstr "contenido desempaquetado: %s"
+msgid "instance %s: resuming"
+msgstr "instancia %s: continuando"
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
-msgstr "Haciendo una llamada asíncrona..."
+#: ../nova/compute/manager.py:491
+#, python-format
+msgid "instance %s: locking"
+msgstr "instancia %s: bloqueando"
-#: nova/rpc.py:308
+#: ../nova/compute/manager.py:503
#, python-format
-msgid "MSG_ID is %s"
-msgstr "MSG_ID es %s"
+msgid "instance %s: unlocking"
+msgstr "instancia %s: desbloqueando"
-#: nova/rpc.py:356
+#: ../nova/compute/manager.py:513
#, python-format
-msgid "response %s"
-msgstr "respuesta %s"
+msgid "instance %s: getting locked state"
+msgstr "instancia %s: pasando a estado bloqueado"
-#: nova/rpc.py:365
+#: ../nova/compute/manager.py:526
#, python-format
-msgid "topic is %s"
+msgid "instance %s: reset network"
+msgstr "instancia %s: reiniciar redes"
+
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
+#, python-format
+msgid "Get console output for instance %s"
+msgstr "Obtener salida de la consola para la instancia %s"
+
+#: ../nova/compute/manager.py:543
+#, python-format
+msgid "instance %s: getting ajax console"
+msgstr "instancia %s: obteniendo consola ajax"
+
+#: ../nova/compute/manager.py:553
+#, python-format
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
msgstr ""
+"instancia %(instance_id)s: adjuntando volumen %(volume_id)s a %(mountpoint)s"
-#: nova/rpc.py:366
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "message %s"
-msgstr "mensaje %s"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
+msgstr ""
+"instancia %(instance_id)s: adjuntar fallo %(mountpoint)s, removiendo"
-#: nova/service.py:157
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Starting %s node"
-msgstr "Inciando nodo %s"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
+msgstr ""
+"Quitar el volumen %(volume_id)s del punto de montaje %(mp)s en la instancia "
+"%(instance_id)s"
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
-msgstr "Se detuvo un servicio sin entrada en la base de datos"
+#: ../nova/compute/manager.py:588
+#, python-format
+msgid "Detaching volume from unknown instance %s"
+msgstr "Desvinculando volumen de instancia desconocida %s"
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
-msgstr "El servicio objeto de base de datos ha desaparecido, recreándolo."
+#: ../nova/scheduler/simple.py:53
+#, python-format
+msgid "Host %s is not alive"
+msgstr "Host %s no responde"
-#: nova/service.py:202
-msgid "Recovered model server connection!"
-msgstr "Recuperada la conexión al servidor de modelos."
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
+msgstr "Todos los hosts tienen demasiados cores"
-#: nova/service.py:208
-msgid "model server went away"
-msgstr "el servidor de modelos se ha ido"
+#: ../nova/scheduler/simple.py:87
+#, python-format
+msgid "Host %s not available"
+msgstr "Host %s no disponible"
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr "Todos los hosts tienen demasiados gigabytes"
+
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
+msgstr "Todos los hosts tienen demasiadas redes"
+
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
+msgid "Re-exporting %s volumes"
+msgstr "Exportando de nuevo los volumenes %s"
+
+#: ../nova/volume/manager.py:90
+#, python-format
+msgid "volume %s: skipping export"
msgstr ""
-"El almacen de datos %s es inalcanzable. Reintentandolo en %d segundos."
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Serving %s"
-msgstr "Sirviendo %s"
+msgid "volume %s: creating"
+msgstr "volumen %s: creando"
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
-msgstr "Conjunto completo de opciones:"
+#: ../nova/volume/manager.py:108
+#, python-format
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
+msgstr ""
-#: nova/twistd.py:211
+#: ../nova/volume/manager.py:112
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
-msgstr "el pidfile %s no existe. ¿No estará el demonio parado?\n"
+msgid "volume %s: creating export"
+msgstr "volumen %s: exportando"
-#: nova/twistd.py:268
+#: ../nova/volume/manager.py:123
#, python-format
-msgid "Starting %s"
-msgstr "Comenzando %s"
+msgid "volume %s: created successfully"
+msgstr "volumen %s: creado satisfactoriamente"
+
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
+msgstr "El volumen todavía está asociado"
+
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
+msgstr "Volumen no local a este nodo"
+
+#: ../nova/volume/manager.py:136
+#, python-format
+msgid "volume %s: removing export"
+msgstr "volumen %s: eliminando exportación"
+
+#: ../nova/volume/manager.py:138
+#, python-format
+msgid "volume %s: deleting"
+msgstr "volumen %s: eliminando"
-#: nova/utils.py:53
+#: ../nova/volume/manager.py:147
+#, python-format
+msgid "volume %s: deleted successfully"
+msgstr "volumen %s: eliminado satisfactoriamente"
+
+#: ../nova/virt/xenapi/fake.py:74
+#, python-format
+msgid "%(text)s: _db_content => %(content)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
+msgstr "Lanzando NotImplemented"
+
+#: ../nova/virt/xenapi/fake.py:306
+#, python-format
+msgid "xenapi.fake does not have an implementation for %s"
+msgstr "xenapi.fake no tiene una implementación para %s"
+
+#: ../nova/virt/xenapi/fake.py:341
+#, python-format
+msgid "Calling %(localname)s %(impl)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:346
+#, python-format
+msgid "Calling getter %s"
+msgstr "Llanado al adquiridor %s"
+
+#: ../nova/virt/xenapi/fake.py:406
+#, python-format
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
+msgstr ""
+"xenapi.fake no tiene una implementación para %s o ha sido llamada con un "
+"número incorrecto de argumentos"
+
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
+msgstr "No puedo probar las imágenes sin un entorno real virtual"
+
+#: ../nova/tests/test_cloud.py:268
+#, python-format
+msgid "Need to watch instance %s until it's running..."
+msgstr "Hay que vigilar la instancia %s hasta que este en ejecución..."
+
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
+msgstr "Fallo al abrir conexión con el hypervisor"
+
+#: ../nova/network/linux_net.py:187
+#, python-format
+msgid "Starting VLAN inteface %s"
+msgstr "Iniciando interfaz VLAN %s"
+
+#: ../nova/network/linux_net.py:208
+#, python-format
+msgid "Starting Bridge interface for %s"
+msgstr "Iniciando interfaz puente para %s"
+
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
+#, python-format
+msgid "Hupping dnsmasq threw %s"
+msgstr "Excepción al recargar la configuración de dnsmasq: %s"
+
+#: ../nova/network/linux_net.py:316
+#, python-format
+msgid "Pid %d is stale, relaunching dnsmasq"
+msgstr "El pid %d está pasado, relanzando dnsmasq"
+
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
+#, python-format
+msgid "killing radvd threw %s"
+msgstr ""
+
+#: ../nova/network/linux_net.py:360
+#, python-format
+msgid "Pid %d is stale, relaunching radvd"
+msgstr ""
+
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
+#, python-format
+msgid "Killing dnsmasq threw %s"
+msgstr "Al matar dnsmasq se lanzó %s"
+
+#: ../nova/utils.py:58
#, python-format
msgid "Inner Exception: %s"
msgstr "Excepción interna: %s"
-#: nova/utils.py:54
+#: ../nova/utils.py:59
#, python-format
msgid "Class %s cannot be found"
msgstr "La clase %s no ha podido ser encontrada."
-#: nova/utils.py:113
+#: ../nova/utils.py:118
#, python-format
msgid "Fetching %s"
msgstr "Obteniendo %s"
-#: nova/utils.py:125
+#: ../nova/utils.py:130
#, python-format
msgid "Running cmd (subprocess): %s"
msgstr "Ejecutando cmd (subprocesos): %s"
-#: nova/utils.py:138
+#: ../nova/utils.py:143 ../nova/utils.py:183
#, python-format
msgid "Result was %s"
msgstr "El resultado fue %s"
-#: nova/utils.py:171
+#: ../nova/utils.py:159
+#, python-format
+msgid "Running cmd (SSH): %s"
+msgstr ""
+
+#: ../nova/utils.py:217
#, python-format
msgid "debug in callback: %s"
msgstr "Depuración de la devolución de llamada: %s"
-#: nova/utils.py:176
+#: ../nova/utils.py:222
#, python-format
msgid "Running %s"
msgstr "Ejecutando %s"
-#: nova/utils.py:207
+#: ../nova/utils.py:262
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
-msgstr "No puedo obtener IP, usando 127.0.0.1 %s"
+msgid "Link Local address is not found.:%s"
+msgstr ""
+
+#: ../nova/utils.py:265
+#, python-format
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
+msgstr ""
-#: nova/utils.py:289
+#: ../nova/utils.py:363
#, python-format
msgid "Invalid backend: %s"
msgstr "backend inválido: %s"
-#: nova/utils.py:300
+#: ../nova/utils.py:374
#, python-format
msgid "backend %s"
msgstr "backend %s"
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
-msgstr "Demasiados intentos de autenticacion fallidos."
+#: ../nova/fakerabbit.py:49
+#, python-format
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
+msgstr ""
+
+#: ../nova/fakerabbit.py:54
+#, python-format
+msgid "Publishing to route %s"
+msgstr "Publicando la ruta %s"
+
+#: ../nova/fakerabbit.py:84
+#, python-format
+msgid "Declaring queue %s"
+msgstr "Declarando cola %s"
+
+#: ../nova/fakerabbit.py:90
+#, python-format
+msgid "Declaring exchange %s"
+msgstr "Declarando intercambio %s"
+
+#: ../nova/fakerabbit.py:96
+#, python-format
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
+msgstr ""
+
+#: ../nova/fakerabbit.py:121
+#, python-format
+msgid "Getting from %(queue)s: %(message)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
+#, python-format
+msgid "Created VM %s..."
+msgstr "Creada VM %s..."
+
+#: ../nova/virt/xenapi/vm_utils.py:138
+#, python-format
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:168
+#, python-format
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:171
+#, python-format
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:187
+#, python-format
+msgid "VBD not found in instance %s"
+msgstr "VBD no encontrado en la instancia %s"
+
+#: ../nova/virt/xenapi/vm_utils.py:197
+#, python-format
+msgid "Unable to unplug VBD %s"
+msgstr "Imposible desconectar VBD %s"
+
+#: ../nova/virt/xenapi/vm_utils.py:209
+#, python-format
+msgid "Unable to destroy VBD %s"
+msgstr "Imposible destruir VBD %s"
+
+#: ../nova/virt/xenapi/vm_utils.py:224
+#, python-format
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
+msgstr ""
-#: nova/api/ec2/__init__.py:142
+#: ../nova/virt/xenapi/vm_utils.py:227
+#, python-format
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
msgstr ""
-"La clave de acceso %s ha tenido %d fallos de autenticación y se bloqueará "
-"por %d minutos."
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "Authentication Failure: %s"
-msgstr "Fallo de autenticación: %s"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
+msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/virt/xenapi/vm_utils.py:272
#, python-format
-msgid "Authenticated Request For %s:%s)"
-msgstr "Solicitud de autenticación para %s:%s"
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
+msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
-msgid "action: %s"
-msgstr "acción: %s"
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
+msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
-msgid "arg: %s\t\tval: %s"
-msgstr "arg: %s \t \t val: %s"
+msgid "Size for image %(image)s:%(virtual_size)d"
+msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/virt/xenapi/vm_utils.py:332
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
-msgstr "Solicitud no autorizada para controller=%s y action=%s"
+msgid "Glance image %s"
+msgstr ""
-#: nova/api/ec2/__init__.py:339
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
#, python-format
-msgid "NotFound raised: %s"
-msgstr "No encontrado: %s"
+msgid "Copying VDI %s to /boot/guest on dom0"
+msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/virt/xenapi/vm_utils.py:352
#, python-format
-msgid "ApiError raised: %s"
-msgstr "Sucedió un ApiError: %s"
+msgid "Kernel/Ramdisk VDI %s destroyed"
+msgstr ""
-#: nova/api/ec2/__init__.py:349
+#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
-msgid "Unexpected error raised: %s"
-msgstr "Sucedió un error inexperado: %s"
+msgid "Asking xapi to fetch %(url)s as %(access)s"
+msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
+#, python-format
+msgid "Looking up vdi %s for PV kernel"
+msgstr "Buscando vid %s para el kernel PV"
+
+#: ../nova/virt/xenapi/vm_utils.py:397
+#, python-format
+msgid "PV Kernel in VDI:%s"
msgstr ""
-"Ha sucedido un error desconocido. Por favor repite el intento de nuevo."
-#: nova/api/ec2/admin.py:84
+#: ../nova/virt/xenapi/vm_utils.py:405
#, python-format
-msgid "Creating new user: %s"
-msgstr "Creando nuevo usuario: %s"
+msgid "Running pygrub against %s"
+msgstr ""
-#: nova/api/ec2/admin.py:92
+#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
-msgid "Deleting user: %s"
-msgstr "Eliminando usuario: %s"
+msgid "Found Xen kernel %s"
+msgstr ""
-#: nova/api/ec2/admin.py:114
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
-msgid "Adding role %s to user %s for project %s"
-msgstr "Añadiendo rol %s al usuario %s para el proyecto %s"
+msgid "duplicate name found: %s"
+msgstr "se ha encontrado un nombre duplicado: %s"
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "Adding sitewide role %s to user %s"
-msgstr "Añadiendo rol global %s al usuario %s"
+msgid "VDI %s is still available"
+msgstr "VDI %s está todavía disponible"
-#: nova/api/ec2/admin.py:122
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "Removing role %s from user %s for project %s"
-msgstr "Eliminando rol %s del usuario %s para el proyecto %s"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgstr "(VM_UTILS) xenserver vm state -> |%s|"
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "Removing sitewide role %s from user %s"
-msgstr "Eliminando rol global %s del usuario %s"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgstr "(VM_UTILS) xenapi power_state -> |%s|"
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
-msgstr "la operación debe ser añadir o eliminar"
+#: ../nova/virt/xenapi/vm_utils.py:525
+#, python-format
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
+msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
-msgstr "Obteniendo x509 para el usuario: %s en el proyecto %s"
+msgid "Re-scanning SR %s"
+msgstr "Re-escaneando SR %s"
-#: nova/api/ec2/admin.py:159
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "Create project %s managed by %s"
-msgstr "Creación del proyecto %s gestionada por %s"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
+msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "Delete project: %s"
-msgstr "Borrar proyecto: %s"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:590
+#, python-format
+msgid "No VDIs found for VM %s"
+msgstr "No se han encontrado VDI's para VM %s"
+
+#: ../nova/virt/xenapi/vm_utils.py:594
+#, python-format
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
+#, python-format
+msgid "Creating VBD for VDI %s ... "
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
+#, python-format
+msgid "Creating VBD for VDI %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
+#, python-format
+msgid "Plugging VBD %s ... "
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
+#, python-format
+msgid "Plugging VBD %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:661
+#, python-format
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:664
+#, python-format
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
+#, python-format
+msgid "Destroying VBD for VDI %s ... "
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
+#, python-format
+msgid "Destroying VBD for VDI %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
+#, python-format
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
+#, python-format
+msgid "Ignoring XenAPI.Failure %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:735
+#, python-format
+msgid ""
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:747
+#, python-format
+msgid "Writing partition table %s done."
+msgstr ""
+
+#: ../nova/tests/test_rpc.py:89
+#, python-format
+msgid "Nested received %(queue)s, %(value)s"
+msgstr ""
+
+#: ../nova/tests/test_rpc.py:95
+#, python-format
+msgid "Nested return %s"
+msgstr ""
+
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
+#, python-format
+msgid "Received %s"
+msgstr "Recibido %s"
+
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
+msgstr "El uso de una petición de contexto vacía está en desuso"
+
+#: ../nova/db/sqlalchemy/api.py:133
+#, python-format
+msgid "No service for id %s"
+msgstr "No hay servicio para el id %s"
+
+#: ../nova/db/sqlalchemy/api.py:251
+#, python-format
+msgid "No service for %(host)s, %(binary)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:608
+#, python-format
+msgid "No floating ip for address %s"
+msgstr "No hay ip flotante para la dirección %s"
+
+#: ../nova/db/sqlalchemy/api.py:629
+#, python-format
+msgid "No address for instance %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:961
+#, python-format
+msgid "no keypair for user %(user_id)s, name %(name)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
+#, python-format
+msgid "No network for id %s"
+msgstr "No hay red para el id %s"
+
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1115
+#, python-format
+msgid "No network for bridge %s"
+msgstr "No hay red para el puente %s"
+
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
+#, python-format
+msgid "No network for instance %s"
+msgstr "No hay red para la instancia %s"
+
+#: ../nova/db/sqlalchemy/api.py:1277
+#, python-format
+msgid "Token %s does not exist"
+msgstr "El token %s no existe"
+
+#: ../nova/db/sqlalchemy/api.py:1302
+#, python-format
+msgid "No quota for project_id %s"
+msgstr "No hay quota para el project:id %s"
+
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
+#, python-format
+msgid "Volume %s not found"
+msgstr "El volumen %s no se ha encontrado"
+
+#: ../nova/db/sqlalchemy/api.py:1514
+#, python-format
+msgid "No export device found for volume %s"
+msgstr "No se ha encontrado dispositivo exportado para el volumen %s"
+
+#: ../nova/db/sqlalchemy/api.py:1527
+#, python-format
+msgid "No target id found for volume %s"
+msgstr "No se ha encontrado id de destino para el volumen %s"
+
+#: ../nova/db/sqlalchemy/api.py:1572
+#, python-format
+msgid "No security group with id %s"
+msgstr "No hay un grupo de seguridad con el id %s"
+
+#: ../nova/db/sqlalchemy/api.py:1589
+#, python-format
+msgid "No security group named %(group_name)s for project: %(project_id)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1682
+#, python-format
+msgid "No secuity group rule with id %s"
+msgstr "No hay una regla para el grupo de seguridad con el id %s"
+
+#: ../nova/db/sqlalchemy/api.py:1756
+#, python-format
+msgid "No user for id %s"
+msgstr "No hay un usuario con el id %s"
+
+#: ../nova/db/sqlalchemy/api.py:1772
+#, python-format
+msgid "No user for access key %s"
+msgstr "No hay un usuario para la clave de acceso %s"
+
+#: ../nova/db/sqlalchemy/api.py:1834
+#, python-format
+msgid "No project with id %s"
+msgstr "No hay proyecto con id %s"
+
+#: ../nova/db/sqlalchemy/api.py:1979
+#, python-format
+msgid "No console pool with id %(pool_id)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1996
+#, python-format
+msgid ""
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:2035
+#, python-format
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:2057
+#, python-format
+msgid "on instance %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:2058
+#, python-format
+msgid "No console with id %(console_id)s %(idesc)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
+#, python-format
+msgid "No zone with id %(zone_id)s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:160
+#, python-format
+msgid "Checking state of %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:165
+#, python-format
+msgid "Current state of %(name)s was %(state)s."
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:183
+#, python-format
+msgid "Connecting to libvirt: %s"
+msgstr "Conectando a libvirt: %s"
+
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
+msgstr "Conexión a libvirt rota"
+
+#: ../nova/virt/libvirt_conn.py:258
+#, python-format
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:283
+#, python-format
+msgid "Invalid device path %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:313
+#, python-format
+msgid "No disk at %s"
+msgstr "No hay disco en %s"
+
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
+msgstr ""
+"El snapshotting de instancias no está soportado en libvirt en este momento"
+
+#: ../nova/virt/libvirt_conn.py:336
+#, python-format
+msgid "instance %s: rebooted"
+msgstr "instancia %s: reiniciada"
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/virt/libvirt_conn.py:339
#, python-format
-msgid "Adding user %s to project %s"
-msgstr "Añadiendo usuario %s al proyecto %s"
+msgid "_wait_for_reboot failed: %s"
+msgstr "_wait_for_reboot falló: %s"
+
+#: ../nova/virt/libvirt_conn.py:382
+#, python-format
+msgid "instance %s: rescued"
+msgstr "instancia %s: rescatada"
-#: nova/api/ec2/admin.py:188
+#: ../nova/virt/libvirt_conn.py:385
#, python-format
-msgid "Removing user %s from project %s"
-msgstr "Eliminando usuario %s del proyecto %s"
+msgid "_wait_for_rescue failed: %s"
+msgstr "_wait_for_rescue falló: %s"
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
-msgstr "Solicitud de API no soportada: controller=%s,action=%s"
+msgid "instance %s: is running"
+msgstr "instancia %s: está ejecutándose"
-#: nova/api/ec2/cloud.py:117
+#: ../nova/virt/libvirt_conn.py:422
+#, python-format
+msgid "instance %s: booted"
+msgstr "instancia %s: arrancada"
+
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
+#, python-format
+msgid "instance %s: failed to boot"
+msgstr "insntancia %s: falló al arrancar"
+
+#: ../nova/virt/libvirt_conn.py:436
+#, python-format
+msgid "virsh said: %r"
+msgstr "virsh dijo: %r"
+
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
+msgstr "genial, es un dispositivo"
+
+#: ../nova/virt/libvirt_conn.py:448
+#, python-format
+msgid "data: %(data)r, fpath: %(fpath)r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:456
+#, python-format
+msgid "Contents of file %(fpath)s: %(contents)r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:563
+#, python-format
+msgid "instance %s: Creating image"
+msgstr "instancia %s: Creando imagen"
+
+#: ../nova/virt/libvirt_conn.py:646
+#, python-format
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:649
+#, python-format
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
+msgstr ""
+
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
+#, python-format
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
+msgstr ""
+
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
+#, python-format
+msgid "instance %s: starting toXML method"
+msgstr "instancia %s: comenzando método toXML"
+
+#: ../nova/virt/libvirt_conn.py:732
+#, python-format
+msgid "instance %s: finished toXML method"
+msgstr "instancia %s: finalizado método toXML"
+
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:1225
+#, python-format
+msgid "Attempted to unfilter instance %s which is not filtered"
+msgstr ""
+
+#: ../nova/api/ec2/metadatarequesthandler.py:76
+#, python-format
+msgid "Failed to get metadata for ip: %s"
+msgstr "Fallo al generar metadatos para la ip %s"
+
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
+msgstr "Intento de instanciar sigleton"
+
+#: ../nova/network/api.py:39
+#, python-format
+msgid "Quota exceeeded for %s, tried to allocate address"
+msgstr "Quota excedida para %s, intentando asignar direcciones"
+
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
+msgstr ""
+"La quota de direcciones ha sido excedida. No puedes asignar más direcciones"
+
+#: ../nova/tests/test_volume.py:162
+#, python-format
+msgid "Target %s allocated"
+msgstr "Destino %s asignado"
+
+#: ../nova/virt/images.py:70
+#, python-format
+msgid "Finished retreving %(url)s -- placed in %(path)s"
+msgstr ""
+
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
+msgstr "Debe de implementar un horario de reserva"
+
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
+#, python-format
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
+
+#: ../nova/api/direct.py:149
+msgid "not available"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:62
+#, python-format
+msgid "The key_pair %s already exists"
+msgstr ""
+
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
msgid "Generating root CA: %s"
msgstr "Generando CA raiz: %s"
-#: nova/api/ec2/cloud.py:277
+#: ../nova/api/ec2/cloud.py:303
#, python-format
msgid "Create key pair %s"
msgstr "Creando par de claves %s"
-#: nova/api/ec2/cloud.py:285
+#: ../nova/api/ec2/cloud.py:311
#, python-format
msgid "Delete key pair %s"
msgstr "Borrar para de claves %s"
-#: nova/api/ec2/cloud.py:357
+#: ../nova/api/ec2/cloud.py:386
#, python-format
msgid "%s is not a valid ipProtocol"
msgstr "%s no es un ipProtocol valido"
-#: nova/api/ec2/cloud.py:361
+#: ../nova/api/ec2/cloud.py:390
msgid "Invalid port range"
msgstr "Rango de puerto inválido"
-#: nova/api/ec2/cloud.py:392
+#: ../nova/api/ec2/cloud.py:421
#, python-format
msgid "Revoke security group ingress %s"
msgstr "Revocar ingreso al grupo de seguridad %s"
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:443
msgid "No rule for the specified parameters."
msgstr "No hay regla para los parámetros especificados."
-#: nova/api/ec2/cloud.py:421
+#: ../nova/api/ec2/cloud.py:450
#, python-format
msgid "Authorize security group ingress %s"
msgstr "Autorizar ingreso al grupo de seguridad %s"
-#: nova/api/ec2/cloud.py:432
+#: ../nova/api/ec2/cloud.py:464
#, python-format
msgid "This rule already exists in group %s"
msgstr "Esta regla ya existe en el grupo %s"
-#: nova/api/ec2/cloud.py:460
+#: ../nova/api/ec2/cloud.py:492
#, python-format
msgid "Create Security Group %s"
msgstr "Crear Grupo de Seguridad %s"
-#: nova/api/ec2/cloud.py:463
+#: ../nova/api/ec2/cloud.py:495
#, python-format
msgid "group %s already exists"
msgstr "el grupo %s ya existe"
-#: nova/api/ec2/cloud.py:475
+#: ../nova/api/ec2/cloud.py:507
#, python-format
msgid "Delete security group %s"
msgstr "Borrar grupo de seguridad %s"
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
-#, python-format
-msgid "Get console output for instance %s"
-msgstr "Obtener salida de la consola para la instancia %s"
-
-#: nova/api/ec2/cloud.py:543
+#: ../nova/api/ec2/cloud.py:584
#, python-format
msgid "Create volume of %s GB"
msgstr "Crear volumen de %s GB"
-#: nova/api/ec2/cloud.py:567
+#: ../nova/api/ec2/cloud.py:612
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
-msgstr "Asociar volumen %s a la instancia %s en %s"
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:579
+#: ../nova/api/ec2/cloud.py:629
#, python-format
msgid "Detach volume %s"
msgstr "Desasociar volumen %s"
-#: nova/api/ec2/cloud.py:686
+#: ../nova/api/ec2/cloud.py:761
msgid "Allocate address"
msgstr "Asignar dirección"
-#: nova/api/ec2/cloud.py:691
+#: ../nova/api/ec2/cloud.py:766
#, python-format
msgid "Release address %s"
msgstr "Liberar dirección %s"
-#: nova/api/ec2/cloud.py:696
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "Associate address %s to instance %s"
-msgstr "Asociar dirección %s a la instancia %s"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/api/ec2/cloud.py:780
#, python-format
msgid "Disassociate address %s"
msgstr "Desasociar dirección %s"
-#: nova/api/ec2/cloud.py:730
+#: ../nova/api/ec2/cloud.py:807
msgid "Going to start terminating instances"
msgstr "Se va a iniciar la finalización de las instancias"
-#: nova/api/ec2/cloud.py:738
+#: ../nova/api/ec2/cloud.py:815
#, python-format
msgid "Reboot instance %r"
msgstr "Reiniciar instancia %r"
-#: nova/api/ec2/cloud.py:775
+#: ../nova/api/ec2/cloud.py:867
#, python-format
msgid "De-registering image %s"
msgstr "Des-registrando la imagen %s"
-#: nova/api/ec2/cloud.py:783
+#: ../nova/api/ec2/cloud.py:875
#, python-format
-msgid "Registered image %s with id %s"
-msgstr "Registrada imagen %s con id %s"
+msgid "Registered image %(image_location)s with id %(image_id)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
msgid "attribute not supported: %s"
msgstr "atributo no soportado: %s"
-#: nova/api/ec2/cloud.py:794
+#: ../nova/api/ec2/cloud.py:890
#, python-format
msgid "invalid id: %s"
msgstr "id no valido: %s"
-#: nova/api/ec2/cloud.py:807
+#: ../nova/api/ec2/cloud.py:903
msgid "user or group not specified"
msgstr "usuario o grupo no especificado"
-#: nova/api/ec2/cloud.py:809
+#: ../nova/api/ec2/cloud.py:905
msgid "only group \"all\" is supported"
msgstr "sólo el grupo \"all\" está soportado"
-#: nova/api/ec2/cloud.py:811
+#: ../nova/api/ec2/cloud.py:907
msgid "operation_type must be add or remove"
msgstr "operation_type debe ser añadir o eliminar"
-#: nova/api/ec2/cloud.py:812
+#: ../nova/api/ec2/cloud.py:908
#, python-format
msgid "Updating image %s publicity"
msgstr "Actualizando imagen %s públicamente"
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../bin/nova-api.py:52
#, python-format
-msgid "Failed to get metadata for ip: %s"
-msgstr "Fallo al generar metadatos para la ip %s"
+msgid "Using paste.deploy config at: %s"
+msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../bin/nova-api.py:57
#, python-format
-msgid "Caught error: %s"
-msgstr "Capturado error: %s"
-
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
-msgstr "Incluyendo operaciones de administración in API."
+msgid "No paste configuration for app: %s"
+msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../bin/nova-api.py:59
#, python-format
-msgid "Compute.api::lock %s"
-msgstr "Compute.api::lock %s"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
+msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../bin/nova-api.py:64
#, python-format
-msgid "Compute.api::unlock %s"
-msgstr "Compute.api::unlock %s"
+msgid "Running %s API"
+msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../bin/nova-api.py:69
#, python-format
-msgid "Compute.api::get_lock %s"
-msgstr "Compute.api::get_lock %s"
+msgid "No known API applications configured in %s."
+msgstr ""
-#: nova/api/openstack/servers.py:224
+#: ../bin/nova-api.py:83
#, python-format
-msgid "Compute.api::pause %s"
-msgstr "Compute.api::pause %s"
+msgid "Starting nova-api node (version %s)"
+msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../bin/nova-api.py:89
#, python-format
-msgid "Compute.api::unpause %s"
-msgstr "Compute.api::unpause %s"
+msgid "No paste configuration found for: %s"
+msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "compute.api::suspend %s"
-msgstr "compute.api::suspend %s"
+msgid "Argument %(key)s value %(value)s is too short."
+msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "compute.api::resume %s"
-msgstr "compute.api::resume %s"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
+msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "User %s already exists"
-msgstr "El usuario %s ya existe"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
+msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
-msgstr "El proyecto no puede ser creado porque el administrador %s no existe"
+msgid "Argument %s is required."
+msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "Project can't be created because project %s already exists"
-msgstr "El proyecto no puede ser creado porque el proyecto %s ya existe"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
+msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-"El proyecto no puede ser modificado porque el administrador %s no existe"
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "User \"%s\" not found"
-msgstr "No se ha encontrado el usuario \"%s\""
+msgid "Attempted to create non-unique name %s"
+msgstr "Intentado la creación del nombre no único %s"
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "Project \"%s\" not found"
-msgstr "No se ha encontrado el proyecto \"%s\""
-
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
-msgstr "Intento de instanciar sigleton"
+msgid "instance %(name)s: not enough free memory"
+msgstr ""
-#: nova/auth/ldapdriver.py:181
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "LDAP object for %s doesn't exist"
-msgstr "El objeto LDAP para %s no existe"
+msgid "Starting VM %s..."
+msgstr "Iniciando VM %s..."
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
-msgstr "El proyecto no puede ser creado porque el usuario %s no existe"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
+msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "User %s is already a member of the group %s"
-msgstr "El usuario %s ya es miembro de el grupo %s"
+msgid "Invalid value for onset_files: '%s'"
+msgstr ""
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+msgid "Injecting file path: '%s'"
msgstr ""
-"Se ha intentado eliminar el último miembro de un grupo. Eliminando el grupo "
-"%s en su lugar."
-#: nova/auth/ldapdriver.py:528
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "Group at dn %s doesn't exist"
-msgstr "El grupo con dn %s no existe"
+msgid "Instance %s: booted"
+msgstr "Instancia %s: iniciada"
-#: nova/auth/manager.py:259
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "Looking up user: %r"
-msgstr "Buscando usuario: %r"
+msgid "Instance not present %s"
+msgstr "Instancia no existente %s"
-#: nova/auth/manager.py:263
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "Failed authorization for access key %s"
-msgstr "Fallo de autorización para la clave de acceso %s"
+msgid "Starting snapshot for VM %s"
+msgstr "Comenzando snapshot para la VM %s"
-#: nova/auth/manager.py:264
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "No user found for access key %s"
-msgstr "No se ha encontrado usuario para la clave de acceso %s"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
+msgstr ""
-#: nova/auth/manager.py:270
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "Using project name = user name (%s)"
-msgstr "Utilizando nombre de proyecto = nombre de usuario (%s)"
+msgid "Finished snapshot and upload for VM %s"
+msgstr "Finalizado el snapshot y la subida de la VM %s"
-#: nova/auth/manager.py:275
+#: ../nova/virt/xenapi/vmops.py:356
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
+msgid "VM %(vm)s already halted, skipping shutdown..."
msgstr ""
-"fallo de autorización: no existe proyecto con el nombre %s (usuario=%s)"
-#: nova/auth/manager.py:277
-#, python-format
-msgid "No project called %s could be found"
-msgstr "No se ha podido encontrar un proyecto con nombre %s"
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
+msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-"Fallo de autorización: el usuario %s no es administrador y no es miembro del "
-"proyecto %s"
-#: nova/auth/manager.py:283
+#: ../nova/virt/xenapi/vmops.py:564
#, python-format
-msgid "User %s is not a member of project %s"
-msgstr "El usuario %s no es miembro del proyecto %s"
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
+msgstr ""
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "Invalid signature for user %s"
-msgstr "Firma invalida para el usuario %s"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
+msgstr ""
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
-msgstr "Las firmas no concuerdan"
+#: ../nova/virt/xenapi/vmops.py:760
+#, python-format
+msgid "OpenSSL error: %s"
+msgstr ""
-#: nova/auth/manager.py:374
-msgid "Must specify project"
-msgstr "Debes especificar un proyecto"
+#: ../nova/tests/test_compute.py:148
+#, python-format
+msgid "Running instances: %s"
+msgstr "Ejecutando instancias: %s"
-#: nova/auth/manager.py:408
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "The %s role can not be found"
-msgstr "El rol %s no se ha podido encontrar"
+msgid "After terminating instances: %s"
+msgstr "Después de terminar las instancias: %s"
+
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
+msgstr "Red a insertar en la configuración de openvpn"
-#: nova/auth/manager.py:410
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr "Mascara de red a insertar en la configuración de openvpn"
+
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "The %s role is global only"
-msgstr "El rol %s es únicamente global"
+msgid "Launching VPN for %s"
+msgstr "Lanzando VPN para %s"
-#: nova/auth/manager.py:412
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
+msgstr ""
+
+#: ../nova/image/s3.py:99
#, python-format
-msgid "Adding role %s to user %s in project %s"
-msgstr "Añadiendo rol %s al usuario %s en el proyecto %s"
+msgid "Image %s could not be found"
+msgstr "La imagen %s no ha podido ser encontrada"
+
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr "Demasiados intentos de autenticacion fallidos."
-#: nova/auth/manager.py:438
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "Removing role %s from user %s on project %s"
-msgstr "Eliminando rol %s al usuario %s en el proyecto %s"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
+msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "Created project %s with manager %s"
-msgstr "Proyecto %s creado con administrador %s"
+msgid "Authentication Failure: %s"
+msgstr "Fallo de autenticación: %s"
-#: nova/auth/manager.py:523
+#: ../nova/api/ec2/__init__.py:182
#, python-format
-msgid "modifying project %s"
-msgstr "modificando proyecto %s"
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
+msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "Remove user %s from project %s"
-msgstr "Eliminar usuario %s del proyecto %s"
+msgid "action: %s"
+msgstr "acción: %s"
-#: nova/auth/manager.py:581
+#: ../nova/api/ec2/__init__.py:209
#, python-format
-msgid "Deleting project %s"
-msgstr "Eliminando proyecto %s"
+msgid "arg: %(key)s\t\tval: %(value)s"
+msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "Created user %s (admin: %r)"
-msgstr "Creado usuario %s (administrador: %r)"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
+msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Deleting user %s"
-msgstr "Eliminando usuario %s"
+msgid "InstanceNotFound raised: %s"
+msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/api/ec2/__init__.py:320
#, python-format
-msgid "Access Key change for user %s"
-msgstr "Cambio de clave de acceso para el usuario %s"
+msgid "VolumeNotFound raised: %s"
+msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/api/ec2/__init__.py:326
#, python-format
-msgid "Secret Key change for user %s"
-msgstr "Cambio de clave secreta para el usuario %s"
+msgid "NotFound raised: %s"
+msgstr "No encontrado: %s"
-#: nova/auth/manager.py:659
+#: ../nova/api/ec2/__init__.py:329
#, python-format
-msgid "Admin status set to %r for user %s"
-msgstr "El estado del administrador se ha fijado a %r para el usuario %s"
+msgid "ApiError raised: %s"
+msgstr "Sucedió un ApiError: %s"
-#: nova/auth/manager.py:708
+#: ../nova/api/ec2/__init__.py:338
#, python-format
-msgid "No vpn data for project %s"
-msgstr "No hay datos vpn para el proyecto %s"
+msgid "Unexpected error raised: %s"
+msgstr "Sucedió un error inexperado: %s"
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
msgstr ""
+"Ha sucedido un error desconocido. Por favor repite el intento de nuevo."
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
-msgstr "Red a insertar en la configuración de openvpn"
+#: ../nova/auth/dbdriver.py:84
+#, python-format
+msgid "User %s already exists"
+msgstr "El usuario %s ya existe"
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
-msgstr "Mascara de red a insertar en la configuración de openvpn"
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
+#, python-format
+msgid "Project can't be created because manager %s doesn't exist"
+msgstr "El proyecto no puede ser creado porque el administrador %s no existe"
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
-msgid "Launching VPN for %s"
-msgstr "Lanzando VPN para %s"
+msgid "Project can't be created because user %s doesn't exist"
+msgstr "El proyecto no puede ser creado porque el usuario %s no existe"
-#: nova/compute/api.py:67
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
-msgid "Instance %d was not found in get_network_topic"
-msgstr "La instancia %d no se ha encontrado en get_network_topic"
+msgid "Project can't be created because project %s already exists"
+msgstr "El proyecto no puede ser creado porque el proyecto %s ya existe"
-#: nova/compute/api.py:73
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Instance %d has no host"
-msgstr "La instancia %d no tiene host"
+msgid "Project can't be modified because manager %s doesn't exist"
+msgstr ""
+"El proyecto no puede ser modificado porque el administrador %s no existe"
-#: nova/compute/api.py:92
+#: ../nova/auth/dbdriver.py:245
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
-msgstr "Quota superada por %s, intentando lanzar %s instancias"
+msgid "User \"%s\" not found"
+msgstr "No se ha encontrado el usuario \"%s\""
-#: nova/compute/api.py:94
+#: ../nova/auth/dbdriver.py:248
#, python-format
+msgid "Project \"%s\" not found"
+msgstr "No se ha encontrado el proyecto \"%s\""
+
+#: ../nova/virt/xenapi_conn.py:129
msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
msgstr ""
-"Quota de instancias superada. Sólo puedes ejecutar %s instancias más de este "
-"tipo."
+"Debes especificar xenapi_connection_url, xenapi_connection_username "
+"(opcional), y xenapi_connection_password para usar connection_type=xenapi"
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
-msgstr "Creando una instancia raw"
+#: ../nova/virt/xenapi_conn.py:311
+#, python-format
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
+msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Going to run %s instances..."
-msgstr "Vamos a ejecutar %s insntacias..."
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
+msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
-msgstr "Llamando al planificar para %s/%s insntancia %s"
+msgid "Got exception: %s"
+msgstr "Obtenida excepción %s"
-#: nova/compute/api.py:279
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Going to try and terminate %s"
-msgstr "Se va a probar y terminar %s"
+msgid "updating %s..."
+msgstr "actualizando %s..."
+
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
+msgstr "error inesperado durante la actualización"
-#: nova/compute/api.py:283
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Instance %d was not found during terminate"
-msgstr "La instancia %d no se ha encontrado durante la finalización"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
+msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Instance %d is already being terminated"
-msgstr "La instancia %d ha sido finalizada"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
+msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
+msgstr "excepción inexperada al obtener la conexión"
+
+#: ../nova/compute/monitor.py:429
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "Found instance: %s"
+msgstr "Encontrada interfaz: %s"
+
+#: ../nova/volume/san.py:67
+#, python-format
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-"El dispositivo especificado no es válido: %s. Ejemplo de dispositivo: "
-"/dev/vdb"
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
-msgstr "¡El volumen no está unido a nada!"
+#: ../nova/api/ec2/apirequest.py:100
+#, python-format
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
+msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "Caught error: %s"
+msgstr "Capturado error: %s"
+
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
+msgstr "Incluyendo operaciones de administración in API."
+
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
msgstr ""
-"El tamaño de la partición de entrada no es divisible de forma uniforme por "
-"el tamaño del sector: %d / %d"
-#: nova/compute/disk.py:75
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "Re-wrote %s"
+msgstr ""
+
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
msgstr ""
-"Los bytes del almacenamiento local no son divisibles de forma uniforme por "
-"el tamaño del sector: %d / %d"
-#: nova/compute/disk.py:128
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
+msgstr ""
+
+#: ../nova/console/xvp.py:141
#, python-format
-msgid "Could not attach image to loopback: %s"
-msgstr "No se puede unir la imagen con el loopback: %s"
+msgid "Error starting xvp: %s"
+msgstr ""
+
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
+msgstr ""
+
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
+msgstr ""
+
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
+msgstr ""
+
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
+msgstr ""
+
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
+msgstr ""
+
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
+msgstr ""
+
+#: ../bin/nova-manage.py:448
+msgid "IP address"
+msgstr ""
+
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
-#: nova/compute/disk.py:136
+#: ../bin/nova-manage.py:450
+msgid "hostname"
+msgstr ""
+
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
msgid "Failed to load partition: %s"
msgstr "Fallo al cargar la partición: %s"
-#: nova/compute/disk.py:158
+#: ../nova/virt/disk.py:91
#, python-format
msgid "Failed to mount filesystem: %s"
msgstr "Fallo al montar el sistema de ficheros: %s"
-#: nova/compute/instance_types.py:41
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Unknown instance type: %s"
-msgstr "Tipo de instancia desconocido: %s"
+msgid "nbd device %s did not show up"
+msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
-msgstr "check_instance_lock: decorating: |%s|"
+msgid "Could not attach image to loopback: %s"
+msgstr "No se puede unir la imagen con el loopback: %s"
+
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
+msgstr ""
-#: nova/compute/manager.py:71
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
-msgstr "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "%(filename)s, line %(line_info)d"
+msgstr ""
+
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
+msgid "In init host"
+msgstr "En el host inicial"
-#: nova/compute/manager.py:75
+#: ../nova/virt/hyperv.py:131
#, python-format
-msgid "check_instance_lock: locked: |%s|"
-msgstr "check_instance_lock: locked: |%s|"
+msgid "Attempt to create duplicate vm %s"
+msgstr "Intento de crear una vm duplicada %s"
-#: nova/compute/manager.py:77
+#: ../nova/virt/hyperv.py:148
#, python-format
-msgid "check_instance_lock: admin: |%s|"
-msgstr "check_instance_lock: admin: |%s|"
+msgid "Starting VM %s "
+msgstr "Comenzando VM %s "
-#: nova/compute/manager.py:82
+#: ../nova/virt/hyperv.py:150
#, python-format
-msgid "check_instance_lock: executing: |%s|"
-msgstr "check_instance_lock: ejecutando: |%s|"
+msgid "Started VM %s "
+msgstr "VM %s iniciada "
-#: nova/compute/manager.py:86
+#: ../nova/virt/hyperv.py:152
#, python-format
-msgid "check_instance_lock: not executing |%s|"
-msgstr "check_instance_lock: no ejecutando |%s|"
+msgid "spawn vm failed: %s"
+msgstr "Inicio de vm fallido: %s"
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
-msgstr "La instancia ha sido creada previamente"
+#: ../nova/virt/hyperv.py:169
+#, python-format
+msgid "Failed to create VM %s"
+msgstr "Fallo al crear la VM %s"
-#: nova/compute/manager.py:158
+#: ../nova/virt/hyperv.py:188
#, python-format
-msgid "instance %s: starting..."
-msgstr "instancia %s: iniciando..."
+msgid "Set memory for vm %s..."
+msgstr "Se ha establecido la memoria para vm %s..."
-#: nova/compute/manager.py:197
+#: ../nova/virt/hyperv.py:198
#, python-format
-msgid "instance %s: Failed to spawn"
-msgstr "Instancia %s: no se pudo iniciar"
+msgid "Set vcpus for vm %s..."
+msgstr "Establecidas vcpus para vm %s..."
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Terminating instance %s"
-msgstr "Finalizando la instancia %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
+msgstr ""
-#: nova/compute/manager.py:217
+#: ../nova/virt/hyperv.py:227
#, python-format
-msgid "Disassociating address %s"
-msgstr "Desasociando la dirección %s"
+msgid "Failed to add diskdrive to VM %s"
+msgstr "Fallo al añadir unidad de disco a la VM %s"
-#: nova/compute/manager.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
-msgid "Deallocating address %s"
-msgstr "Desasociando la dirección %s"
+msgid "New disk drive path is %s"
+msgstr "La nueva ruta para unidad de disco es %s"
-#: nova/compute/manager.py:243
+#: ../nova/virt/hyperv.py:247
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
-msgstr "intentando finalizar una instancia que ya había sido finalizada: %s"
+msgid "Failed to add vhd file to VM %s"
+msgstr "Fallo al añadir el fichero vhd a la VM %s"
-#: nova/compute/manager.py:257
+#: ../nova/virt/hyperv.py:249
#, python-format
-msgid "Rebooting instance %s"
-msgstr "Reiniciando instancia %s"
+msgid "Created disk for %s"
+msgstr "Discos creados para %s"
-#: nova/compute/manager.py:260
+#: ../nova/virt/hyperv.py:253
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
-msgstr ""
-"intentando reiniciar una instancia que no está en ejecución: %s (estado: %s "
-"esperado: %s)"
+msgid "Creating nic for %s "
+msgstr "Creando nic para %s "
-#: nova/compute/manager.py:286
+#: ../nova/virt/hyperv.py:272
+msgid "Failed creating a port on the external vswitch"
+msgstr "Fallo al crear un puerto en el vswitch externo"
+
+#: ../nova/virt/hyperv.py:273
#, python-format
-msgid "instance %s: snapshotting"
-msgstr "instancia %s: creando snapshot"
+msgid "Failed creating port for %s"
+msgstr "Fallo creando puerto para %s"
-#: nova/compute/manager.py:289
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-"intentando crear un snapshot de una instancia que no está en ejecución: %s "
-"(estado: %s esperado: %s)"
-#: nova/compute/manager.py:301
+#: ../nova/virt/hyperv.py:286
#, python-format
-msgid "instance %s: rescuing"
-msgstr "instancia %s: rescatando"
+msgid "Failed to add nic to VM %s"
+msgstr "Fallo al añadir nic a la VM %s"
-#: nova/compute/manager.py:316
+#: ../nova/virt/hyperv.py:288
#, python-format
-msgid "instance %s: unrescuing"
+msgid "Created nic for %s "
+msgstr "Creando nic para %s "
+
+#: ../nova/virt/hyperv.py:321
+#, python-format
+msgid "WMI job failed: %s"
+msgstr "Trabajo WMI falló: %s"
+
+#: ../nova/virt/hyperv.py:325
+#, python-format
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/virt/hyperv.py:361
#, python-format
-msgid "instance %s: pausing"
-msgstr "instancia %s: pausando"
+msgid "Got request to destroy vm %s"
+msgstr "Recibida solicitud para destruir vm %s"
-#: nova/compute/manager.py:352
+#: ../nova/virt/hyperv.py:386
#, python-format
-msgid "instance %s: unpausing"
-msgstr "instnacia %s: continuando tras pausa"
+msgid "Failed to destroy vm %s"
+msgstr "Fallo al destruir vm %s"
-#: nova/compute/manager.py:369
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "instance %s: retrieving diagnostics"
-msgstr "instancia %s: obteniendo los diagnosticos"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
+msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/virt/hyperv.py:415
#, python-format
-msgid "instance %s: suspending"
-msgstr "instancia %s: suspendiendo"
+msgid ""
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
+msgstr ""
-#: nova/compute/manager.py:401
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "instance %s: resuming"
-msgstr "instancia %s: continuando"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
+msgstr ""
-#: nova/compute/manager.py:420
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "instance %s: locking"
-msgstr "instancia %s: bloqueando"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
+msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/compute/api.py:71
#, python-format
-msgid "instance %s: unlocking"
-msgstr "instancia %s: desbloqueando"
+msgid "Instance %d was not found in get_network_topic"
+msgstr "La instancia %d no se ha encontrado en get_network_topic"
-#: nova/compute/manager.py:442
+#: ../nova/compute/api.py:77
#, python-format
-msgid "instance %s: getting locked state"
-msgstr "instancia %s: pasando a estado bloqueado"
+msgid "Instance %d has no host"
+msgstr "La instancia %d no tiene host"
-#: nova/compute/manager.py:462
+#: ../nova/compute/api.py:97
#, python-format
-msgid "instance %s: attaching volume %s to %s"
-msgstr "instancia %s: asociando volumen %s a %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
+msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/compute/api.py:99
#, python-format
-msgid "instance %s: attach failed %s, removing"
-msgstr "instalación %s: asociación fallida %s, eliminando"
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
+msgstr ""
+"Quota de instancias superada. Sólo puedes ejecutar %s instancias más de este "
+"tipo."
+
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
+msgstr "Creando una instancia raw"
-#: nova/compute/manager.py:493
+#: ../nova/compute/api.py:160
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
-msgstr "Desvinculando volumen %s del punto de montaje %s en la instancia %s"
+msgid "Going to run %s instances..."
+msgstr "Vamos a ejecutar %s insntacias..."
-#: nova/compute/manager.py:497
+#: ../nova/compute/api.py:187
#, python-format
-msgid "Detaching volume from unknown instance %s"
-msgstr "Desvinculando volumen de instancia desconocida %s"
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
+msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/compute/api.py:292
#, python-format
-msgid "updating %s..."
-msgstr "actualizando %s..."
+msgid "Going to try to terminate %s"
+msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
-msgstr "error inesperado durante la actualización"
+#: ../nova/compute/api.py:296
+#, python-format
+msgid "Instance %d was not found during terminate"
+msgstr "La instancia %d no se ha encontrado durante la finalización"
-#: nova/compute/monitor.py:355
+#: ../nova/compute/api.py:301
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
-msgstr "No puedo obtener estadísticas del bloque para \"%s\" en \"%s\""
+msgid "Instance %d is already being terminated"
+msgstr "La instancia %d ha sido finalizada"
-#: nova/compute/monitor.py:377
+#: ../nova/compute/api.py:481
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
-msgstr "No puedo obtener estadísticas de la interfaz para \"%s\" en \"%s\""
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgstr ""
+"El dispositivo especificado no es válido: %s. Ejemplo de dispositivo: "
+"/dev/vdb"
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
-msgstr "excepción inexperada al obtener la conexión"
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
+msgstr "¡El volumen no está unido a nada!"
-#: nova/compute/monitor.py:427
+#: ../nova/rpc.py:98
#, python-format
-msgid "Found instance: %s"
-msgstr "Encontrada interfaz: %s"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
+msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
-msgstr "El uso de una petición de contexto vacía está en desuso"
+#: ../nova/rpc.py:103
+#, python-format
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgstr ""
+"Imposible conectar al servidor AMQP después de %d intentos. Apagando."
+
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr "Reconectado a la cola"
-#: nova/db/sqlalchemy/api.py:132
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr "Fallo al obtener el mensaje de la cola"
+
+#: ../nova/rpc.py:159
#, python-format
-msgid "No service for id %s"
-msgstr "No hay servicio para el id %s"
+msgid "Initing the Adapter Consumer for %s"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../nova/rpc.py:178
#, python-format
-msgid "No service for %s, %s"
-msgstr "No hay servicio para %s, %s"
+msgid "received %s"
+msgstr "recibido %s"
-#: nova/db/sqlalchemy/api.py:574
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
#, python-format
-msgid "No floating ip for address %s"
-msgstr "No hay ip flotante para la dirección %s"
+msgid "no method for message: %s"
+msgstr "no hay método para el mensaje: %s"
-#: nova/db/sqlalchemy/api.py:668
+#: ../nova/rpc.py:192
#, python-format
-msgid "No instance for id %s"
-msgstr "No hay instancia con id %s"
+msgid "No method for message: %s"
+msgstr "No hay método para el mensaje: %s"
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../nova/rpc.py:253
#, python-format
-msgid "Instance %s not found"
-msgstr "La instancia %s no se ha encontrado"
+msgid "Returning exception %s to caller"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../nova/rpc.py:294
#, python-format
-msgid "no keypair for user %s, name %s"
-msgstr "no hay par de claves para el usuario %s, nombre %s"
+msgid "unpacked context: %s"
+msgstr "contenido desempaquetado: %s"
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
+msgstr "Haciendo una llamada asíncrona..."
+
+#: ../nova/rpc.py:316
#, python-format
-msgid "No network for id %s"
-msgstr "No hay red para el id %s"
+msgid "MSG_ID is %s"
+msgstr "MSG_ID es %s"
-#: nova/db/sqlalchemy/api.py:1036
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
+msgstr ""
+
+#: ../nova/rpc.py:364
#, python-format
-msgid "No network for bridge %s"
-msgstr "No hay red para el puente %s"
+msgid "response %s"
+msgstr "respuesta %s"
-#: nova/db/sqlalchemy/api.py:1050
+#: ../nova/rpc.py:373
#, python-format
-msgid "No network for instance %s"
-msgstr "No hay red para la instancia %s"
+msgid "topic is %s"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../nova/rpc.py:374
#, python-format
-msgid "Token %s does not exist"
-msgstr "El token %s no existe"
+msgid "message %s"
+msgstr "mensaje %s"
-#: nova/db/sqlalchemy/api.py:1205
+#: ../nova/volume/driver.py:78
#, python-format
-msgid "No quota for project_id %s"
-msgstr "No hay quota para el project:id %s"
+msgid "Recovering from a failed execute. Try number %s"
+msgstr "Recuperandose de una ejecución fallida. Intenta el número %s"
-#: nova/db/sqlalchemy/api.py:1356
+#: ../nova/volume/driver.py:87
#, python-format
-msgid "No volume for id %s"
-msgstr "No hay volumen para el id %s"
+msgid "volume group %s doesn't exist"
+msgstr "el grupo de volumenes %s no existe"
-#: nova/db/sqlalchemy/api.py:1401
+#: ../nova/volume/driver.py:220
#, python-format
-msgid "Volume %s not found"
-msgstr "El volumen %s no se ha encontrado"
+msgid "FAKE AOE: %s"
+msgstr "Falso AOE: %s"
-#: nova/db/sqlalchemy/api.py:1413
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
#, python-format
-msgid "No export device found for volume %s"
-msgstr "No se ha encontrado dispositivo exportado para el volumen %s"
+msgid "FAKE ISCSI: %s"
+msgstr "Falso ISCSI: %s"
-#: nova/db/sqlalchemy/api.py:1426
+#: ../nova/volume/driver.py:359
#, python-format
-msgid "No target id found for volume %s"
-msgstr "No se ha encontrado id de destino para el volumen %s"
+msgid "rbd has no pool %s"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../nova/volume/driver.py:414
#, python-format
-msgid "No security group with id %s"
-msgstr "No hay un grupo de seguridad con el id %s"
+msgid "Sheepdog is not working: %s"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
+msgstr ""
+
+#: ../nova/wsgi.py:68
#, python-format
-msgid "No security group named %s for project: %s"
-msgstr "No hay un grupo de seguridad con nombre %s para el proyecto: %s"
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
+msgstr ""
+
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
+
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../bin/nova-dhcpbridge.py:123
#, python-format
-msgid "No secuity group rule with id %s"
-msgstr "No hay una regla para el grupo de seguridad con el id %s"
+msgid ""
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../nova/virt/fake.py:239
#, python-format
-msgid "No user for id %s"
-msgstr "No hay un usuario con el id %s"
+msgid "Instance %s Not Found"
+msgstr "La instancia %s no ha sido encontrada"
-#: nova/db/sqlalchemy/api.py:1666
+#: ../nova/network/manager.py:153
#, python-format
-msgid "No user for access key %s"
-msgstr "No hay un usuario para la clave de acceso %s"
+msgid "Dissassociated %s stale fixed ip(s)"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#: ../nova/network/manager.py:157
+msgid "setting network host"
+msgstr "configurando la red del host"
+
+#: ../nova/network/manager.py:212
#, python-format
-msgid "No project with id %s"
-msgstr "No hay proyecto con id %s"
+msgid "Leasing IP %s"
+msgstr "Liberando IP %s"
-#: nova/image/glance.py:78
+#: ../nova/network/manager.py:216
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
-msgstr "Parallax ha devuelto un error HTTP %d a la petición para /images"
+msgid "IP %s leased that isn't associated"
+msgstr ""
-#: nova/image/glance.py:97
+#: ../nova/network/manager.py:220
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-"Parallax ha devuelto un error HTTP %d para la petición para /images/detail"
-#: nova/image/s3.py:82
+#: ../nova/network/manager.py:228
#, python-format
-msgid "Image %s could not be found"
-msgstr "La imagen %s no ha podido ser encontrada"
+msgid "IP %s leased that was already deallocated"
+msgstr ""
-#: nova/network/api.py:39
+#: ../nova/network/manager.py:233
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
-msgstr "Quota excedida para %s, intentando asignar direcciones"
+msgid "Releasing IP %s"
+msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../nova/network/manager.py:237
+#, python-format
+msgid "IP %s released that isn't associated"
msgstr ""
-"La quota de direcciones ha sido excedida. No puedes asignar más direcciones"
-#: nova/network/linux_net.py:176
+#: ../nova/network/manager.py:241
#, python-format
-msgid "Starting VLAN inteface %s"
-msgstr "Iniciando interfaz VLAN %s"
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
-#: nova/network/linux_net.py:186
+#: ../nova/network/manager.py:244
#, python-format
-msgid "Starting Bridge interface for %s"
-msgstr "Iniciando interfaz puente para %s"
+msgid "IP %s released that was not leased"
+msgstr ""
+
+#: ../nova/network/manager.py:519
+msgid ""
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
+msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Hupping dnsmasq threw %s"
-msgstr "Excepción al recargar la configuración de dnsmasq: %s"
+msgid "Introducing %s..."
+msgstr "Introduciendo %s..."
-#: nova/network/linux_net.py:256
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
-msgstr "El pid %d está pasado, relanzando dnsmasq"
+msgid "Introduced %(label)s as %(sr_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
+msgstr "Imposible crear el repositorio de almacenamiento"
-#: nova/network/linux_net.py:334
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Killing dnsmasq threw %s"
-msgstr "Al matar dnsmasq se lanzó %s"
+msgid "Unable to find SR from VBD %s"
+msgstr "Imposible encontrar SR en VBD %s"
-#: nova/network/manager.py:135
-msgid "setting network host"
-msgstr "configurando la red del host"
+#: ../nova/virt/xenapi/volume_utils.py:96
+#, python-format
+msgid "Forgetting SR %s ... "
+msgstr "Olvidando SR %s... "
-#: nova/network/manager.py:190
+#: ../nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "Leasing IP %s"
-msgstr "Liberando IP %s"
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
+msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/network/manager.py:197
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
-msgstr "IP %s asociada a una mac incorrecta %s vs %s"
+msgid "Forgetting SR %s done."
+msgstr "Olvidando SR %s completado."
-#: nova/network/manager.py:205
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "IP %s released that isn't associated"
+msgid "Unable to introduce VDI on SR %s"
+msgstr "Incapaz de insertar VDI en SR %s"
+
+#: ../nova/virt/xenapi/volume_utils.py:128
+#, python-format
+msgid "Unable to get record of VDI %s on"
+msgstr "Imposible obtener copia del VDI %s en"
+
+#: ../nova/virt/xenapi/volume_utils.py:146
+#, python-format
+msgid "Unable to introduce VDI for SR %s"
+msgstr "Inposible insertar VDI para SR %s"
+
+#: ../nova/virt/xenapi/volume_utils.py:175
+#, python-format
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/virt/xenapi/volume_utils.py:197
+#, python-format
+msgid "Mountpoint cannot be translated: %s"
+msgstr "Punto de montaje no puede ser traducido: %s"
+
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "IP %s released that was not leased"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/objectstore/handler.py:106
#, python-format
msgid "Unknown S3 value type %r"
msgstr "Tipo de valor S3 %r desconocido"
-#: nova/objectstore/handler.py:137
+#: ../nova/objectstore/handler.py:137
msgid "Authenticated request"
msgstr "Petición autenticada"
-#: nova/objectstore/handler.py:182
+#: ../nova/objectstore/handler.py:182
msgid "List of buckets requested"
msgstr "Listado de cubos solicitado"
-#: nova/objectstore/handler.py:209
+#: ../nova/objectstore/handler.py:209
#, python-format
msgid "List keys for bucket %s"
msgstr "Lista de claves para el cubo %s"
-#: nova/objectstore/handler.py:217
+#: ../nova/objectstore/handler.py:217
#, python-format
msgid "Unauthorized attempt to access bucket %s"
msgstr "Intento no autorizado para acceder al cubo %s"
-#: nova/objectstore/handler.py:235
+#: ../nova/objectstore/handler.py:235
#, python-format
msgid "Creating bucket %s"
msgstr "Creando el cubo %s"
-#: nova/objectstore/handler.py:245
+#: ../nova/objectstore/handler.py:245
#, python-format
msgid "Deleting bucket %s"
msgstr "Eliminando el cubo %s"
-#: nova/objectstore/handler.py:249
+#: ../nova/objectstore/handler.py:249
#, python-format
msgid "Unauthorized attempt to delete bucket %s"
msgstr "Intento no autorizado de eliminar el cubo %s"
-#: nova/objectstore/handler.py:271
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "Getting object: %s / %s"
-msgstr "Obteniendo objeto: %s / %s"
+msgid "Getting object: %(bname)s / %(nm)s"
+msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
-msgstr "Intento no autorizado de obtener el objeto %s en el cubo %s"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
+msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Putting object: %s / %s"
-msgstr "Colocando objeto: %s / %s"
+msgid "Putting object: %(bname)s / %(nm)s"
+msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
-msgstr "Intento no autorizado de subir el objeto %s al cubo %s"
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
+msgstr ""
-#: nova/objectstore/handler.py:314
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "Deleting object: %s / %s"
-msgstr "Eliminando objeto: %s / %s"
+msgid "Deleting object: %(bname)s / %(nm)s"
+msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/objectstore/handler.py:322
+#, python-format
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:396
#, python-format
msgid "Not authorized to upload image: invalid directory %s"
msgstr "No autorizado para subir imagen: directorio incorrecto %s"
-#: nova/objectstore/handler.py:401
+#: ../nova/objectstore/handler.py:404
#, python-format
msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr "No autorizado para subir imagen: cubo %s no autorizado"
-#: nova/objectstore/handler.py:406
+#: ../nova/objectstore/handler.py:409
#, python-format
msgid "Starting image upload: %s"
msgstr "Comenzando la subida de la imagen: %s"
-#: nova/objectstore/handler.py:420
+#: ../nova/objectstore/handler.py:423
#, python-format
msgid "Not authorized to update attributes of image %s"
msgstr "No autorizado para actualizar los atributos de la imagen %s"
-#: nova/objectstore/handler.py:428
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "Toggling publicity flag of image %s %r"
-msgstr "Cambiando los atributos de publicidad de la imagen %s %r"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
+msgstr ""
-#: nova/objectstore/handler.py:433
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
msgid "Updating user fields on image %s"
msgstr "Actualizando los campos de usuario de la imagen %s"
-#: nova/objectstore/handler.py:447
+#: ../nova/objectstore/handler.py:450
#, python-format
msgid "Unauthorized attempt to delete image %s"
msgstr "Intento no autorizado de borrar la imagen %s"
-#: nova/objectstore/handler.py:452
+#: ../nova/objectstore/handler.py:455
#, python-format
msgid "Deleted image: %s"
msgstr "Eliminada imagen: %s"
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
-msgstr "No se han encontrado hosts"
+#: ../nova/auth/manager.py:259
+#, python-format
+msgid "Looking up user: %r"
+msgstr "Buscando usuario: %r"
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
-msgstr "Debe de implementar un horario de reserva"
+#: ../nova/auth/manager.py:263
+#, python-format
+msgid "Failed authorization for access key %s"
+msgstr "Fallo de autorización para la clave de acceso %s"
+
+#: ../nova/auth/manager.py:264
+#, python-format
+msgid "No user found for access key %s"
+msgstr "No se ha encontrado usuario para la clave de acceso %s"
-#: nova/scheduler/manager.py:69
+#: ../nova/auth/manager.py:270
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "Using project name = user name (%s)"
+msgstr "Utilizando nombre de proyecto = nombre de usuario (%s)"
+
+#: ../nova/auth/manager.py:277
+#, python-format
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
-msgstr "Todos los hosts tienen demasiados cores"
+#: ../nova/auth/manager.py:279
+#, python-format
+msgid "No project called %s could be found"
+msgstr "No se ha podido encontrar un proyecto con nombre %s"
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
-msgstr "Todos los hosts tienen demasiados gigabytes"
+#: ../nova/auth/manager.py:287
+#, python-format
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
+msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
-msgstr "Todos los hosts tienen demasiadas redes"
+#: ../nova/auth/manager.py:289
+#, python-format
+msgid "User %(uid)s is not a member of project %(pjid)s"
+msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
-msgstr "No puedo probar las imágenes sin un entorno real virtual"
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
+#, python-format
+msgid "Invalid signature for user %s"
+msgstr "Firma invalida para el usuario %s"
+
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
+msgstr "Las firmas no concuerdan"
-#: nova/tests/test_cloud.py:210
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
+msgstr "Debes especificar un proyecto"
+
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "Need to watch instance %s until it's running..."
-msgstr "Hay que vigilar la instancia %s hasta que este en ejecución..."
+msgid "The %s role can not be found"
+msgstr "El rol %s no se ha podido encontrar"
-#: nova/tests/test_compute.py:104
+#: ../nova/auth/manager.py:416
#, python-format
-msgid "Running instances: %s"
-msgstr "Ejecutando instancias: %s"
+msgid "The %s role is global only"
+msgstr "El rol %s es únicamente global"
-#: nova/tests/test_compute.py:110
+#: ../nova/auth/manager.py:420
#, python-format
-msgid "After terminating instances: %s"
-msgstr "Después de terminar las instancias: %s"
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
+msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Nested received %s, %s"
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Nested return %s"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Received %s"
-msgstr "Recibido %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
+msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Target %s allocated"
-msgstr "Destino %s asignado"
+msgid "Created project %(name)s with manager %(manager_user)s"
+msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
-msgstr "Fallo al abrir conexión con el hypervisor"
+#: ../nova/auth/manager.py:533
+#, python-format
+msgid "modifying project %s"
+msgstr "modificando proyecto %s"
-#: nova/virt/fake.py:210
+#: ../nova/auth/manager.py:545
#, python-format
-msgid "Instance %s Not Found"
-msgstr "La instancia %s no ha sido encontrada"
+msgid "Adding user %(uid)s to project %(pid)s"
+msgstr ""
-#: nova/virt/hyperv.py:118
-msgid "In init host"
-msgstr "En el host inicial"
+#: ../nova/auth/manager.py:566
+#, python-format
+msgid "Remove user %(uid)s from project %(pid)s"
+msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Attempt to create duplicate vm %s"
-msgstr "Intento de crear una vm duplicada %s"
+msgid "Deleting project %s"
+msgstr "Eliminando proyecto %s"
-#: nova/virt/hyperv.py:148
+#: ../nova/auth/manager.py:650
#, python-format
-msgid "Starting VM %s "
-msgstr "Comenzando VM %s "
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
+msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Started VM %s "
-msgstr "VM %s iniciada "
+msgid "Deleting user %s"
+msgstr "Eliminando usuario %s"
-#: nova/virt/hyperv.py:152
+#: ../nova/auth/manager.py:669
#, python-format
-msgid "spawn vm failed: %s"
-msgstr "Inicio de vm fallido: %s"
+msgid "Access Key change for user %s"
+msgstr "Cambio de clave de acceso para el usuario %s"
-#: nova/virt/hyperv.py:169
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Failed to create VM %s"
-msgstr "Fallo al crear la VM %s"
+msgid "Secret Key change for user %s"
+msgstr "Cambio de clave secreta para el usuario %s"
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
+#: ../nova/auth/manager.py:673
#, python-format
-msgid "Created VM %s..."
-msgstr "Creada VM %s..."
+msgid "Admin status set to %(admin)r for user %(uid)s"
+msgstr ""
-#: nova/virt/hyperv.py:188
+#: ../nova/auth/manager.py:722
#, python-format
-msgid "Set memory for vm %s..."
-msgstr "Se ha establecido la memoria para vm %s..."
+msgid "No vpn data for project %s"
+msgstr "No hay datos vpn para el proyecto %s"
-#: nova/virt/hyperv.py:198
+#: ../nova/service.py:161
#, python-format
-msgid "Set vcpus for vm %s..."
-msgstr "Establecidas vcpus para vm %s..."
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
+msgstr ""
+
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
+msgstr "Se detuvo un servicio sin entrada en la base de datos"
+
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr "El servicio objeto de base de datos ha desaparecido, recreándolo."
+
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
+msgstr "Recuperada la conexión al servidor de modelos."
+
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr "el servidor de modelos se ha ido"
-#: nova/virt/hyperv.py:202
+#: ../nova/auth/ldapdriver.py:174
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "LDAP user %s already exists"
msgstr ""
-"Creando disco para %s a través de la asignación del fichero de disco %s"
-#: nova/virt/hyperv.py:227
+#: ../nova/auth/ldapdriver.py:205
#, python-format
-msgid "Failed to add diskdrive to VM %s"
-msgstr "Fallo al añadir unidad de disco a la VM %s"
+msgid "LDAP object for %s doesn't exist"
+msgstr "El objeto LDAP para %s no existe"
-#: nova/virt/hyperv.py:230
+#: ../nova/auth/ldapdriver.py:348
#, python-format
-msgid "New disk drive path is %s"
-msgstr "La nueva ruta para unidad de disco es %s"
+msgid "User %s doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "Failed to add vhd file to VM %s"
-msgstr "Fallo al añadir el fichero vhd a la VM %s"
+msgid "Group can't be created because group %s already exists"
+msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Created disk for %s"
-msgstr "Discos creados para %s"
+msgid "Group can't be created because user %s doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "Creating nic for %s "
-msgstr "Creando nic para %s "
+msgid "User %s can't be searched in group because the user doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:272
-msgid "Failed creating a port on the external vswitch"
-msgstr "Fallo al crear un puerto en el vswitch externo"
+#: ../nova/auth/ldapdriver.py:507
+#, python-format
+msgid "User %s can't be added to the group because the user doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
#, python-format
-msgid "Failed creating port for %s"
-msgstr "Fallo creando puerto para %s"
+msgid "The group at dn %s doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/auth/ldapdriver.py:513
#, python-format
-msgid "Created switch port %s on switch %s"
-msgstr "Creado puerto %s en el switch %s"
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
+msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/auth/ldapdriver.py:524
#, python-format
-msgid "Failed to add nic to VM %s"
-msgstr "Fallo al añadir nic a la VM %s"
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/auth/ldapdriver.py:528
#, python-format
-msgid "Created nic for %s "
-msgstr "Creando nic para %s "
+msgid "User %s is not a member of the group"
+msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "WMI job failed: %s"
-msgstr "Trabajo WMI falló: %s"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
+msgstr ""
+"Se ha intentado eliminar el último miembro de un grupo. Eliminando el grupo "
+"%s en su lugar."
-#: nova/virt/hyperv.py:322
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
-msgstr "Trabajo WMI ha tenido exito: %s, Transcurrido=%s "
+msgid "User %s can't be removed from all because the user doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "Got request to destroy vm %s"
-msgstr "Recibida solicitud para destruir vm %s"
+msgid "Group at dn %s doesn't exist"
+msgstr "El grupo con dn %s no existe"
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/xenapi/network_utils.py:40
#, python-format
-msgid "Failed to destroy vm %s"
-msgstr "Fallo al destruir vm %s"
+msgid "Found non-unique network for bridge %s"
+msgstr "Encontrada una red no única para el puente %s"
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/xenapi/network_utils.py:43
#, python-format
-msgid "Del: disk %s vm %s"
-msgstr "Del: disco %s vm %s"
+msgid "Found no network for bridge %s"
+msgstr "No se ha encontrado red para el puente %s"
-#: nova/virt/hyperv.py:405
+#: ../nova/api/ec2/admin.py:97
#, python-format
-msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+msgid "Creating new user: %s"
+msgstr "Creando nuevo usuario: %s"
+
+#: ../nova/api/ec2/admin.py:105
+#, python-format
+msgid "Deleting user: %s"
+msgstr "Eliminando usuario: %s"
+
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
msgstr ""
-"Obtenida información para vm %s: state=%s, mem=%s, num_cpu=%s, cpu_time=%s"
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/api/ec2/admin.py:131
#, python-format
-msgid "duplicate name found: %s"
-msgstr "se ha encontrado un nombre duplicado: %s"
+msgid "Adding sitewide role %(role)s to user %(user)s"
+msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/api/ec2/admin.py:137
#, python-format
-msgid "Successfully changed vm state of %s to %s"
-msgstr "Cambio de estado de la vm con éxito de %s a %s"
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
+msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/api/ec2/admin.py:141
#, python-format
-msgid "Failed to change vm state of %s to %s"
-msgstr "Fallo al cambiar el estado de la vm de %s a %s"
+msgid "Removing sitewide role %(role)s from user %(user)s"
+msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr "la operación debe ser añadir o eliminar"
+
+#: ../nova/api/ec2/admin.py:159
#, python-format
-msgid "Finished retreving %s -- placed in %s"
-msgstr "Finalizada la obtención de %s -- coloado en %s"
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
+msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/api/ec2/admin.py:177
#, python-format
-msgid "Connecting to libvirt: %s"
-msgstr "Conectando a libvirt: %s"
+msgid "Create project %(name)s managed by %(manager_user)s"
+msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
-msgstr "Conexión a libvirt rota"
+#: ../nova/api/ec2/admin.py:190
+#, python-format
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
-#: nova/virt/libvirt_conn.py:229
+#: ../nova/api/ec2/admin.py:200
#, python-format
-msgid "instance %s: deleting instance files %s"
-msgstr "instancia %s: eliminando los ficheros de la instancia %s"
+msgid "Delete project: %s"
+msgstr "Borrar proyecto: %s"
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/api/ec2/admin.py:214
#, python-format
-msgid "No disk at %s"
-msgstr "No hay disco en %s"
+msgid "Adding user %(user)s to project %(project)s"
+msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
msgstr ""
-"El snapshotting de instancias no está soportado en libvirt en este momento"
-#: nova/virt/libvirt_conn.py:294
#, python-format
-msgid "instance %s: rebooted"
-msgstr "instancia %s: reiniciada"
+#~ msgid ""
+#~ "%s\n"
+#~ "Command: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+#~ msgstr ""
+#~ "%s\n"
+#~ "Comando: %s\n"
+#~ "Código de salida: %s\n"
+#~ "Stdout: %s\n"
+#~ "Stderr: %r"
-#: nova/virt/libvirt_conn.py:297
#, python-format
-msgid "_wait_for_reboot failed: %s"
-msgstr "_wait_for_reboot falló: %s"
+#~ msgid "(%s) publish (key: %s) %s"
+#~ msgstr "(%s) públicar (clave: %s) %s"
-#: nova/virt/libvirt_conn.py:340
#, python-format
-msgid "instance %s: rescued"
-msgstr "instancia %s: rescatada"
+#~ msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+#~ msgstr ""
+#~ "El servidor AMQP en %s:%d no se puede alcanzar. Se reintentará en %d "
+#~ "segundos."
-#: nova/virt/libvirt_conn.py:343
#, python-format
-msgid "_wait_for_rescue failed: %s"
-msgstr "_wait_for_rescue falló: %s"
+#~ msgid "Binding %s to %s with key %s"
+#~ msgstr "Asociando %s a %s con clave %s"
-#: nova/virt/libvirt_conn.py:370
#, python-format
-msgid "instance %s: is running"
-msgstr "instancia %s: está ejecutándose"
+#~ msgid "Getting from %s: %s"
+#~ msgstr "Obteniendo desde %s: %s"
-#: nova/virt/libvirt_conn.py:381
#, python-format
-msgid "instance %s: booted"
-msgstr "instancia %s: arrancada"
+#~ msgid "Starting %s node"
+#~ msgstr "Inciando nodo %s"
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
#, python-format
-msgid "instance %s: failed to boot"
-msgstr "insntancia %s: falló al arrancar"
+#~ msgid "Data store %s is unreachable. Trying again in %d seconds."
+#~ msgstr ""
+#~ "El almacen de datos %s es inalcanzable. Reintentandolo en %d segundos."
-#: nova/virt/libvirt_conn.py:395
#, python-format
-msgid "virsh said: %r"
-msgstr "virsh dijo: %r"
+#~ msgid "Couldn't get IP, using 127.0.0.1 %s"
+#~ msgstr "No puedo obtener IP, usando 127.0.0.1 %s"
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
-msgstr "genial, es un dispositivo"
+#, python-format
+#~ msgid ""
+#~ "Access key %s has had %d failed authentications and will be locked out for "
+#~ "%d minutes."
+#~ msgstr ""
+#~ "La clave de acceso %s ha tenido %d fallos de autenticación y se bloqueará "
+#~ "por %d minutos."
-#: nova/virt/libvirt_conn.py:407
#, python-format
-msgid "data: %r, fpath: %r"
-msgstr "datos: %r, fpath: %r"
+#~ msgid "arg: %s\t\tval: %s"
+#~ msgstr "arg: %s \t \t val: %s"
-#: nova/virt/libvirt_conn.py:415
#, python-format
-msgid "Contents of file %s: %r"
-msgstr "Contenidos del fichero %s: %r"
+#~ msgid "Authenticated Request For %s:%s)"
+#~ msgstr "Solicitud de autenticación para %s:%s"
-#: nova/virt/libvirt_conn.py:449
#, python-format
-msgid "instance %s: Creating image"
-msgstr "instancia %s: Creando imagen"
+#~ msgid "Adding role %s to user %s for project %s"
+#~ msgstr "Añadiendo rol %s al usuario %s para el proyecto %s"
-#: nova/virt/libvirt_conn.py:505
#, python-format
-msgid "instance %s: injecting key into image %s"
-msgstr "instancia %s: inyectando clave en la imagen %s"
+#~ msgid "Removing role %s from user %s for project %s"
+#~ msgstr "Eliminando rol %s del usuario %s para el proyecto %s"
-#: nova/virt/libvirt_conn.py:508
#, python-format
-msgid "instance %s: injecting net into image %s"
-msgstr "instancia %s: inyectando red en la imagen %s"
+#~ msgid "Unauthorized request for controller=%s and action=%s"
+#~ msgstr "Solicitud no autorizada para controller=%s y action=%s"
-#: nova/virt/libvirt_conn.py:516
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
-msgstr ""
-"instancia %s: ignorando el error al inyectar datos en la imagen %s (%s)"
+#~ msgid "Getting x509 for user: %s on project: %s"
+#~ msgstr "Obteniendo x509 para el usuario: %s en el proyecto %s"
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
#, python-format
-msgid "instance %s: starting toXML method"
-msgstr "instancia %s: comenzando método toXML"
+#~ msgid "Create project %s managed by %s"
+#~ msgstr "Creación del proyecto %s gestionada por %s"
-#: nova/virt/libvirt_conn.py:589
#, python-format
-msgid "instance %s: finished toXML method"
-msgstr "instancia %s: finalizado método toXML"
+#~ msgid "Removing user %s from project %s"
+#~ msgstr "Eliminando usuario %s del proyecto %s"
-#: nova/virt/xenapi_conn.py:113
-msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
-msgstr ""
-"Debes especificar xenapi_connection_url, xenapi_connection_username "
-"(opcional), y xenapi_connection_password para usar connection_type=xenapi"
+#, python-format
+#~ msgid "Adding user %s to project %s"
+#~ msgstr "Añadiendo usuario %s al proyecto %s"
-#: nova/virt/xenapi_conn.py:263
#, python-format
-msgid "Task [%s] %s status: success %s"
-msgstr "Tarea [%s] %s estado: éxito %s"
+#~ msgid "Unsupported API request: controller = %s,action = %s"
+#~ msgstr "Solicitud de API no soportada: controller=%s,action=%s"
-#: nova/virt/xenapi_conn.py:271
#, python-format
-msgid "Task [%s] %s status: %s %s"
-msgstr "Tarea [%s] %s estado: %s %s"
+#~ msgid "Associate address %s to instance %s"
+#~ msgstr "Asociar dirección %s a la instancia %s"
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
#, python-format
-msgid "Got exception: %s"
-msgstr "Obtenida excepción %s"
+#~ msgid "Attach volume %s to instacne %s at %s"
+#~ msgstr "Asociar volumen %s a la instancia %s en %s"
-#: nova/virt/xenapi/fake.py:72
#, python-format
-msgid "%s: _db_content => %s"
-msgstr "%s: _db_content => %s"
+#~ msgid "Registered image %s with id %s"
+#~ msgstr "Registrada imagen %s con id %s"
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
-msgstr "Lanzando NotImplemented"
+#, python-format
+#~ msgid "User %s is already a member of the group %s"
+#~ msgstr "El usuario %s ya es miembro de el grupo %s"
-#: nova/virt/xenapi/fake.py:249
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
-msgstr "xenapi.fake no tiene una implementación para %s"
+#~ msgid "User %s is not a member of project %s"
+#~ msgstr "El usuario %s no es miembro del proyecto %s"
-#: nova/virt/xenapi/fake.py:283
#, python-format
-msgid "Calling %s %s"
-msgstr "Llamando %s %s"
+#~ msgid "failed authorization: no project named %s (user=%s)"
+#~ msgstr ""
+#~ "fallo de autorización: no existe proyecto con el nombre %s (usuario=%s)"
-#: nova/virt/xenapi/fake.py:288
#, python-format
-msgid "Calling getter %s"
-msgstr "Llanado al adquiridor %s"
+#~ msgid "Failed authorization: user %s not admin and not member of project %s"
+#~ msgstr ""
+#~ "Fallo de autorización: el usuario %s no es administrador y no es miembro del "
+#~ "proyecto %s"
-#: nova/virt/xenapi/fake.py:340
#, python-format
-msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
-msgstr ""
-"xenapi.fake no tiene una implementación para %s o ha sido llamada con un "
-"número incorrecto de argumentos"
+#~ msgid "Created user %s (admin: %r)"
+#~ msgstr "Creado usuario %s (administrador: %r)"
-#: nova/virt/xenapi/network_utils.py:40
#, python-format
-msgid "Found non-unique network for bridge %s"
-msgstr "Encontrada una red no única para el puente %s"
+#~ msgid "Created project %s with manager %s"
+#~ msgstr "Proyecto %s creado con administrador %s"
-#: nova/virt/xenapi/network_utils.py:43
#, python-format
-msgid "Found no network for bridge %s"
-msgstr "No se ha encontrado red para el puente %s"
+#~ msgid "Removing role %s from user %s on project %s"
+#~ msgstr "Eliminando rol %s al usuario %s en el proyecto %s"
-#: nova/virt/xenapi/vm_utils.py:127
#, python-format
-msgid "Created VM %s as %s."
-msgstr "Creada VM %s cómo %s"
+#~ msgid "Adding role %s to user %s in project %s"
+#~ msgstr "Añadiendo rol %s al usuario %s en el proyecto %s"
-#: nova/virt/xenapi/vm_utils.py:147
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
-msgstr "Creando VBD para VM %s, VDI %s... "
+#~ msgid "Remove user %s from project %s"
+#~ msgstr "Eliminar usuario %s del proyecto %s"
-#: nova/virt/xenapi/vm_utils.py:149
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
-msgstr "Creado VBD %s for VM %s, VDI %s."
+#~ msgid "Admin status set to %r for user %s"
+#~ msgstr "El estado del administrador se ha fijado a %r para el usuario %s"
-#: nova/virt/xenapi/vm_utils.py:165
#, python-format
-msgid "VBD not found in instance %s"
-msgstr "VBD no encontrado en la instancia %s"
+#~ msgid "Going to try and terminate %s"
+#~ msgstr "Se va a probar y terminar %s"
-#: nova/virt/xenapi/vm_utils.py:175
#, python-format
-msgid "Unable to unplug VBD %s"
-msgstr "Imposible desconectar VBD %s"
+#~ msgid "Casting to scheduler for %s/%s's instance %s"
+#~ msgstr "Llamando al planificar para %s/%s insntancia %s"
-#: nova/virt/xenapi/vm_utils.py:187
#, python-format
-msgid "Unable to destroy VBD %s"
-msgstr "Imposible destruir VBD %s"
+#~ msgid "Quota exceeeded for %s, tried to run %s instances"
+#~ msgstr "Quota superada por %s, intentando lanzar %s instancias"
-#: nova/virt/xenapi/vm_utils.py:202
#, python-format
-msgid "Creating VIF for VM %s, network %s."
-msgstr "Creando VIF para VM %s, red %s."
+#~ msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+#~ msgstr "check_instance_lock: arguments: |%s| |%s| |%s|"
-#: nova/virt/xenapi/vm_utils.py:205
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
-msgstr "Creado VIF %s para VM %s, red %s."
+#~ msgid "Input partition size not evenly divisible by sector size: %d / %d"
+#~ msgstr ""
+#~ "El tamaño de la partición de entrada no es divisible de forma uniforme por "
+#~ "el tamaño del sector: %d / %d"
-#: nova/virt/xenapi/vm_utils.py:216
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
-msgstr "Creando snapshot de la VM %s con la etiqueta '%s'..."
+#~ msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+#~ msgstr ""
+#~ "Los bytes del almacenamiento local no son divisibles de forma uniforme por "
+#~ "el tamaño del sector: %d / %d"
-#: nova/virt/xenapi/vm_utils.py:229
#, python-format
-msgid "Created snapshot %s from VM %s."
-msgstr "Creando snapshot %s de la VM %s"
+#~ msgid "volume %s: creating lv of size %sG"
+#~ msgstr "volumen %s: creando lv de tamaño %sG"
-#: nova/virt/xenapi/vm_utils.py:243
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
-msgstr "Solicitando a xapi la subida de %s cómo %s'"
+#~ msgid "Disassociating address %s"
+#~ msgstr "Desasociando la dirección %s"
-#: nova/virt/xenapi/vm_utils.py:261
#, python-format
-msgid "Asking xapi to fetch %s as %s"
-msgstr "Solicitando a xapi obtener %s cómo %s"
+#~ msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+#~ msgstr ""
+#~ "intentando reiniciar una instancia que no está en ejecución: %s (estado: %s "
+#~ "esperado: %s)"
-#: nova/virt/xenapi/vm_utils.py:279
#, python-format
-msgid "Looking up vdi %s for PV kernel"
-msgstr "Buscando vid %s para el kernel PV"
+#~ msgid ""
+#~ "trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+#~ msgstr ""
+#~ "intentando crear un snapshot de una instancia que no está en ejecución: %s "
+#~ "(estado: %s esperado: %s)"
-#: nova/virt/xenapi/vm_utils.py:290
#, python-format
-msgid "PV Kernel in VDI:%d"
-msgstr "PV Kernel en VDI:%d"
+#~ msgid "Detach volume %s from mountpoint %s on instance %s"
+#~ msgstr "Desvinculando volumen %s del punto de montaje %s en la instancia %s"
-#: nova/virt/xenapi/vm_utils.py:318
#, python-format
-msgid "VDI %s is still available"
-msgstr "VDI %s está todavía disponible"
+#~ msgid "Cannot get blockstats for \"%s\" on \"%s\""
+#~ msgstr "No puedo obtener estadísticas del bloque para \"%s\" en \"%s\""
-#: nova/virt/xenapi/vm_utils.py:331
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
-msgstr "(VM_UTILS) xenserver vm state -> |%s|"
+#~ msgid "Cannot get ifstats for \"%s\" on \"%s\""
+#~ msgstr "No puedo obtener estadísticas de la interfaz para \"%s\" en \"%s\""
-#: nova/virt/xenapi/vm_utils.py:333
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
-msgstr "(VM_UTILS) xenapi power_state -> |%s|"
+#~ msgid "No instance for id %s"
+#~ msgstr "No hay instancia con id %s"
-#: nova/virt/xenapi/vm_utils.py:390
#, python-format
-msgid "VHD %s has parent %s"
-msgstr "VHD %s tiene cómo padre a %s"
+#~ msgid "no keypair for user %s, name %s"
+#~ msgstr "no hay par de claves para el usuario %s, nombre %s"
-#: nova/virt/xenapi/vm_utils.py:407
#, python-format
-msgid "Re-scanning SR %s"
-msgstr "Re-escaneando SR %s"
+#~ msgid "No service for %s, %s"
+#~ msgstr "No hay servicio para %s, %s"
-#: nova/virt/xenapi/vm_utils.py:431
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
-msgstr ""
-"El padre %s no concuerda con el padre original %s, esperando la unión..."
+#~ msgid "No volume for id %s"
+#~ msgstr "No hay volumen para el id %s"
-#: nova/virt/xenapi/vm_utils.py:448
#, python-format
-msgid "No VDIs found for VM %s"
-msgstr "No se han encontrado VDI's para VM %s"
+#~ msgid "No security group named %s for project: %s"
+#~ msgstr "No hay un grupo de seguridad con nombre %s para el proyecto: %s"
-#: nova/virt/xenapi/vm_utils.py:452
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
-msgstr "Número no esperado de VDIs (%s) encontrados para VM %s"
+#~ msgid "Parallax returned HTTP error %d from request for /images/detail"
+#~ msgstr ""
+#~ "Parallax ha devuelto un error HTTP %d para la petición para /images/detail"
-#: nova/virt/xenapi/vmops.py:62
#, python-format
-msgid "Attempted to create non-unique name %s"
-msgstr "Intentado la creación del nombre no único %s"
+#~ msgid "Parallax returned HTTP error %d from request for /images"
+#~ msgstr "Parallax ha devuelto un error HTTP %d a la petición para /images"
-#: nova/virt/xenapi/vmops.py:99
#, python-format
-msgid "Starting VM %s..."
-msgstr "Iniciando VM %s..."
+#~ msgid "IP %s leased to bad mac %s vs %s"
+#~ msgstr "IP %s asociada a una mac incorrecta %s vs %s"
-#: nova/virt/xenapi/vmops.py:101
#, python-format
-msgid "Spawning VM %s created %s."
-msgstr "Iniciando VM %s creado %s."
+#~ msgid "Unauthorized attempt to get object %s from bucket %s"
+#~ msgstr "Intento no autorizado de obtener el objeto %s en el cubo %s"
-#: nova/virt/xenapi/vmops.py:112
#, python-format
-msgid "Instance %s: booted"
-msgstr "Instancia %s: iniciada"
+#~ msgid "Getting object: %s / %s"
+#~ msgstr "Obteniendo objeto: %s / %s"
-#: nova/virt/xenapi/vmops.py:137
#, python-format
-msgid "Instance not present %s"
-msgstr "Instancia no existente %s"
+#~ msgid "Putting object: %s / %s"
+#~ msgstr "Colocando objeto: %s / %s"
-#: nova/virt/xenapi/vmops.py:166
#, python-format
-msgid "Starting snapshot for VM %s"
-msgstr "Comenzando snapshot para la VM %s"
+#~ msgid "Unauthorized attempt to upload object %s to bucket %s"
+#~ msgstr "Intento no autorizado de subir el objeto %s al cubo %s"
-#: nova/virt/xenapi/vmops.py:174
#, python-format
-msgid "Unable to Snapshot %s: %s"
-msgstr "Incapaz de realizar snapshot %s: %s"
+#~ msgid "Deleting object: %s / %s"
+#~ msgstr "Eliminando objeto: %s / %s"
-#: nova/virt/xenapi/vmops.py:184
#, python-format
-msgid "Finished snapshot and upload for VM %s"
-msgstr "Finalizado el snapshot y la subida de la VM %s"
+#~ msgid "Toggling publicity flag of image %s %r"
+#~ msgstr "Cambiando los atributos de publicidad de la imagen %s %r"
-#: nova/virt/xenapi/vmops.py:252
#, python-format
-msgid "suspend: instance not present %s"
-msgstr "suspendido: instancia no encontrada: %s"
+#~ msgid "Creating disk for %s by attaching disk file %s"
+#~ msgstr ""
+#~ "Creando disco para %s a través de la asignación del fichero de disco %s"
-#: nova/virt/xenapi/vmops.py:262
#, python-format
-msgid "resume: instance not present %s"
-msgstr "reanudar: instancia no encontrada %s"
+#~ msgid "WMI job succeeded: %s, Elapsed=%s "
+#~ msgstr "Trabajo WMI ha tenido exito: %s, Transcurrido=%s "
-#: nova/virt/xenapi/vmops.py:271
#, python-format
-msgid "Instance not found %s"
-msgstr "instancia no encontrada %s"
+#~ msgid "Created switch port %s on switch %s"
+#~ msgstr "Creado puerto %s en el switch %s"
-#: nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Introducing %s..."
-msgstr "Introduciendo %s..."
+#~ msgid "instance %s: deleting instance files %s"
+#~ msgstr "instancia %s: eliminando los ficheros de la instancia %s"
-#: nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Introduced %s as %s."
-msgstr "Introducido %s cómo %s."
+#~ msgid "Finished retreving %s -- placed in %s"
+#~ msgstr "Finalizada la obtención de %s -- coloado en %s"
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
-msgstr "Imposible crear el repositorio de almacenamiento"
+#, python-format
+#~ msgid "Failed to change vm state of %s to %s"
+#~ msgstr "Fallo al cambiar el estado de la vm de %s a %s"
-#: nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Unable to find SR from VBD %s"
-msgstr "Imposible encontrar SR en VBD %s"
+#~ msgid "Successfully changed vm state of %s to %s"
+#~ msgstr "Cambio de estado de la vm con éxito de %s a %s"
-#: nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "Forgetting SR %s ... "
-msgstr "Olvidando SR %s... "
+#~ msgid ""
+#~ "Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
+#~ "cpu_time=%s"
+#~ msgstr ""
+#~ "Obtenida información para vm %s: state=%s, mem=%s, num_cpu=%s, cpu_time=%s"
-#: nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
-msgstr "Ignorando excepción %s al obtener PBDs de %s"
+#~ msgid "instance %s: ignoring error injecting data into image %s (%s)"
+#~ msgstr ""
+#~ "instancia %s: ignorando el error al inyectar datos en la imagen %s (%s)"
-#: nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
-msgstr "Ignorando excepción %s al desconectar PBD %s"
+#~ msgid "Contents of file %s: %r"
+#~ msgstr "Contenidos del fichero %s: %r"
-#: nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Forgetting SR %s done."
-msgstr "Olvidando SR %s completado."
+#~ msgid "instance %s: injecting net into image %s"
+#~ msgstr "instancia %s: inyectando red en la imagen %s"
-#: nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
-msgstr "Ignorando excepción %s al olvidar SR %s"
+#~ msgid "instance %s: injecting key into image %s"
+#~ msgstr "instancia %s: inyectando clave en la imagen %s"
-#: nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "Unable to introduce VDI on SR %s"
-msgstr "Incapaz de insertar VDI en SR %s"
+#~ msgid "data: %r, fpath: %r"
+#~ msgstr "datos: %r, fpath: %r"
-#: nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Unable to get record of VDI %s on"
-msgstr "Imposible obtener copia del VDI %s en"
+#~ msgid "Task [%s] %s status: %s %s"
+#~ msgstr "Tarea [%s] %s estado: %s %s"
-#: nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Unable to introduce VDI for SR %s"
-msgstr "Inposible insertar VDI para SR %s"
+#~ msgid "Task [%s] %s status: success %s"
+#~ msgstr "Tarea [%s] %s estado: éxito %s"
-#: nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Unable to obtain target information %s, %s"
-msgstr "Imposible obtener información del destino %s, %s"
+#~ msgid "Calling %s %s"
+#~ msgstr "Llamando %s %s"
-#: nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Mountpoint cannot be translated: %s"
-msgstr "Punto de montaje no puede ser traducido: %s"
+#~ msgid "%s: _db_content => %s"
+#~ msgstr "%s: _db_content => %s"
-#: nova/virt/xenapi/volumeops.py:51
#, python-format
-msgid "Attach_volume: %s, %s, %s"
-msgstr "Attach_volume: %s, %s, %s"
+#~ msgid "Created VBD %s for VM %s, VDI %s."
+#~ msgstr "Creado VBD %s for VM %s, VDI %s."
-#: nova/virt/xenapi/volumeops.py:69
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
-msgstr "Inpoisble crear VDI en SR %s para la instancia %s"
+#~ msgid "Creating VBD for VM %s, VDI %s ... "
+#~ msgstr "Creando VBD para VM %s, VDI %s... "
-#: nova/virt/xenapi/volumeops.py:81
#, python-format
-msgid "Unable to use SR %s for instance %s"
-msgstr "Imposible utilizar SR %s para la instancia %s"
+#~ msgid "Created VIF %s for VM %s, network %s."
+#~ msgstr "Creado VIF %s para VM %s, red %s."
-#: nova/virt/xenapi/volumeops.py:93
#, python-format
-msgid "Unable to attach volume to instance %s"
-msgstr "Imposible adjuntar volumen a la instancia %s"
+#~ msgid "Creating VIF for VM %s, network %s."
+#~ msgstr "Creando VIF para VM %s, red %s."
-#: nova/virt/xenapi/volumeops.py:95
#, python-format
-msgid "Mountpoint %s attached to instance %s"
-msgstr "Punto de montaje %s unido a la instancia %s"
+#~ msgid "Created VM %s as %s."
+#~ msgstr "Creada VM %s cómo %s"
-#: nova/virt/xenapi/volumeops.py:106
#, python-format
-msgid "Detach_volume: %s, %s"
-msgstr "Detach_volume: %s, %s"
+#~ msgid "Asking xapi to upload %s as '%s'"
+#~ msgstr "Solicitando a xapi la subida de %s cómo %s'"
-#: nova/virt/xenapi/volumeops.py:113
#, python-format
-msgid "Unable to locate volume %s"
-msgstr "Imposible encontrar volumen %s"
+#~ msgid "VHD %s has parent %s"
+#~ msgstr "VHD %s tiene cómo padre a %s"
-#: nova/virt/xenapi/volumeops.py:121
#, python-format
-msgid "Unable to detach volume %s"
-msgstr "Imposible desasociar volumen %s"
+#~ msgid "Asking xapi to fetch %s as %s"
+#~ msgstr "Solicitando a xapi obtener %s cómo %s"
-#: nova/virt/xenapi/volumeops.py:128
#, python-format
-msgid "Mountpoint %s detached from instance %s"
-msgstr "Punto d emontaje %s desasociado de la instancia %s"
+#~ msgid "PV Kernel in VDI:%d"
+#~ msgstr "PV Kernel en VDI:%d"
-#: nova/volume/api.py:44
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
-msgstr "Quota excedida para %s, intentando crear el volumen %sG"
+#~ msgid "Unexpected number of VDIs (%s) found for VM %s"
+#~ msgstr "Número no esperado de VDIs (%s) encontrados para VM %s"
-#: nova/volume/api.py:46
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
-msgstr "Quota de volumen superada. No puedes crear un volumen de tamaño %s"
+#~ msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+#~ msgstr ""
+#~ "El padre %s no concuerda con el padre original %s, esperando la unión..."
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
-msgstr "El estado del volumen debe estar disponible"
+#, python-format
+#~ msgid "suspend: instance not present %s"
+#~ msgstr "suspendido: instancia no encontrada: %s"
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
-msgstr "El volumen ya está asociado previamente"
+#, python-format
+#~ msgid "Introduced %s as %s."
+#~ msgstr "Introducido %s cómo %s."
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
-msgstr "El volumen ya ha sido desasociado previamente"
+#, python-format
+#~ msgid "resume: instance not present %s"
+#~ msgstr "reanudar: instancia no encontrada %s"
-#: nova/volume/driver.py:76
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
-msgstr "Recuperandose de una ejecución fallida. Intenta el número %s"
+#~ msgid "Instance not found %s"
+#~ msgstr "instancia no encontrada %s"
-#: nova/volume/driver.py:85
#, python-format
-msgid "volume group %s doesn't exist"
-msgstr "el grupo de volumenes %s no existe"
+#~ msgid "Ignoring exception %s when getting PBDs for %s"
+#~ msgstr "Ignorando excepción %s al obtener PBDs de %s"
-#: nova/volume/driver.py:210
#, python-format
-msgid "FAKE AOE: %s"
-msgstr "Falso AOE: %s"
+#~ msgid "Unable to create VDI on SR %s for instance %s"
+#~ msgstr "Inpoisble crear VDI en SR %s para la instancia %s"
-#: nova/volume/driver.py:315
#, python-format
-msgid "FAKE ISCSI: %s"
-msgstr "Falso ISCSI: %s"
+#~ msgid "Unable to obtain target information %s, %s"
+#~ msgstr "Imposible obtener información del destino %s, %s"
-#: nova/volume/manager.py:85
#, python-format
-msgid "Re-exporting %s volumes"
-msgstr "Exportando de nuevo los volumenes %s"
+#~ msgid "Ignoring exception %s when forgetting SR %s"
+#~ msgstr "Ignorando excepción %s al olvidar SR %s"
-#: nova/volume/manager.py:93
#, python-format
-msgid "volume %s: creating"
-msgstr "volumen %s: creando"
+#~ msgid "Ignoring exception %s when unplugging PBD %s"
+#~ msgstr "Ignorando excepción %s al desconectar PBD %s"
-#: nova/volume/manager.py:102
#, python-format
-msgid "volume %s: creating lv of size %sG"
-msgstr "volumen %s: creando lv de tamaño %sG"
+#~ msgid "Attach_volume: %s, %s, %s"
+#~ msgstr "Attach_volume: %s, %s, %s"
-#: nova/volume/manager.py:106
#, python-format
-msgid "volume %s: creating export"
-msgstr "volumen %s: exportando"
+#~ msgid "Unable to use SR %s for instance %s"
+#~ msgstr "Imposible utilizar SR %s para la instancia %s"
-#: nova/volume/manager.py:113
#, python-format
-msgid "volume %s: created successfully"
-msgstr "volumen %s: creado satisfactoriamente"
+#~ msgid "Mountpoint %s attached to instance %s"
+#~ msgstr "Punto de montaje %s unido a la instancia %s"
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
-msgstr "El volumen todavía está asociado"
+#, python-format
+#~ msgid "Detach_volume: %s, %s"
+#~ msgstr "Detach_volume: %s, %s"
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
-msgstr "Volumen no local a este nodo"
+#, python-format
+#~ msgid "Mountpoint %s detached from instance %s"
+#~ msgstr "Punto d emontaje %s desasociado de la instancia %s"
-#: nova/volume/manager.py:124
#, python-format
-msgid "volume %s: removing export"
-msgstr "volumen %s: eliminando exportación"
+#~ msgid "Quota exceeeded for %s, tried to create %sG volume"
+#~ msgstr "Quota excedida para %s, intentando crear el volumen %sG"
-#: nova/volume/manager.py:126
#, python-format
-msgid "volume %s: deleting"
-msgstr "volumen %s: eliminando"
+#~ msgid "Volume quota exceeded. You cannot create a volume of size %s"
+#~ msgstr "Quota de volumen superada. No puedes crear un volumen de tamaño %s"
-#: nova/volume/manager.py:129
#, python-format
-msgid "volume %s: deleted successfully"
-msgstr "volumen %s: eliminado satisfactoriamente"
+#~ msgid "instance %s: attach failed %s, removing"
+#~ msgstr "instalación %s: asociación fallida %s, eliminando"
+
+#, python-format
+#~ msgid "instance %s: attaching volume %s to %s"
+#~ msgstr "instancia %s: asociando volumen %s a %s"
+
+#, python-format
+#~ msgid "Snapshotting VM %s with label '%s'..."
+#~ msgstr "Creando snapshot de la VM %s con la etiqueta '%s'..."
+
+#, python-format
+#~ msgid "Created snapshot %s from VM %s."
+#~ msgstr "Creando snapshot %s de la VM %s"
+
+#, python-format
+#~ msgid "Unable to Snapshot %s: %s"
+#~ msgstr "Incapaz de realizar snapshot %s: %s"
+
+#, python-format
+#~ msgid "Adding sitewide role %s to user %s"
+#~ msgstr "Añadiendo rol global %s al usuario %s"
+
+#, python-format
+#~ msgid "Removing sitewide role %s from user %s"
+#~ msgstr "Eliminando rol global %s del usuario %s"
+
+#, python-format
+#~ msgid "Del: disk %s vm %s"
+#~ msgstr "Del: disco %s vm %s"
+
+#, python-format
+#~ msgid "Spawning VM %s created %s."
+#~ msgstr "Iniciando VM %s creado %s."
diff --git a/po/it.po b/po/it.po
index 3f439f9dd..1beb116a3 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,2135 +7,2892 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
-"PO-Revision-Date: 2011-01-14 17:17+0000\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
+"PO-Revision-Date: 2011-02-22 19:34+0000\n"
"Last-Translator: Armando Migliaccio <Unknown>\n"
"Language-Team: Italian <it@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-05 05:36+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-03-19 06:19+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr "Nessun host trovato"
+
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr ""
+"Si e' verificato un errore inatteso durante l'esecuzione del comando."
+
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
+"%(description)s\n"
+"Comando: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr "DB eccezione wrappata"
+
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr "Eccezione non gestita"
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr ""
+"Quota ecceduta per %(pid)s, tentato di creare un volume di dimensione "
+"%(size)sG"
+
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
+msgstr "Quota volume ecceduta. Non puoi creare un volume di dimensione %sG"
+
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr "Lo stato del volume deve essere disponibile"
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr "Il volume é già collegato"
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr "Il volume é già scollegato"
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr "Impossibile leggere l'indirizzo IP privato"
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr "Impossibile leggere gli indirizzi IP pubblici"
+
+#: ../nova/api/openstack/servers.py:152
+#, python-format
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr ""
+"La proprietà %(param)s non é stata trovata per l'immagine %(_image_id)s"
+
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr "No keypairs definita"
+
+#: ../nova/api/openstack/servers.py:238
+#, python-format
+msgid "Compute.api::lock %s"
+msgstr "Compute.api::lock %s"
+
+#: ../nova/api/openstack/servers.py:253
+#, python-format
+msgid "Compute.api::unlock %s"
+msgstr "Compute.api::unlock %s"
+
+#: ../nova/api/openstack/servers.py:267
+#, python-format
+msgid "Compute.api::get_lock %s"
+msgstr "Compute.api::get_lock %s"
+
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr "Compute.api::reset_network %s"
+
+#: ../nova/api/openstack/servers.py:292
+#, python-format
+msgid "Compute.api::pause %s"
+msgstr "Compute.api::pause %s"
+
+#: ../nova/api/openstack/servers.py:303
+#, python-format
+msgid "Compute.api::unpause %s"
+msgstr "Compute.api::unpause %s"
+
+#: ../nova/api/openstack/servers.py:314
+#, python-format
+msgid "compute.api::suspend %s"
+msgstr "compute.api::suspend %s"
+
+#: ../nova/api/openstack/servers.py:325
+#, python-format
+msgid "compute.api::resume %s"
+msgstr "compute.api::resume %s"
+
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr "Numero errato di argomenti"
+
+#: ../nova/twistd.py:209
+#, python-format
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr ""
+"Il pidfile %s non esiste. Assicurarsi che il demone é in esecuzione.\n"
+
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr "Nessun processo trovato"
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr "Servire %s"
+
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr "Insieme di FLAGS:"
+
+#: ../nova/twistd.py:266
+#, python-format
+msgid "Starting %s"
+msgstr "Avvio di %s"
+
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
+#, python-format
+msgid "Instance %s not found"
+msgstr "Istanza %s non trovata"
+
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
+#, python-format
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+"Impossible creare il VDI su SR %(sr_ref)s per l'istanza %(instance_name)s"
+
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr "Impossibile usare SR %(sr_ref)s per l'istanza %(instance_name)s"
+
+#: ../nova/virt/xenapi/volumeops.py:91
+#, python-format
+msgid "Unable to attach volume to instance %s"
+msgstr "Impossibile montare il volume all'istanza %s"
+
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr "Mountpoint %(mountpoint)s montato all'istanza %(instance_name)s"
+
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
+#, python-format
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s"
+
+#: ../nova/virt/xenapi/volumeops.py:112
+#, python-format
+msgid "Unable to locate volume %s"
+msgstr "Impossibile localizzare il volume %s"
+
+#: ../nova/virt/xenapi/volumeops.py:120
+#, python-format
+msgid "Unable to detach volume %s"
+msgstr "Impossibile smontare il volume %s"
+
+#: ../nova/virt/xenapi/volumeops.py:127
+#, python-format
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr "Mountpoint %(mountpoint)s smontato dall'istanza %(instance_name)s"
+
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr "Tipo dell'istanza sconosciuto: %s"
+
+#: ../nova/crypto.py:46
msgid "Filename of root CA"
-msgstr "Nome del file root CA"
+msgstr "Filename di root CA"
-#: nova/crypto.py:49
+#: ../nova/crypto.py:49
msgid "Filename of private key"
-msgstr "Nome del file della chiave privata"
+msgstr "Nome file della chiave privata"
-#: nova/crypto.py:51
+#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
-msgstr ""
+msgstr "Nome file di root Certificate Revokation List"
-#: nova/crypto.py:53
+#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr "Dove si conservano le chiavi"
-#: nova/crypto.py:55
+#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr "Dove si conserva root CA"
-#: nova/crypto.py:57
+#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr "Si dovrebbe usare un CA per ogni progetto?"
-#: nova/crypto.py:61
+#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr ""
"Soggetto per il certificato degli utenti, %s per progetto, utente, orario"
-#: nova/crypto.py:66
+#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr "Soggetto per il certificato dei progetti, %s per progetto, orario"
-#: nova/crypto.py:71
+#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr "Soggetto per il certificato delle vpn, %s per progetto, orario"
-#: nova/crypto.py:258
+#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr "Percorso dei flags: %s"
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
-msgstr ""
-"Si e' verificato un errore inatteso durante l'esecuzione del comando."
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr "Trasmissione asincrona a %(topic)s %(host)s for %(method)s"
-#: nova/exception.py:36
+#: ../nova/compute/manager.py:78
#, python-format
-msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-msgstr ""
-"%s\n"
-"Comando: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-
-#: nova/exception.py:86
-msgid "Uncaught exception"
-msgstr "Eccezione non gestita"
+msgid "check_instance_lock: decorating: |%s|"
+msgstr "check_instance_lock: decorazione: |%s|"
-#: nova/fakerabbit.py:48
+#: ../nova/compute/manager.py:80
#, python-format
-msgid "(%s) publish (key: %s) %s"
-msgstr "(%s) pubblica (chiave: %s) %s"
+msgid ""
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
+msgstr ""
+"check_instance_lock: argomenti: |%(self)s| |%(context)s| |%(instance_id)s|"
-#: nova/fakerabbit.py:53
+#: ../nova/compute/manager.py:84
#, python-format
-msgid "Publishing to route %s"
-msgstr "Pubblicando sulla route %s"
+msgid "check_instance_lock: locked: |%s|"
+msgstr "check_instance_lock: bloccato: |%s|"
-#: nova/fakerabbit.py:83
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "Declaring queue %s"
-msgstr "Dichiarando la coda %s"
+msgid "check_instance_lock: admin: |%s|"
+msgstr "check_instance_lock: admin: |%s|"
-#: nova/fakerabbit.py:89
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Declaring exchange %s"
-msgstr "Dichiarando il centralino %s"
+msgid "check_instance_lock: executing: |%s|"
+msgstr "check_instance_lock: esecuzione: |%s|"
-#: nova/fakerabbit.py:95
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Binding %s to %s with key %s"
-msgstr "Collegando %s a %s con la chiave %s"
+msgid "check_instance_lock: not executing |%s|"
+msgstr "check_instance_lock: non esecuzione |%s|"
-#: nova/fakerabbit.py:120
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
+msgstr "L'istanza é stata già creata"
+
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "Getting from %s: %s"
-msgstr ""
+msgid "instance %s: starting..."
+msgstr "Istanza %s: in esecuzione..."
-#: nova/rpc.py:92
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
-msgstr ""
-"Il server AMQP su %s:%d non é raggiungibile. Riprovare in %d secondi."
+msgid "instance %s: Failed to spawn"
+msgstr "Istanza %s: esecuzione fallita..."
-#: nova/rpc.py:99
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
-msgstr ""
-"Impossibile connettersi al server AMQP dopo %d tentativi. Terminando "
-"l'applicazione."
+msgid "Terminating instance %s"
+msgstr "Terminando l'istanza %s"
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
-msgstr "Riconnesso alla coda"
+#: ../nova/compute/manager.py:255
+#, python-format
+msgid "Deallocating address %s"
+msgstr "Deallocando l'indirizzo %s"
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
-msgstr "Impossibile prelevare il messaggio dalla coda"
+#: ../nova/compute/manager.py:268
+#, python-format
+msgid "trying to destroy already destroyed instance: %s"
+msgstr "Provando a distruggere una istanza già distrutta: %s"
-#: nova/rpc.py:155
+#: ../nova/compute/manager.py:282
#, python-format
-msgid "Initing the Adapter Consumer for %s"
-msgstr "Inizializzando il Consumer Adapter per %s"
+msgid "Rebooting instance %s"
+msgstr "Riavviando l'istanza %s"
-#: nova/rpc.py:170
+#: ../nova/compute/manager.py:287
#, python-format
-msgid "received %s"
-msgstr "ricevuto %s"
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
-#: nova/rpc.py:183
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "no method for message: %s"
-msgstr "nessun metodo per il messaggio: %s"
+msgid "instance %s: snapshotting"
+msgstr ""
-#: nova/rpc.py:184
+#: ../nova/compute/manager.py:316
#, python-format
-msgid "No method for message: %s"
-msgstr "nessun metodo per il messagggio: %s"
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
-#: nova/rpc.py:245
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "Returning exception %s to caller"
-msgstr "Sollevando eccezione %s al chiamante"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
+msgstr ""
-#: nova/rpc.py:286
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "unpacked context: %s"
-msgstr "contesto decompresso: %s"
+msgid "instance %s: setting admin password"
+msgstr ""
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
-msgstr "Facendo chiamata asincrona..."
+#: ../nova/compute/manager.py:353
+#, python-format
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
+msgstr ""
-#: nova/rpc.py:308
+#: ../nova/compute/manager.py:362
#, python-format
-msgid "MSG_ID is %s"
-msgstr "MSG_ID é %s"
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
+msgstr ""
-#: nova/rpc.py:356
+#: ../nova/compute/manager.py:372
#, python-format
-msgid "response %s"
-msgstr "risposta %s"
+msgid "instance %s: rescuing"
+msgstr ""
-#: nova/rpc.py:365
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "topic is %s"
-msgstr "argomento é %s"
+msgid "instance %s: unrescuing"
+msgstr ""
-#: nova/rpc.py:366
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "message %s"
-msgstr "messaggio %s"
+msgid "instance %s: pausing"
+msgstr ""
-#: nova/service.py:157
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "Starting %s node"
-msgstr "Avviando il nodo %s"
+msgid "instance %s: unpausing"
+msgstr ""
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
-msgstr "Servizio terminato che non ha entry nel database"
+#: ../nova/compute/manager.py:440
+#, python-format
+msgid "instance %s: retrieving diagnostics"
+msgstr ""
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
-msgstr "Il servizio é scomparso dal database, ricreo."
+#: ../nova/compute/manager.py:453
+#, python-format
+msgid "instance %s: suspending"
+msgstr ""
-#: nova/service.py:202
-msgid "Recovered model server connection!"
-msgstr "Connessione al model server ripristinata!"
+#: ../nova/compute/manager.py:472
+#, python-format
+msgid "instance %s: resuming"
+msgstr ""
-#: nova/service.py:208
-msgid "model server went away"
-msgstr "model server é scomparso"
+#: ../nova/compute/manager.py:491
+#, python-format
+msgid "instance %s: locking"
+msgstr ""
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/compute/manager.py:503
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
-msgstr "Datastore %s é irrangiungibile. Riprovare in %d seconds."
+msgid "instance %s: unlocking"
+msgstr ""
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/compute/manager.py:513
#, python-format
-msgid "Serving %s"
-msgstr "Servire %s"
+msgid "instance %s: getting locked state"
+msgstr ""
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
-msgstr "Insieme di FLAGS:"
+#: ../nova/compute/manager.py:526
+#, python-format
+msgid "instance %s: reset network"
+msgstr ""
-#: nova/twistd.py:211
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
+msgid "Get console output for instance %s"
msgstr ""
-"Il pidfile %s non esiste. Assicurarsi che il demone é in esecuzione.\n"
-#: nova/twistd.py:268
+#: ../nova/compute/manager.py:543
#, python-format
-msgid "Starting %s"
-msgstr "Avvio di %s"
+msgid "instance %s: getting ajax console"
+msgstr ""
-#: nova/utils.py:53
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "Inner Exception: %s"
-msgstr "Eccezione interna: %s"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
+msgstr ""
-#: nova/utils.py:54
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "Class %s cannot be found"
-msgstr "Classe %s non può essere trovata"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
+msgstr ""
-#: nova/utils.py:113
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Fetching %s"
-msgstr "Prelievo %s"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
+msgstr ""
-#: nova/utils.py:125
+#: ../nova/compute/manager.py:588
#, python-format
-msgid "Running cmd (subprocess): %s"
-msgstr "Esecuzione del comando (sottoprocesso): %s"
+msgid "Detaching volume from unknown instance %s"
+msgstr ""
-#: nova/utils.py:138
+#: ../nova/scheduler/simple.py:53
#, python-format
-msgid "Result was %s"
-msgstr "Il risultato é %s"
+msgid "Host %s is not alive"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
+msgstr ""
-#: nova/utils.py:171
+#: ../nova/scheduler/simple.py:87
#, python-format
-msgid "debug in callback: %s"
-msgstr "debug in callback: %s"
+msgid "Host %s not available"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr ""
-#: nova/utils.py:176
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
+msgstr ""
+
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "Running %s"
+msgid "Re-exporting %s volumes"
msgstr ""
-#: nova/utils.py:207
+#: ../nova/volume/manager.py:90
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
+msgid "volume %s: skipping export"
msgstr ""
-#: nova/utils.py:289
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Invalid backend: %s"
+msgid "volume %s: creating"
msgstr ""
-#: nova/utils.py:300
+#: ../nova/volume/manager.py:108
#, python-format
-msgid "backend %s"
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
msgstr ""
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
+#: ../nova/volume/manager.py:112
+#, python-format
+msgid "volume %s: creating export"
msgstr ""
-#: nova/api/ec2/__init__.py:142
+#: ../nova/volume/manager.py:123
#, python-format
-msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
+msgid "volume %s: created successfully"
+msgstr ""
+
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
msgstr ""
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
+msgstr ""
+
+#: ../nova/volume/manager.py:136
#, python-format
-msgid "Authentication Failure: %s"
+msgid "volume %s: removing export"
msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/volume/manager.py:138
#, python-format
-msgid "Authenticated Request For %s:%s)"
+msgid "volume %s: deleting"
msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/volume/manager.py:147
#, python-format
-msgid "action: %s"
+msgid "volume %s: deleted successfully"
msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/virt/xenapi/fake.py:74
#, python-format
-msgid "arg: %s\t\tval: %s"
+msgid "%(text)s: _db_content => %(content)s"
msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:306
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
+msgid "xenapi.fake does not have an implementation for %s"
msgstr ""
-#: nova/api/ec2/__init__.py:339
+#: ../nova/virt/xenapi/fake.py:341
#, python-format
-msgid "NotFound raised: %s"
+msgid "Calling %(localname)s %(impl)s"
msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/virt/xenapi/fake.py:346
#, python-format
-msgid "ApiError raised: %s"
+msgid "Calling getter %s"
msgstr ""
-#: nova/api/ec2/__init__.py:349
+#: ../nova/virt/xenapi/fake.py:406
#, python-format
-msgid "Unexpected error raised: %s"
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
msgstr ""
-#: nova/api/ec2/admin.py:84
+#: ../nova/tests/test_cloud.py:268
#, python-format
-msgid "Creating new user: %s"
+msgid "Need to watch instance %s until it's running..."
msgstr ""
-#: nova/api/ec2/admin.py:92
-#, python-format
-msgid "Deleting user: %s"
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
msgstr ""
-#: nova/api/ec2/admin.py:114
+#: ../nova/network/linux_net.py:187
#, python-format
-msgid "Adding role %s to user %s for project %s"
+msgid "Starting VLAN inteface %s"
msgstr ""
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/network/linux_net.py:208
#, python-format
-msgid "Adding sitewide role %s to user %s"
+msgid "Starting Bridge interface for %s"
msgstr ""
-#: nova/api/ec2/admin.py:122
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
#, python-format
-msgid "Removing role %s from user %s for project %s"
+msgid "Hupping dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/network/linux_net.py:316
#, python-format
-msgid "Removing sitewide role %s from user %s"
+msgid "Pid %d is stale, relaunching dnsmasq"
msgstr ""
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
+#, python-format
+msgid "killing radvd threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/network/linux_net.py:360
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
+msgid "Pid %d is stale, relaunching radvd"
msgstr ""
-#: nova/api/ec2/admin.py:159
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
#, python-format
-msgid "Create project %s managed by %s"
+msgid "Killing dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/utils.py:58
#, python-format
-msgid "Delete project: %s"
+msgid "Inner Exception: %s"
+msgstr "Eccezione interna: %s"
+
+#: ../nova/utils.py:59
+#, python-format
+msgid "Class %s cannot be found"
+msgstr "Classe %s non può essere trovata"
+
+#: ../nova/utils.py:118
+#, python-format
+msgid "Fetching %s"
+msgstr "Prelievo %s"
+
+#: ../nova/utils.py:130
+#, python-format
+msgid "Running cmd (subprocess): %s"
+msgstr "Esecuzione del comando (sottoprocesso): %s"
+
+#: ../nova/utils.py:143 ../nova/utils.py:183
+#, python-format
+msgid "Result was %s"
+msgstr "Il risultato é %s"
+
+#: ../nova/utils.py:159
+#, python-format
+msgid "Running cmd (SSH): %s"
msgstr ""
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/utils.py:217
+#, python-format
+msgid "debug in callback: %s"
+msgstr "debug in callback: %s"
+
+#: ../nova/utils.py:222
#, python-format
-msgid "Adding user %s to project %s"
+msgid "Running %s"
msgstr ""
-#: nova/api/ec2/admin.py:188
+#: ../nova/utils.py:262
#, python-format
-msgid "Removing user %s from project %s"
+msgid "Link Local address is not found.:%s"
msgstr ""
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/utils.py:265
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
msgstr ""
-#: nova/api/ec2/cloud.py:117
+#: ../nova/utils.py:363
#, python-format
-msgid "Generating root CA: %s"
+msgid "Invalid backend: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:277
+#: ../nova/utils.py:374
#, python-format
-msgid "Create key pair %s"
+msgid "backend %s"
msgstr ""
-#: nova/api/ec2/cloud.py:285
+#: ../nova/fakerabbit.py:49
#, python-format
-msgid "Delete key pair %s"
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:357
+#: ../nova/fakerabbit.py:54
#, python-format
-msgid "%s is not a valid ipProtocol"
+msgid "Publishing to route %s"
+msgstr "Pubblicando sulla route %s"
+
+#: ../nova/fakerabbit.py:84
+#, python-format
+msgid "Declaring queue %s"
+msgstr "Dichiarando la coda %s"
+
+#: ../nova/fakerabbit.py:90
+#, python-format
+msgid "Declaring exchange %s"
+msgstr "Dichiarando il centralino %s"
+
+#: ../nova/fakerabbit.py:96
+#, python-format
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
msgstr ""
-#: nova/api/ec2/cloud.py:361
-msgid "Invalid port range"
+#: ../nova/fakerabbit.py:121
+#, python-format
+msgid "Getting from %(queue)s: %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:392
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
-msgid "Revoke security group ingress %s"
+msgid "Created VM %s..."
msgstr ""
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
-msgid "No rule for the specified parameters."
+#: ../nova/virt/xenapi/vm_utils.py:138
+#, python-format
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:421
+#: ../nova/virt/xenapi/vm_utils.py:168
#, python-format
-msgid "Authorize security group ingress %s"
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
msgstr ""
-#: nova/api/ec2/cloud.py:432
+#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
-msgid "This rule already exists in group %s"
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:460
+#: ../nova/virt/xenapi/vm_utils.py:187
#, python-format
-msgid "Create Security Group %s"
+msgid "VBD not found in instance %s"
msgstr ""
-#: nova/api/ec2/cloud.py:463
+#: ../nova/virt/xenapi/vm_utils.py:197
#, python-format
-msgid "group %s already exists"
+msgid "Unable to unplug VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:475
+#: ../nova/virt/xenapi/vm_utils.py:209
#, python-format
-msgid "Delete security group %s"
+msgid "Unable to destroy VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
+#: ../nova/virt/xenapi/vm_utils.py:224
#, python-format
-msgid "Get console output for instance %s"
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:543
+#: ../nova/virt/xenapi/vm_utils.py:227
#, python-format
-msgid "Create volume of %s GB"
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:567
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:579
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "Detach volume %s"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
msgstr ""
-#: nova/api/ec2/cloud.py:686
-msgid "Allocate address"
+#: ../nova/virt/xenapi/vm_utils.py:272
+#, python-format
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:691
+#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
-msgid "Release address %s"
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
msgstr ""
-#: nova/api/ec2/cloud.py:696
+#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
-msgid "Associate address %s to instance %s"
+msgid "Size for image %(image)s:%(virtual_size)d"
msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/virt/xenapi/vm_utils.py:332
#, python-format
-msgid "Disassociate address %s"
+msgid "Glance image %s"
msgstr ""
-#: nova/api/ec2/cloud.py:730
-msgid "Going to start terminating instances"
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
+#, python-format
+msgid "Copying VDI %s to /boot/guest on dom0"
msgstr ""
-#: nova/api/ec2/cloud.py:738
+#: ../nova/virt/xenapi/vm_utils.py:352
#, python-format
-msgid "Reboot instance %r"
+msgid "Kernel/Ramdisk VDI %s destroyed"
msgstr ""
-#: nova/api/ec2/cloud.py:775
+#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
-msgid "De-registering image %s"
+msgid "Asking xapi to fetch %(url)s as %(access)s"
msgstr ""
-#: nova/api/ec2/cloud.py:783
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
#, python-format
-msgid "Registered image %s with id %s"
+msgid "Looking up vdi %s for PV kernel"
msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid "attribute not supported: %s"
+msgid "PV Kernel in VDI:%s"
msgstr ""
-#: nova/api/ec2/cloud.py:794
+#: ../nova/virt/xenapi/vm_utils.py:405
#, python-format
-msgid "invalid id: %s"
+msgid "Running pygrub against %s"
msgstr ""
-#: nova/api/ec2/cloud.py:807
-msgid "user or group not specified"
+#: ../nova/virt/xenapi/vm_utils.py:411
+#, python-format
+msgid "Found Xen kernel %s"
msgstr ""
-#: nova/api/ec2/cloud.py:809
-msgid "only group \"all\" is supported"
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
msgstr ""
-#: nova/api/ec2/cloud.py:811
-msgid "operation_type must be add or remove"
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
+#, python-format
+msgid "duplicate name found: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:812
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "Updating image %s publicity"
+msgid "VDI %s is still available"
msgstr ""
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "Failed to get metadata for ip: %s"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "Caught error: %s"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
msgstr ""
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
+#: ../nova/virt/xenapi/vm_utils.py:525
+#, python-format
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "Compute.api::lock %s"
+msgid "Re-scanning SR %s"
msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "Compute.api::unlock %s"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "Compute.api::get_lock %s"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
msgstr ""
-#: nova/api/openstack/servers.py:224
+#: ../nova/virt/xenapi/vm_utils.py:590
#, python-format
-msgid "Compute.api::pause %s"
+msgid "No VDIs found for VM %s"
msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../nova/virt/xenapi/vm_utils.py:594
#, python-format
-msgid "Compute.api::unpause %s"
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
-msgid "compute.api::suspend %s"
+msgid "Creating VBD for VDI %s ... "
msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
-msgid "compute.api::resume %s"
+msgid "Creating VBD for VDI %s done."
msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
#, python-format
-msgid "User %s already exists"
+msgid "Plugging VBD %s ... "
msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
+msgid "Plugging VBD %s done."
msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../nova/virt/xenapi/vm_utils.py:661
#, python-format
-msgid "Project can't be created because project %s already exists"
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vm_utils.py:664
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
msgstr ""
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
-msgid "User \"%s\" not found"
+msgid "Destroying VBD for VDI %s ... "
msgstr ""
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
-msgid "Project \"%s\" not found"
+msgid "Destroying VBD for VDI %s done."
msgstr ""
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
msgstr ""
-#: nova/auth/ldapdriver.py:181
-#, python-format
-msgid "LDAP object for %s doesn't exist"
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
msgstr ""
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
-msgid "User %s is already a member of the group %s"
+msgid "Ignoring XenAPI.Failure %s"
msgstr ""
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""
-#: nova/auth/ldapdriver.py:528
+#: ../nova/virt/xenapi/vm_utils.py:747
#, python-format
-msgid "Group at dn %s doesn't exist"
+msgid "Writing partition table %s done."
msgstr ""
-#: nova/auth/manager.py:259
+#: ../nova/tests/test_rpc.py:89
#, python-format
-msgid "Looking up user: %r"
+msgid "Nested received %(queue)s, %(value)s"
msgstr ""
-#: nova/auth/manager.py:263
+#: ../nova/tests/test_rpc.py:95
#, python-format
-msgid "Failed authorization for access key %s"
+msgid "Nested return %s"
msgstr ""
-#: nova/auth/manager.py:264
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
#, python-format
-msgid "No user found for access key %s"
+msgid "Received %s"
msgstr ""
-#: nova/auth/manager.py:270
-#, python-format
-msgid "Using project name = user name (%s)"
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
msgstr ""
-#: nova/auth/manager.py:275
+#: ../nova/db/sqlalchemy/api.py:133
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
+msgid "No service for id %s"
msgstr ""
-#: nova/auth/manager.py:277
+#: ../nova/db/sqlalchemy/api.py:251
#, python-format
-msgid "No project called %s could be found"
+msgid "No service for %(host)s, %(binary)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/db/sqlalchemy/api.py:608
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "No floating ip for address %s"
msgstr ""
-#: nova/auth/manager.py:283
+#: ../nova/db/sqlalchemy/api.py:629
#, python-format
-msgid "User %s is not a member of project %s"
+msgid "No address for instance %s"
msgstr ""
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/db/sqlalchemy/api.py:961
#, python-format
-msgid "Invalid signature for user %s"
+msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
+#, python-format
+msgid "No network for id %s"
msgstr ""
-#: nova/auth/manager.py:374
-msgid "Must specify project"
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
msgstr ""
-#: nova/auth/manager.py:408
+#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
-msgid "The %s role can not be found"
+msgid "No network for bridge %s"
msgstr ""
-#: nova/auth/manager.py:410
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
#, python-format
-msgid "The %s role is global only"
+msgid "No network for instance %s"
msgstr ""
-#: nova/auth/manager.py:412
+#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
-msgid "Adding role %s to user %s in project %s"
+msgid "Token %s does not exist"
msgstr ""
-#: nova/auth/manager.py:438
+#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
-msgid "Removing role %s from user %s on project %s"
+msgid "No quota for project_id %s"
msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
#, python-format
-msgid "Created project %s with manager %s"
+msgid "Volume %s not found"
msgstr ""
-#: nova/auth/manager.py:523
+#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
-msgid "modifying project %s"
+msgid "No export device found for volume %s"
msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
-msgid "Remove user %s from project %s"
+msgid "No target id found for volume %s"
msgstr ""
-#: nova/auth/manager.py:581
+#: ../nova/db/sqlalchemy/api.py:1572
#, python-format
-msgid "Deleting project %s"
+msgid "No security group with id %s"
msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/db/sqlalchemy/api.py:1589
#, python-format
-msgid "Created user %s (admin: %r)"
+msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/db/sqlalchemy/api.py:1682
#, python-format
-msgid "Deleting user %s"
+msgid "No secuity group rule with id %s"
msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/db/sqlalchemy/api.py:1756
#, python-format
-msgid "Access Key change for user %s"
+msgid "No user for id %s"
msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/db/sqlalchemy/api.py:1772
#, python-format
-msgid "Secret Key change for user %s"
+msgid "No user for access key %s"
msgstr ""
-#: nova/auth/manager.py:659
+#: ../nova/db/sqlalchemy/api.py:1834
#, python-format
-msgid "Admin status set to %r for user %s"
+msgid "No project with id %s"
msgstr ""
-#: nova/auth/manager.py:708
+#: ../nova/db/sqlalchemy/api.py:1979
#, python-format
-msgid "No vpn data for project %s"
+msgid "No console pool with id %(pool_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/db/sqlalchemy/api.py:1996
+#, python-format
+msgid ""
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:2035
+#, python-format
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:2057
+#, python-format
+msgid "on instance %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
-msgid "Launching VPN for %s"
+msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""
-#: nova/compute/api.py:67
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
-msgid "Instance %d was not found in get_network_topic"
+msgid "No zone with id %(zone_id)s"
msgstr ""
-#: nova/compute/api.py:73
+#: ../nova/virt/libvirt_conn.py:160
#, python-format
-msgid "Instance %d has no host"
+msgid "Checking state of %s"
msgstr ""
-#: nova/compute/api.py:92
+#: ../nova/virt/libvirt_conn.py:165
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
+msgid "Current state of %(name)s was %(state)s."
msgstr ""
-#: nova/compute/api.py:94
+#: ../nova/virt/libvirt_conn.py:183
#, python-format
-msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+msgid "Connecting to libvirt: %s"
msgstr ""
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/virt/libvirt_conn.py:258
#, python-format
-msgid "Going to run %s instances..."
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/virt/libvirt_conn.py:283
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
+msgid "Invalid device path %s"
msgstr ""
-#: nova/compute/api.py:279
+#: ../nova/virt/libvirt_conn.py:313
#, python-format
-msgid "Going to try and terminate %s"
+msgid "No disk at %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
msgstr ""
-#: nova/compute/api.py:283
+#: ../nova/virt/libvirt_conn.py:336
#, python-format
-msgid "Instance %d was not found during terminate"
+msgid "instance %s: rebooted"
msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/virt/libvirt_conn.py:339
#, python-format
-msgid "Instance %d is already being terminated"
+msgid "_wait_for_reboot failed: %s"
msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/virt/libvirt_conn.py:382
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "instance %s: rescued"
msgstr ""
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
+#: ../nova/virt/libvirt_conn.py:385
+#, python-format
+msgid "_wait_for_rescue failed: %s"
msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "instance %s: is running"
msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "instance %s: booted"
msgstr ""
-#: nova/compute/disk.py:128
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid "Could not attach image to loopback: %s"
+msgid "instance %s: failed to boot"
msgstr ""
-#: nova/compute/disk.py:136
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "Failed to load partition: %s"
+msgid "virsh said: %r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
msgstr ""
-#: nova/compute/disk.py:158
+#: ../nova/virt/libvirt_conn.py:448
#, python-format
-msgid "Failed to mount filesystem: %s"
+msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""
-#: nova/compute/instance_types.py:41
+#: ../nova/virt/libvirt_conn.py:456
#, python-format
-msgid "Unknown instance type: %s"
+msgid "Contents of file %(fpath)s: %(contents)r"
msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:563
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
+msgid "instance %s: Creating image"
msgstr ""
-#: nova/compute/manager.py:71
+#: ../nova/virt/libvirt_conn.py:646
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:75
+#: ../nova/virt/libvirt_conn.py:649
#, python-format
-msgid "check_instance_lock: locked: |%s|"
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:77
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
#, python-format
-msgid "check_instance_lock: admin: |%s|"
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
msgstr ""
-#: nova/compute/manager.py:82
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
#, python-format
-msgid "check_instance_lock: executing: |%s|"
+msgid "instance %s: starting toXML method"
msgstr ""
-#: nova/compute/manager.py:86
+#: ../nova/virt/libvirt_conn.py:732
#, python-format
-msgid "check_instance_lock: not executing |%s|"
+msgid "instance %s: finished toXML method"
msgstr ""
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
msgstr ""
-#: nova/compute/manager.py:158
+#: ../nova/virt/libvirt_conn.py:1225
#, python-format
-msgid "instance %s: starting..."
+msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""
-#: nova/compute/manager.py:197
+#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
-msgid "instance %s: Failed to spawn"
+msgid "Failed to get metadata for ip: %s"
+msgstr ""
+
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
msgstr ""
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/network/api.py:39
#, python-format
-msgid "Terminating instance %s"
+msgid "Quota exceeeded for %s, tried to allocate address"
msgstr ""
-#: nova/compute/manager.py:217
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
+msgstr ""
+
+#: ../nova/tests/test_volume.py:162
#, python-format
-msgid "Disassociating address %s"
+msgid "Target %s allocated"
msgstr ""
-#: nova/compute/manager.py:230
+#: ../nova/virt/images.py:70
#, python-format
-msgid "Deallocating address %s"
+msgid "Finished retreving %(url)s -- placed in %(path)s"
+msgstr ""
+
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
msgstr ""
-#: nova/compute/manager.py:243
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
+
+#: ../nova/api/direct.py:149
+msgid "not available"
msgstr ""
-#: nova/compute/manager.py:257
+#: ../nova/api/ec2/cloud.py:62
#, python-format
-msgid "Rebooting instance %s"
+msgid "The key_pair %s already exists"
msgstr ""
-#: nova/compute/manager.py:260
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Generating root CA: %s"
msgstr ""
-#: nova/compute/manager.py:286
+#: ../nova/api/ec2/cloud.py:303
#, python-format
-msgid "instance %s: snapshotting"
+msgid "Create key pair %s"
msgstr ""
-#: nova/compute/manager.py:289
+#: ../nova/api/ec2/cloud.py:311
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Delete key pair %s"
msgstr ""
-#: nova/compute/manager.py:301
+#: ../nova/api/ec2/cloud.py:386
#, python-format
-msgid "instance %s: rescuing"
+msgid "%s is not a valid ipProtocol"
msgstr ""
-#: nova/compute/manager.py:316
+#: ../nova/api/ec2/cloud.py:390
+msgid "Invalid port range"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:421
#, python-format
-msgid "instance %s: unrescuing"
+msgid "Revoke security group ingress %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:443
+msgid "No rule for the specified parameters."
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/api/ec2/cloud.py:450
#, python-format
-msgid "instance %s: pausing"
+msgid "Authorize security group ingress %s"
msgstr ""
-#: nova/compute/manager.py:352
+#: ../nova/api/ec2/cloud.py:464
#, python-format
-msgid "instance %s: unpausing"
+msgid "This rule already exists in group %s"
msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/api/ec2/cloud.py:492
#, python-format
-msgid "instance %s: retrieving diagnostics"
+msgid "Create Security Group %s"
msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/api/ec2/cloud.py:495
#, python-format
-msgid "instance %s: suspending"
+msgid "group %s already exists"
msgstr ""
-#: nova/compute/manager.py:401
+#: ../nova/api/ec2/cloud.py:507
#, python-format
-msgid "instance %s: resuming"
+msgid "Delete security group %s"
msgstr ""
-#: nova/compute/manager.py:420
+#: ../nova/api/ec2/cloud.py:584
#, python-format
-msgid "instance %s: locking"
+msgid "Create volume of %s GB"
msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/api/ec2/cloud.py:612
#, python-format
-msgid "instance %s: unlocking"
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""
-#: nova/compute/manager.py:442
+#: ../nova/api/ec2/cloud.py:629
#, python-format
-msgid "instance %s: getting locked state"
+msgid "Detach volume %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:761
+msgid "Allocate address"
msgstr ""
-#: nova/compute/manager.py:462
+#: ../nova/api/ec2/cloud.py:766
#, python-format
-msgid "instance %s: attaching volume %s to %s"
+msgid "Release address %s"
msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "instance %s: attach failed %s, removing"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/api/ec2/cloud.py:780
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
+msgid "Disassociate address %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:807
+msgid "Going to start terminating instances"
msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/api/ec2/cloud.py:815
#, python-format
-msgid "Detaching volume from unknown instance %s"
+msgid "Reboot instance %r"
msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/api/ec2/cloud.py:867
#, python-format
-msgid "updating %s..."
+msgid "De-registering image %s"
msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
+#: ../nova/api/ec2/cloud.py:875
+#, python-format
+msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""
-#: nova/compute/monitor.py:355
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
+msgid "attribute not supported: %s"
msgstr ""
-#: nova/compute/monitor.py:377
+#: ../nova/api/ec2/cloud.py:890
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
+msgid "invalid id: %s"
msgstr ""
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
+#: ../nova/api/ec2/cloud.py:903
+msgid "user or group not specified"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:905
+msgid "only group \"all\" is supported"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:907
+msgid "operation_type must be add or remove"
msgstr ""
-#: nova/compute/monitor.py:427
+#: ../nova/api/ec2/cloud.py:908
#, python-format
-msgid "Found instance: %s"
+msgid "Updating image %s publicity"
msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
+#: ../bin/nova-api.py:52
+#, python-format
+msgid "Using paste.deploy config at: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:132
+#: ../bin/nova-api.py:57
#, python-format
-msgid "No service for id %s"
+msgid "No paste configuration for app: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../bin/nova-api.py:59
#, python-format
-msgid "No service for %s, %s"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../bin/nova-api.py:64
#, python-format
-msgid "No floating ip for address %s"
+msgid "Running %s API"
msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../bin/nova-api.py:69
#, python-format
-msgid "No instance for id %s"
+msgid "No known API applications configured in %s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../bin/nova-api.py:83
#, python-format
-msgid "Instance %s not found"
+msgid "Starting nova-api node (version %s)"
msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../bin/nova-api.py:89
#, python-format
-msgid "no keypair for user %s, name %s"
+msgid "No paste configuration found for: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "No network for id %s"
+msgid "Argument %(key)s value %(value)s is too short."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1036
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "No network for bridge %s"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "No network for instance %s"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "Token %s does not exist"
+msgid "Argument %s is required."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1205
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "No quota for project_id %s"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1356
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "No volume for id %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1401
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "Volume %s not found"
+msgid "Attempted to create non-unique name %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1413
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "No export device found for volume %s"
+msgid "instance %(name)s: not enough free memory"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1426
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "No target id found for volume %s"
+msgid "Starting VM %s..."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "No security group with id %s"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "No security group named %s for project: %s"
+msgid "Invalid value for onset_files: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "No secuity group rule with id %s"
+msgid "Injecting file path: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "No user for id %s"
+msgid "Instance %s: booted"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1666
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "No user for access key %s"
+msgid "Instance not present %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "No project with id %s"
+msgid "Starting snapshot for VM %s"
msgstr ""
-#: nova/image/glance.py:78
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""
-#: nova/image/glance.py:97
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid "Finished snapshot and upload for VM %s"
msgstr ""
-#: nova/image/s3.py:82
+#: ../nova/virt/xenapi/vmops.py:356
#, python-format
-msgid "Image %s could not be found"
+msgid "VM %(vm)s already halted, skipping shutdown..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
msgstr ""
-#: nova/network/api.py:39
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../nova/virt/xenapi/vmops.py:564
+#, python-format
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:176
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "Starting VLAN inteface %s"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:186
+#: ../nova/virt/xenapi/vmops.py:760
#, python-format
-msgid "Starting Bridge interface for %s"
+msgid "OpenSSL error: %s"
msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "Hupping dnsmasq threw %s"
+msgid "Running instances: %s"
msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
+msgid "After terminating instances: %s"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
msgstr ""
-#: nova/network/linux_net.py:334
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "Killing dnsmasq threw %s"
+msgid "Launching VPN for %s"
msgstr ""
-#: nova/network/manager.py:135
-msgid "setting network host"
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
msgstr ""
-#: nova/network/manager.py:190
+#: ../nova/image/s3.py:99
#, python-format
-msgid "Leasing IP %s"
+msgid "Image %s could not be found"
msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
msgstr ""
-#: nova/network/manager.py:197
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
+msgid "Authentication Failure: %s"
msgstr ""
-#: nova/network/manager.py:205
+#: ../nova/api/ec2/__init__.py:182
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "IP %s released that isn't associated"
+msgid "action: %s"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/api/ec2/__init__.py:209
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "IP %s released that was not leased"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid "InstanceNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/api/ec2/__init__.py:320
#, python-format
-msgid "Unknown S3 value type %r"
+msgid "VolumeNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:137
-msgid "Authenticated request"
+#: ../nova/api/ec2/__init__.py:326
+#, python-format
+msgid "NotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:182
-msgid "List of buckets requested"
+#: ../nova/api/ec2/__init__.py:329
+#, python-format
+msgid "ApiError raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:209
+#: ../nova/api/ec2/__init__.py:338
#, python-format
-msgid "List keys for bucket %s"
+msgid "Unexpected error raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:217
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
+msgstr ""
+
+#: ../nova/auth/dbdriver.py:84
#, python-format
-msgid "Unauthorized attempt to access bucket %s"
+msgid "User %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:235
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
#, python-format
-msgid "Creating bucket %s"
+msgid "Project can't be created because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:245
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
-msgid "Deleting bucket %s"
+msgid "Project can't be created because user %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:249
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
-msgid "Unauthorized attempt to delete bucket %s"
+msgid "Project can't be created because project %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:271
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Getting object: %s / %s"
+msgid "Project can't be modified because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/auth/dbdriver.py:245
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "User \"%s\" not found"
msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/auth/dbdriver.py:248
#, python-format
-msgid "Putting object: %s / %s"
+msgid "Project \"%s\" not found"
+msgstr ""
+
+#: ../nova/virt/xenapi_conn.py:129
+msgid ""
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/virt/xenapi_conn.py:311
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
msgstr ""
-#: nova/objectstore/handler.py:314
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Deleting object: %s / %s"
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Not authorized to upload image: invalid directory %s"
+msgid "Got exception: %s"
msgstr ""
-#: nova/objectstore/handler.py:401
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Not authorized to upload image: unauthorized bucket %s"
+msgid "updating %s..."
+msgstr ""
+
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
msgstr ""
-#: nova/objectstore/handler.py:406
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Starting image upload: %s"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:420
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Not authorized to update attributes of image %s"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:428
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
+msgstr ""
+
+#: ../nova/compute/monitor.py:429
#, python-format
-msgid "Toggling publicity flag of image %s %r"
+msgid "Found instance: %s"
msgstr ""
-#: nova/objectstore/handler.py:433
+#: ../nova/volume/san.py:67
#, python-format
-msgid "Updating user fields on image %s"
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-#: nova/objectstore/handler.py:447
+#: ../nova/api/ec2/apirequest.py:100
#, python-format
-msgid "Unauthorized attempt to delete image %s"
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""
-#: nova/objectstore/handler.py:452
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Deleted image: %s"
+msgid "Caught error: %s"
msgstr ""
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
msgstr ""
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
msgstr ""
-#: nova/scheduler/manager.py:69
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "Re-wrote %s"
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
msgstr ""
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
+#: ../nova/console/xvp.py:141
+#, python-format
+msgid "Error starting xvp: %s"
msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
msgstr ""
-#: nova/tests/test_cloud.py:210
-#, python-format
-msgid "Need to watch instance %s until it's running..."
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
msgstr ""
-#: nova/tests/test_compute.py:104
-#, python-format
-msgid "Running instances: %s"
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
msgstr ""
-#: nova/tests/test_compute.py:110
-#, python-format
-msgid "After terminating instances: %s"
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
+msgstr ""
+
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
+msgstr ""
+
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
+msgstr ""
+
+#: ../bin/nova-manage.py:448
+msgid "IP address"
msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
+msgstr ""
+
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
-msgid "Nested received %s, %s"
+msgid "Failed to load partition: %s"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../nova/virt/disk.py:91
#, python-format
-msgid "Nested return %s"
+msgid "Failed to mount filesystem: %s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Received %s"
+msgid "nbd device %s did not show up"
msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "Target %s allocated"
+msgid "Could not attach image to loopback: %s"
msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
msgstr ""
-#: nova/virt/fake.py:210
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "Instance %s Not Found"
+msgid "%(filename)s, line %(line_info)d"
msgstr ""
-#: nova/virt/hyperv.py:118
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr ""
-#: nova/virt/hyperv.py:152
+#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
-#, python-format
-msgid "Created VM %s..."
-msgstr ""
-
-#: nova/virt/hyperv.py:188
+#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:198
+#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""
-#: nova/virt/hyperv.py:227
+#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:272
+#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "Created switch port %s on switch %s"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "Del: disk %s vm %s"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "duplicate name found: %s"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
+msgstr ""
+
+#: ../nova/virt/hyperv.py:454
+#, python-format
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/compute/api.py:71
#, python-format
-msgid "Successfully changed vm state of %s to %s"
+msgid "Instance %d was not found in get_network_topic"
msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Failed to change vm state of %s to %s"
+msgid "Instance %d has no host"
msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Finished retreving %s -- placed in %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/compute/api.py:99
#, python-format
-msgid "Connecting to libvirt: %s"
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
msgstr ""
-#: nova/virt/libvirt_conn.py:229
+#: ../nova/compute/api.py:160
#, python-format
-msgid "instance %s: deleting instance files %s"
+msgid "Going to run %s instances..."
msgstr ""
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/compute/api.py:187
#, python-format
-msgid "No disk at %s"
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+#: ../nova/compute/api.py:292
+#, python-format
+msgid "Going to try to terminate %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:294
+#: ../nova/compute/api.py:296
#, python-format
-msgid "instance %s: rebooted"
+msgid "Instance %d was not found during terminate"
msgstr ""
-#: nova/virt/libvirt_conn.py:297
+#: ../nova/compute/api.py:301
#, python-format
-msgid "_wait_for_reboot failed: %s"
+msgid "Instance %d is already being terminated"
msgstr ""
-#: nova/virt/libvirt_conn.py:340
+#: ../nova/compute/api.py:481
#, python-format
-msgid "instance %s: rescued"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgstr ""
+
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
msgstr ""
-#: nova/virt/libvirt_conn.py:343
+#: ../nova/rpc.py:98
#, python-format
-msgid "_wait_for_rescue failed: %s"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
msgstr ""
-#: nova/virt/libvirt_conn.py:370
+#: ../nova/rpc.py:103
#, python-format
-msgid "instance %s: is running"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
msgstr ""
+"Impossibile connettersi al server AMQP dopo %d tentativi. Terminando "
+"l'applicazione."
+
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr "Riconnesso alla coda"
+
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr "Impossibile prelevare il messaggio dalla coda"
-#: nova/virt/libvirt_conn.py:381
+#: ../nova/rpc.py:159
#, python-format
-msgid "instance %s: booted"
+msgid "Initing the Adapter Consumer for %s"
+msgstr "Inizializzando il Consumer Adapter per %s"
+
+#: ../nova/rpc.py:178
+#, python-format
+msgid "received %s"
+msgstr "ricevuto %s"
+
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
+#, python-format
+msgid "no method for message: %s"
+msgstr "nessun metodo per il messaggio: %s"
+
+#: ../nova/rpc.py:192
+#, python-format
+msgid "No method for message: %s"
+msgstr "nessun metodo per il messagggio: %s"
+
+#: ../nova/rpc.py:253
+#, python-format
+msgid "Returning exception %s to caller"
+msgstr "Sollevando eccezione %s al chiamante"
+
+#: ../nova/rpc.py:294
+#, python-format
+msgid "unpacked context: %s"
+msgstr "contesto decompresso: %s"
+
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
+msgstr "Facendo chiamata asincrona..."
+
+#: ../nova/rpc.py:316
+#, python-format
+msgid "MSG_ID is %s"
+msgstr "MSG_ID é %s"
+
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
msgstr ""
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
+#: ../nova/rpc.py:364
#, python-format
-msgid "instance %s: failed to boot"
+msgid "response %s"
+msgstr "risposta %s"
+
+#: ../nova/rpc.py:373
+#, python-format
+msgid "topic is %s"
+msgstr "argomento é %s"
+
+#: ../nova/rpc.py:374
+#, python-format
+msgid "message %s"
+msgstr "messaggio %s"
+
+#: ../nova/volume/driver.py:78
+#, python-format
+msgid "Recovering from a failed execute. Try number %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:395
+#: ../nova/volume/driver.py:87
#, python-format
-msgid "virsh said: %r"
+msgid "volume group %s doesn't exist"
msgstr ""
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
+#: ../nova/volume/driver.py:220
+#, python-format
+msgid "FAKE AOE: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
msgstr ""
-#: nova/virt/libvirt_conn.py:407
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
#, python-format
-msgid "data: %r, fpath: %r"
+msgid "FAKE ISCSI: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:415
+#: ../nova/volume/driver.py:359
#, python-format
-msgid "Contents of file %s: %r"
+msgid "rbd has no pool %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:449
+#: ../nova/volume/driver.py:414
#, python-format
-msgid "instance %s: Creating image"
+msgid "Sheepdog is not working: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:505
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
+msgstr ""
+
+#: ../nova/wsgi.py:68
#, python-format
-msgid "instance %s: injecting key into image %s"
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
+msgstr ""
+
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
+
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
msgstr ""
-#: nova/virt/libvirt_conn.py:508
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:123
#, python-format
-msgid "instance %s: injecting net into image %s"
+msgid ""
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:516
+#: ../nova/virt/fake.py:239
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
+msgid "Instance %s Not Found"
msgstr ""
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
+#: ../nova/network/manager.py:153
#, python-format
-msgid "instance %s: starting toXML method"
+msgid "Dissassociated %s stale fixed ip(s)"
msgstr ""
-#: nova/virt/libvirt_conn.py:589
+#: ../nova/network/manager.py:157
+msgid "setting network host"
+msgstr ""
+
+#: ../nova/network/manager.py:212
#, python-format
-msgid "instance %s: finished toXML method"
+msgid "Leasing IP %s"
+msgstr ""
+
+#: ../nova/network/manager.py:216
+#, python-format
+msgid "IP %s leased that isn't associated"
msgstr ""
-#: nova/virt/xenapi_conn.py:113
+#: ../nova/network/manager.py:220
+#, python-format
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
+
+#: ../nova/network/manager.py:228
+#, python-format
+msgid "IP %s leased that was already deallocated"
+msgstr ""
+
+#: ../nova/network/manager.py:233
+#, python-format
+msgid "Releasing IP %s"
+msgstr ""
+
+#: ../nova/network/manager.py:237
+#, python-format
+msgid "IP %s released that isn't associated"
+msgstr ""
+
+#: ../nova/network/manager.py:241
+#, python-format
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
+
+#: ../nova/network/manager.py:244
+#, python-format
+msgid "IP %s released that was not leased"
+msgstr ""
+
+#: ../nova/network/manager.py:519
msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
msgstr ""
-#: nova/virt/xenapi_conn.py:263
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Task [%s] %s status: success %s"
+msgid "Introducing %s..."
msgstr ""
-#: nova/virt/xenapi_conn.py:271
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Task [%s] %s status: %s %s"
+msgid "Introduced %(label)s as %(sr_ref)s."
msgstr ""
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Got exception: %s"
+msgid "Unable to find SR from VBD %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:72
+#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "%s: _db_content => %s"
+msgid "Forgetting SR %s ... "
msgstr ""
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
+#: ../nova/virt/xenapi/volume_utils.py:101
+#, python-format
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:249
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:283
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Calling %s %s"
+msgid "Forgetting SR %s done."
msgstr ""
-#: nova/virt/xenapi/fake.py:288
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Calling getter %s"
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:340
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
+msgid "Unable to introduce VDI on SR %s"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:40
+#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Found non-unique network for bridge %s"
+msgid "Unable to get record of VDI %s on"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:43
+#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Found no network for bridge %s"
+msgid "Unable to introduce VDI for SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:127
+#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Created VM %s as %s."
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:147
+#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
+msgid "Mountpoint cannot be translated: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:149
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:165
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "VBD not found in instance %s"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:175
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "Unable to unplug VBD %s"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:187
+#: ../nova/objectstore/handler.py:106
#, python-format
-msgid "Unable to destroy VBD %s"
+msgid "Unknown S3 value type %r"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:137
+msgid "Authenticated request"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:182
+msgid "List of buckets requested"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:209
+#, python-format
+msgid "List keys for bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:202
+#: ../nova/objectstore/handler.py:217
#, python-format
-msgid "Creating VIF for VM %s, network %s."
+msgid "Unauthorized attempt to access bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:205
+#: ../nova/objectstore/handler.py:235
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
+msgid "Creating bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:216
+#: ../nova/objectstore/handler.py:245
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
+msgid "Deleting bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:229
+#: ../nova/objectstore/handler.py:249
#, python-format
-msgid "Created snapshot %s from VM %s."
+msgid "Unauthorized attempt to delete bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:243
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
+msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:261
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Asking xapi to fetch %s as %s"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:279
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Looking up vdi %s for PV kernel"
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:290
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:318
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "VDI %s is still available"
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:331
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:333
+#: ../nova/objectstore/handler.py:396
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:390
+#: ../nova/objectstore/handler.py:404
#, python-format
-msgid "VHD %s has parent %s"
+msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:407
+#: ../nova/objectstore/handler.py:409
#, python-format
-msgid "Re-scanning SR %s"
+msgid "Starting image upload: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:431
+#: ../nova/objectstore/handler.py:423
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+msgid "Not authorized to update attributes of image %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:448
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "No VDIs found for VM %s"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:452
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
+msgid "Updating user fields on image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:62
+#: ../nova/objectstore/handler.py:450
#, python-format
-msgid "Attempted to create non-unique name %s"
+msgid "Unauthorized attempt to delete image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:99
+#: ../nova/objectstore/handler.py:455
#, python-format
-msgid "Starting VM %s..."
+msgid "Deleted image: %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:101
+#: ../nova/auth/manager.py:259
#, python-format
-msgid "Spawning VM %s created %s."
+msgid "Looking up user: %r"
msgstr ""
-#: nova/virt/xenapi/vmops.py:112
+#: ../nova/auth/manager.py:263
#, python-format
-msgid "Instance %s: booted"
+msgid "Failed authorization for access key %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:137
+#: ../nova/auth/manager.py:264
#, python-format
-msgid "Instance not present %s"
+msgid "No user found for access key %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:166
+#: ../nova/auth/manager.py:270
#, python-format
-msgid "Starting snapshot for VM %s"
+msgid "Using project name = user name (%s)"
msgstr ""
-#: nova/virt/xenapi/vmops.py:174
+#: ../nova/auth/manager.py:277
#, python-format
-msgid "Unable to Snapshot %s: %s"
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/virt/xenapi/vmops.py:184
+#: ../nova/auth/manager.py:279
#, python-format
-msgid "Finished snapshot and upload for VM %s"
+msgid "No project called %s could be found"
msgstr ""
-#: nova/virt/xenapi/vmops.py:252
+#: ../nova/auth/manager.py:287
#, python-format
-msgid "suspend: instance not present %s"
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:262
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "resume: instance not present %s"
+msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:271
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
-msgid "Instance not found %s"
+msgid "Invalid signature for user %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:57
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
+msgstr ""
+
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
+msgstr ""
+
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "Introducing %s..."
+msgid "The %s role can not be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:74
+#: ../nova/auth/manager.py:416
#, python-format
-msgid "Introduced %s as %s."
+msgid "The %s role is global only"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
+#: ../nova/auth/manager.py:420
+#, python-format
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:90
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Unable to find SR from VBD %s"
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:96
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Forgetting SR %s ... "
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:101
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:107
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
+msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:111
+#: ../nova/auth/manager.py:533
#, python-format
-msgid "Forgetting SR %s done."
+msgid "modifying project %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:113
+#: ../nova/auth/manager.py:545
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
+msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:123
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Unable to introduce VDI on SR %s"
+msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:128
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Unable to get record of VDI %s on"
+msgid "Deleting project %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:146
+#: ../nova/auth/manager.py:650
#, python-format
-msgid "Unable to introduce VDI for SR %s"
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:175
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Unable to obtain target information %s, %s"
+msgid "Deleting user %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:197
+#: ../nova/auth/manager.py:669
#, python-format
-msgid "Mountpoint cannot be translated: %s"
+msgid "Access Key change for user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:51
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Attach_volume: %s, %s, %s"
+msgid "Secret Key change for user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:69
+#: ../nova/auth/manager.py:673
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
+msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:81
+#: ../nova/auth/manager.py:722
#, python-format
-msgid "Unable to use SR %s for instance %s"
+msgid "No vpn data for project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:93
+#: ../nova/service.py:161
#, python-format
-msgid "Unable to attach volume to instance %s"
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
+msgstr ""
+
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
+msgstr "Servizio terminato che non ha entry nel database"
+
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr "Il servizio é scomparso dal database, ricreo."
+
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
+msgstr "Connessione al model server ripristinata!"
+
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr "model server é scomparso"
+
+#: ../nova/auth/ldapdriver.py:174
+#, python-format
+msgid "LDAP user %s already exists"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:95
+#: ../nova/auth/ldapdriver.py:205
#, python-format
-msgid "Mountpoint %s attached to instance %s"
+msgid "LDAP object for %s doesn't exist"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:106
+#: ../nova/auth/ldapdriver.py:348
#, python-format
-msgid "Detach_volume: %s, %s"
+msgid "User %s doesn't exist"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:113
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "Unable to locate volume %s"
+msgid "Group can't be created because group %s already exists"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:121
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Unable to detach volume %s"
+msgid "Group can't be created because user %s doesn't exist"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:128
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "Mountpoint %s detached from instance %s"
+msgid "User %s can't be searched in group because the user doesn't exist"
msgstr ""
-#: nova/volume/api.py:44
+#: ../nova/auth/ldapdriver.py:507
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
+msgid "User %s can't be added to the group because the user doesn't exist"
msgstr ""
-#: nova/volume/api.py:46
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
+msgid "The group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
+#: ../nova/auth/ldapdriver.py:513
+#, python-format
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
msgstr ""
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
+#: ../nova/auth/ldapdriver.py:524
+#, python-format
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
msgstr ""
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
+#: ../nova/auth/ldapdriver.py:528
+#, python-format
+msgid "User %s is not a member of the group"
msgstr ""
-#: nova/volume/driver.py:76
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
msgstr ""
-#: nova/volume/driver.py:85
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "volume group %s doesn't exist"
+msgid "User %s can't be removed from all because the user doesn't exist"
msgstr ""
-#: nova/volume/driver.py:210
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "FAKE AOE: %s"
+msgid "Group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:315
+#: ../nova/virt/xenapi/network_utils.py:40
#, python-format
-msgid "FAKE ISCSI: %s"
+msgid "Found non-unique network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:85
+#: ../nova/virt/xenapi/network_utils.py:43
#, python-format
-msgid "Re-exporting %s volumes"
+msgid "Found no network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:93
+#: ../nova/api/ec2/admin.py:97
#, python-format
-msgid "volume %s: creating"
+msgid "Creating new user: %s"
msgstr ""
-#: nova/volume/manager.py:102
+#: ../nova/api/ec2/admin.py:105
#, python-format
-msgid "volume %s: creating lv of size %sG"
+msgid "Deleting user: %s"
msgstr ""
-#: nova/volume/manager.py:106
+#: ../nova/api/ec2/admin.py:127
#, python-format
-msgid "volume %s: creating export"
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
msgstr ""
-#: nova/volume/manager.py:113
+#: ../nova/api/ec2/admin.py:131
#, python-format
-msgid "volume %s: created successfully"
+msgid "Adding sitewide role %(role)s to user %(user)s"
msgstr ""
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
+#: ../nova/api/ec2/admin.py:137
+#, python-format
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
msgstr ""
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
+#: ../nova/api/ec2/admin.py:141
+#, python-format
+msgid "Removing sitewide role %(role)s from user %(user)s"
msgstr ""
-#: nova/volume/manager.py:124
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:159
#, python-format
-msgid "volume %s: removing export"
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
msgstr ""
-#: nova/volume/manager.py:126
+#: ../nova/api/ec2/admin.py:177
#, python-format
-msgid "volume %s: deleting"
+msgid "Create project %(name)s managed by %(manager_user)s"
msgstr ""
-#: nova/volume/manager.py:129
+#: ../nova/api/ec2/admin.py:190
#, python-format
-msgid "volume %s: deleted successfully"
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:200
+#, python-format
+msgid "Delete project: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:214
+#, python-format
+msgid "Adding user %(user)s to project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
msgstr ""
+
+#, python-format
+#~ msgid ""
+#~ "%s\n"
+#~ "Command: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+#~ msgstr ""
+#~ "%s\n"
+#~ "Comando: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+
+#, python-format
+#~ msgid "(%s) publish (key: %s) %s"
+#~ msgstr "(%s) pubblica (chiave: %s) %s"
+
+#, python-format
+#~ msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+#~ msgstr ""
+#~ "Il server AMQP su %s:%d non é raggiungibile. Riprovare in %d secondi."
+
+#, python-format
+#~ msgid "Binding %s to %s with key %s"
+#~ msgstr "Collegando %s a %s con la chiave %s"
+
+#, python-format
+#~ msgid "Starting %s node"
+#~ msgstr "Avviando il nodo %s"
+
+#, python-format
+#~ msgid "Data store %s is unreachable. Trying again in %d seconds."
+#~ msgstr "Datastore %s é irrangiungibile. Riprovare in %d seconds."
diff --git a/po/ja.po b/po/ja.po
index 2cea24640..87065d778 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,2137 +7,3335 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
-"PO-Revision-Date: 2011-01-14 09:04+0000\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
+"PO-Revision-Date: 2011-03-29 07:27+0000\n"
"Last-Translator: Koji Iida <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-05 05:36+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-03-30 05:22+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr "適切なホストが見つかりません。"
+
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr "コマンド実行において予期しないエラーが発生しました。"
+
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
+
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
+
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr "キャッチされなかった例外"
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr "サイズ %(size)sG のボリュームの作成を行おうとしましたが、%(pid)sのクオータを超えています。"
+
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
+msgstr "ボリュームのクオータを超えています。%sの大きさのボリュームは作成できません。"
+
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr "ボリュームのステータス(status)が available でなければなりません。"
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr "ボリュームは既にアタッチされています(attached)。"
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr "ボリュームは既にデタッチされています(detached)。"
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:152
+#, python-format
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr "イメージ %(_image_id)s に対するプロパティ %(param)s が見つかりません"
+
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr "キーペアが定義されていません。"
+
+#: ../nova/api/openstack/servers.py:238
+#, python-format
+msgid "Compute.api::lock %s"
+msgstr "例外: Compute.api::lock %s"
+
+#: ../nova/api/openstack/servers.py:253
+#, python-format
+msgid "Compute.api::unlock %s"
+msgstr "例外: Compute.api::unlock %s"
+
+#: ../nova/api/openstack/servers.py:267
+#, python-format
+msgid "Compute.api::get_lock %s"
+msgstr "例外: Compute.api::get_lock %s"
+
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:292
+#, python-format
+msgid "Compute.api::pause %s"
+msgstr "例外: Compute.api::pause %s"
+
+#: ../nova/api/openstack/servers.py:303
+#, python-format
+msgid "Compute.api::unpause %s"
+msgstr "例外: Compute.api::unpause %s"
+
+#: ../nova/api/openstack/servers.py:314
+#, python-format
+msgid "compute.api::suspend %s"
+msgstr "例外: compute.api::suspend %s"
+
+#: ../nova/api/openstack/servers.py:325
+#, python-format
+msgid "compute.api::resume %s"
+msgstr "例外: compute.api::resume %s"
+
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr "引数の数が異なります。"
+
+#: ../nova/twistd.py:209
+#, python-format
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr "pidfile %s が存在しません。デーモンは実行中ですか?\n"
+
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr "そのようなプロセスはありません"
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr "%s サービスの開始"
+
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr "FLAGSの一覧:"
+
+#: ../nova/twistd.py:266
+#, python-format
+msgid "Starting %s"
+msgstr "%s を開始します。"
+
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
+#, python-format
+msgid "Instance %s not found"
+msgstr "インスタンス %s が見つかりません。"
+
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
+#, python-format
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:91
+#, python-format
+msgid "Unable to attach volume to instance %s"
+msgstr "インスタンス %s にボリュームをアタッチできません。"
+
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr "インスタンス %(instance_name)s にマウントポイント %(mountpoint)s をアタッチしました。"
+
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
+#, python-format
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:112
+#, python-format
+msgid "Unable to locate volume %s"
+msgstr "ボリューム %s の存在が確認できません。"
+
+#: ../nova/virt/xenapi/volumeops.py:120
+#, python-format
+msgid "Unable to detach volume %s"
+msgstr "ボリューム %s のデタッチができません。"
+
+#: ../nova/virt/xenapi/volumeops.py:127
+#, python-format
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr "インスタンス %(instance_name)s からマウントポイント %(mountpoint)s をデタッチしました。"
+
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr "%s は未知のインスタンスタイプです。"
+
+#: ../nova/crypto.py:46
msgid "Filename of root CA"
msgstr "ルートCAのファイル名"
-#: nova/crypto.py:49
+#: ../nova/crypto.py:49
msgid "Filename of private key"
msgstr "プライベートキーのファイル名"
-#: nova/crypto.py:51
+#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
msgstr "ルート証明書失効リストのファイル名"
-#: nova/crypto.py:53
+#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr "キーを格納するパス"
-#: nova/crypto.py:55
+#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr "ルートCAを格納するパス"
-#: nova/crypto.py:57
+#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr "プロジェクトごとにCAを使用するか否かのフラグ"
-#: nova/crypto.py:61
+#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr "ユーザの証明書のサブジェクト、%s はプロジェクト、ユーザ、タイムスタンプ"
-#: nova/crypto.py:66
+#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr "プロジェクトの証明書のサブジェクト、%s はプロジェクト、およびタイムスタンプ"
-#: nova/crypto.py:71
+#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr "vpnの証明書のサブジェクト、%sはプロジェクト、およびタイムスタンプ"
-#: nova/crypto.py:258
+#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr "Flags のパス: %s"
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
-msgstr "コマンド実行において予期しないエラーが発生しました。"
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr ""
-#: nova/exception.py:36
+#: ../nova/compute/manager.py:78
+#, python-format
+msgid "check_instance_lock: decorating: |%s|"
+msgstr "check_instance_lock: decorating: |%s|"
+
+#: ../nova/compute/manager.py:80
#, python-format
msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-msgstr ""
-"%s\n"
-"コマンド: %s\n"
-"終了コード: %s\n"
-"標準出力: %r\n"
-"標準エラー出力: %r"
-
-#: nova/exception.py:86
-msgid "Uncaught exception"
-msgstr "キャッチされなかった例外"
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
+msgstr ""
-#: nova/fakerabbit.py:48
+#: ../nova/compute/manager.py:84
#, python-format
-msgid "(%s) publish (key: %s) %s"
-msgstr "(%s) パブリッシュ (key: %s) %s"
+msgid "check_instance_lock: locked: |%s|"
+msgstr "check_instance_lock: locked: |%s|"
-#: nova/fakerabbit.py:53
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "Publishing to route %s"
-msgstr "ルート %s へパブリッシュ"
+msgid "check_instance_lock: admin: |%s|"
+msgstr "check_instance_lock: admin: |%s|"
-#: nova/fakerabbit.py:83
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Declaring queue %s"
-msgstr "queue %s の宣言"
+msgid "check_instance_lock: executing: |%s|"
+msgstr "check_instance_lock: executing: |%s|"
-#: nova/fakerabbit.py:89
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Declaring exchange %s"
-msgstr "exchange %s の宣言"
+msgid "check_instance_lock: not executing |%s|"
+msgstr "check_instance_lock: not executing |%s|"
-#: nova/fakerabbit.py:95
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
+msgstr "インスタンスは既に生成されています。"
+
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "Binding %s to %s with key %s"
-msgstr "%s を %s にキー %s でバインドします。"
+msgid "instance %s: starting..."
+msgstr "インスタンス %s を開始します。"
-#: nova/fakerabbit.py:120
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "Getting from %s: %s"
-msgstr "%s から %s を取得"
+msgid "instance %s: Failed to spawn"
+msgstr "インスタンス %s の起動に失敗しました。"
-#: nova/rpc.py:92
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
-msgstr "AMQPサーバ %s:%d に接続できません。 %d 秒後に再度試みます。"
+msgid "Terminating instance %s"
+msgstr "Terminating instance: インスタンス %s を終了します。"
-#: nova/rpc.py:99
+#: ../nova/compute/manager.py:255
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
-msgstr "AMQPサーバーに %d 回接続を試みましたが、接続できませんでした。シャットダウンします。"
+msgid "Deallocating address %s"
+msgstr "アドレス %s の割当を解除(deallocate)します。"
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
-msgstr "キューに再接続しました。"
+#: ../nova/compute/manager.py:268
+#, python-format
+msgid "trying to destroy already destroyed instance: %s"
+msgstr "既に消去済みのインスタンス%sを消去しようとしました。"
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
-msgstr "キューからメッセージの取得に失敗しました。"
+#: ../nova/compute/manager.py:282
+#, python-format
+msgid "Rebooting instance %s"
+msgstr "Rebooting instance: インスタンス %s を再起動します。"
-#: nova/rpc.py:155
+#: ../nova/compute/manager.py:287
#, python-format
-msgid "Initing the Adapter Consumer for %s"
-msgstr "%sのアダプターコンシューマー(Adapter Consumer)を初期化しています。"
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
+"実行していないインスタンスを再起動しようとしました: %(instance_id)s (state: %(state)s 期待される状態: "
+"%(running)s)"
-#: nova/rpc.py:170
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "received %s"
-msgstr "受信: %s"
+msgid "instance %s: snapshotting"
+msgstr "snapshotting: インスタンス %s のスナップショットを取得します。"
-#: nova/rpc.py:183
+#: ../nova/compute/manager.py:316
#, python-format
-msgid "no method for message: %s"
-msgstr "メッセージ %s に対するメソッドが存在しません。"
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
+"実行していないインスタンスのスナップショットを取得しようとしました: %(instance_id)s (state: %(state)s "
+"期待される状態: %(running)s)"
-#: nova/rpc.py:184
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "No method for message: %s"
-msgstr "メッセージ %s に対するメソッドが存在しません。"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
+msgstr ""
+"実行していないインスタンスのパスワードをリセットしようとしました: %(instance_id)s (state: %(instance_state)s "
+"期待される状態: %(expected_state)s)"
-#: nova/rpc.py:245
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "Returning exception %s to caller"
-msgstr "呼び出し元に 例外 %s を返却します。"
+msgid "instance %s: setting admin password"
+msgstr "インスタンス %s: admin password をセットします"
-#: nova/rpc.py:286
+#: ../nova/compute/manager.py:353
#, python-format
-msgid "unpacked context: %s"
-msgstr "context %s をアンパックしました。"
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
+msgstr ""
+"実行していないインスタンスにファイルをインジェクトしようとしました: %(instance_id)s (state: "
+"%(instance_state)s 期待される状態: %(expected_state)s)"
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
-msgstr "非同期呼び出しを実行します…"
+#: ../nova/compute/manager.py:362
+#, python-format
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
+msgstr "インスタンス %(nm)s: ファイルを %(plain_path)s にインジェクトします"
-#: nova/rpc.py:308
+#: ../nova/compute/manager.py:372
#, python-format
-msgid "MSG_ID is %s"
-msgstr "MSG_IDは %s です。"
+msgid "instance %s: rescuing"
+msgstr "Rescuing: インスタンス %s をレスキューします。"
-#: nova/rpc.py:356
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "response %s"
-msgstr "応答 %s"
+msgid "instance %s: unrescuing"
+msgstr "Unrescuing: インスタンス %s をアンレスキューします。"
-#: nova/rpc.py:365
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "topic is %s"
-msgstr "topic は %s です。"
+msgid "instance %s: pausing"
+msgstr "pausing: インスタンス %s を一時停止します。"
-#: nova/rpc.py:366
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "message %s"
-msgstr "メッセージ %s"
+msgid "instance %s: unpausing"
+msgstr "unpausing: インスタンス %s の一時停止を解除します。"
-#: nova/service.py:157
+#: ../nova/compute/manager.py:440
#, python-format
-msgid "Starting %s node"
-msgstr "ノード %s を開始します。"
+msgid "instance %s: retrieving diagnostics"
+msgstr "retrieving diagnostics: インスタンス %s の診断情報を取得します。"
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
-msgstr "データベースにエントリの存在しないサービスを終了します。"
+#: ../nova/compute/manager.py:453
+#, python-format
+msgid "instance %s: suspending"
+msgstr "suspending: インスタンス %s をサスペンドします。"
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
-msgstr "サービスデータベースオブジェクトが消滅しました。再作成します。"
+#: ../nova/compute/manager.py:472
+#, python-format
+msgid "instance %s: resuming"
+msgstr "resuming: インスタンス %s をレジュームします。"
-#: nova/service.py:202
-msgid "Recovered model server connection!"
-msgstr "モデルサーバへの接続を復旧しました。"
+#: ../nova/compute/manager.py:491
+#, python-format
+msgid "instance %s: locking"
+msgstr "locking: インスタンス %s をロックします。"
-#: nova/service.py:208
-msgid "model server went away"
-msgstr "モデルサーバが消滅しました。"
+#: ../nova/compute/manager.py:503
+#, python-format
+msgid "instance %s: unlocking"
+msgstr "unlocking: インスタンス %s のロックを解除します。"
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/compute/manager.py:513
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
-msgstr "データストア %s に接続できません。 %d 秒後に再接続します。"
+msgid "instance %s: getting locked state"
+msgstr "getting locked state: インスタンス %s のロックを取得しました。"
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/compute/manager.py:526
#, python-format
-msgid "Serving %s"
-msgstr "%s サービスの開始"
+msgid "instance %s: reset network"
+msgstr "インスタンス %s: ネットワークをリセットします"
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
-msgstr "FLAGSの一覧:"
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
+#, python-format
+msgid "Get console output for instance %s"
+msgstr "Get console output: インスタンス %s のコンソール出力を取得します。"
-#: nova/twistd.py:211
+#: ../nova/compute/manager.py:543
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
-msgstr "pidfile %s が存在しません。デーモンは実行中ですか?\n"
+msgid "instance %s: getting ajax console"
+msgstr "インスタンス %s: ajax consoleを接続します"
-#: nova/twistd.py:268
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "Starting %s"
-msgstr "%s を開始します。"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
+msgstr ""
+"インスタンス %(instance_id)s: ボリューム %(volume_id)s を %(mountpoint)s にアタッチします"
+
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
+#, python-format
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
+msgstr "インスタンス %(instance_id)s: %(mountpoint)s へのアタッチに失敗しました。削除します。"
+
+#: ../nova/compute/manager.py:585
+#, python-format
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
+msgstr ""
+"インスタンス%(instance_id)s のマウントポイント %(mp)s からボリューム %(volume_id)s をデタッチします。"
-#: nova/utils.py:53
+#: ../nova/compute/manager.py:588
+#, python-format
+msgid "Detaching volume from unknown instance %s"
+msgstr "ボリュームを未知のインスタンス %s からデタッチします。"
+
+#: ../nova/scheduler/simple.py:53
+#, python-format
+msgid "Host %s is not alive"
+msgstr "ホスト %s は稼働していません。"
+
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
+msgstr "全てのホストにコア数の空きがありません。"
+
+#: ../nova/scheduler/simple.py:87
+#, python-format
+msgid "Host %s not available"
+msgstr "ホスト %s は利用可能ではありません。"
+
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr "全てのホストが利用可能な容量(gigabytes)に達しています。"
+
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
+msgstr "全てのホストがネットワークの最大数に達しています。"
+
+#: ../nova/volume/manager.py:85
+#, python-format
+msgid "Re-exporting %s volumes"
+msgstr "%s 個のボリュームを再エクスポートします。"
+
+#: ../nova/volume/manager.py:90
+#, python-format
+msgid "volume %s: skipping export"
+msgstr "ボリューム %s のエキスポートをスキップします。"
+
+#: ../nova/volume/manager.py:96
+#, python-format
+msgid "volume %s: creating"
+msgstr "ボリューム%sを作成します。"
+
+#: ../nova/volume/manager.py:108
+#, python-format
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
+msgstr "ボリューム %(vol_name)s: サイズ %(vol_size)sG のlvを作成します。"
+
+#: ../nova/volume/manager.py:112
+#, python-format
+msgid "volume %s: creating export"
+msgstr "ボリューム %s をエクスポートします。"
+
+#: ../nova/volume/manager.py:123
+#, python-format
+msgid "volume %s: created successfully"
+msgstr "ボリューム %s の作成に成功しました。"
+
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
+msgstr "ボリュームはアタッチされたままです。"
+
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
+msgstr "ボリュームはこのノードのローカルではありません。"
+
+#: ../nova/volume/manager.py:136
+#, python-format
+msgid "volume %s: removing export"
+msgstr "ボリューム %s のエクスポートを解除します。"
+
+#: ../nova/volume/manager.py:138
+#, python-format
+msgid "volume %s: deleting"
+msgstr "ボリューム %s を削除します。"
+
+#: ../nova/volume/manager.py:147
+#, python-format
+msgid "volume %s: deleted successfully"
+msgstr "ボリューム %s の削除に成功しました。"
+
+#: ../nova/virt/xenapi/fake.py:74
+#, python-format
+msgid "%(text)s: _db_content => %(content)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
+msgstr "NotImplemented 例外を発生させます。"
+
+#: ../nova/virt/xenapi/fake.py:306
+#, python-format
+msgid "xenapi.fake does not have an implementation for %s"
+msgstr "xenapi.fake には %s が実装されていません。"
+
+#: ../nova/virt/xenapi/fake.py:341
+#, python-format
+msgid "Calling %(localname)s %(impl)s"
+msgstr "%(localname)s %(impl)s を呼び出します。"
+
+#: ../nova/virt/xenapi/fake.py:346
+#, python-format
+msgid "Calling getter %s"
+msgstr "getter %s をコールします。"
+
+#: ../nova/virt/xenapi/fake.py:406
+#, python-format
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
+msgstr "xenapi.fake に %s に関する実装がないか、引数の数が誤っています。"
+
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
+msgstr "インスタンスのテストには実際の仮想環境が必要です。(fakeでは実行できません。)"
+
+#: ../nova/tests/test_cloud.py:268
+#, python-format
+msgid "Need to watch instance %s until it's running..."
+msgstr "インスタンス %s が実行するまで監視します…"
+
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
+msgstr "ハイパーバイザへの接続に失敗しました。"
+
+#: ../nova/network/linux_net.py:187
+#, python-format
+msgid "Starting VLAN inteface %s"
+msgstr "VLANインタフェース %s を開始します。"
+
+#: ../nova/network/linux_net.py:208
+#, python-format
+msgid "Starting Bridge interface for %s"
+msgstr "%s 用のブリッジインタフェースを開始します。"
+
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
+#, python-format
+msgid "Hupping dnsmasq threw %s"
+msgstr "dnsmasqに対してhupを送信しましたが %s が発生しました。"
+
+#: ../nova/network/linux_net.py:316
+#, python-format
+msgid "Pid %d is stale, relaunching dnsmasq"
+msgstr "Pid %d は無効です。dnsmasqを再実行します。"
+
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
+#, python-format
+msgid "killing radvd threw %s"
+msgstr ""
+
+#: ../nova/network/linux_net.py:360
+#, python-format
+msgid "Pid %d is stale, relaunching radvd"
+msgstr ""
+
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
+#, python-format
+msgid "Killing dnsmasq threw %s"
+msgstr "dnsmasq をkillしましたが、 %s が発生しました。"
+
+#: ../nova/utils.py:58
#, python-format
msgid "Inner Exception: %s"
msgstr "内側で発生した例外: %s"
-#: nova/utils.py:54
+#: ../nova/utils.py:59
#, python-format
msgid "Class %s cannot be found"
msgstr "クラス %s が見つかりません。"
-#: nova/utils.py:113
+#: ../nova/utils.py:118
#, python-format
msgid "Fetching %s"
msgstr "ファイルをフェッチ: %s"
-#: nova/utils.py:125
+#: ../nova/utils.py:130
#, python-format
msgid "Running cmd (subprocess): %s"
msgstr "コマンド実行(subprocess): %s"
-#: nova/utils.py:138
+#: ../nova/utils.py:143 ../nova/utils.py:183
#, python-format
msgid "Result was %s"
msgstr "コマンド実行結果: %s"
-#: nova/utils.py:171
+#: ../nova/utils.py:159
+#, python-format
+msgid "Running cmd (SSH): %s"
+msgstr "コマンド(SSH)を実行: %s"
+
+#: ../nova/utils.py:217
#, python-format
msgid "debug in callback: %s"
msgstr "コールバック中のデバッグ: %s"
-#: nova/utils.py:176
+#: ../nova/utils.py:222
#, python-format
msgid "Running %s"
msgstr "コマンド実行: %s"
-#: nova/utils.py:207
+#: ../nova/utils.py:262
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
-msgstr "IPを取得できません。127.0.0.1 を %s として使います。"
+msgid "Link Local address is not found.:%s"
+msgstr "リンクローカルアドレスが見つかりません: %s"
-#: nova/utils.py:289
+#: ../nova/utils.py:265
+#, python-format
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
+msgstr ""
+
+#: ../nova/utils.py:363
#, python-format
msgid "Invalid backend: %s"
msgstr "不正なバックエンドです: %s"
-#: nova/utils.py:300
+#: ../nova/utils.py:374
#, python-format
msgid "backend %s"
msgstr "バックエンドは %s です。"
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
-msgstr "認証失敗の回数が多すぎます。"
+#: ../nova/fakerabbit.py:49
+#, python-format
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
+msgstr ""
+
+#: ../nova/fakerabbit.py:54
+#, python-format
+msgid "Publishing to route %s"
+msgstr "ルート %s へパブリッシュ"
+
+#: ../nova/fakerabbit.py:84
+#, python-format
+msgid "Declaring queue %s"
+msgstr "queue %s の宣言"
+
+#: ../nova/fakerabbit.py:90
+#, python-format
+msgid "Declaring exchange %s"
+msgstr "exchange %s の宣言"
+
+#: ../nova/fakerabbit.py:96
+#, python-format
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
+msgstr ""
+
+#: ../nova/fakerabbit.py:121
+#, python-format
+msgid "Getting from %(queue)s: %(message)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
+#, python-format
+msgid "Created VM %s..."
+msgstr "VM %s を作成します。"
+
+#: ../nova/virt/xenapi/vm_utils.py:138
+#, python-format
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:168
+#, python-format
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:171
+#, python-format
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:187
+#, python-format
+msgid "VBD not found in instance %s"
+msgstr "インスタンス %s のVBDが見つかりません。"
+
+#: ../nova/virt/xenapi/vm_utils.py:197
+#, python-format
+msgid "Unable to unplug VBD %s"
+msgstr "VBD %s の unplug に失敗しました。"
+
+#: ../nova/virt/xenapi/vm_utils.py:209
+#, python-format
+msgid "Unable to destroy VBD %s"
+msgstr "VBD %s の削除に失敗しました。"
-#: nova/api/ec2/__init__.py:142
+#: ../nova/virt/xenapi/vm_utils.py:224
+#, python-format
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:227
+#, python-format
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
-msgstr "アクセスキー %s は %d 回認証に失敗したため、%d 分間ロックされます。"
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
+msgstr ""
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "Authentication Failure: %s"
-msgstr "%s の認証に失敗しました。"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
+msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/virt/xenapi/vm_utils.py:272
#, python-format
-msgid "Authenticated Request For %s:%s)"
-msgstr "リクエストを認証しました: %s:%s"
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
+msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
-msgid "action: %s"
-msgstr "アクション(action): %s"
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
+msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
-msgid "arg: %s\t\tval: %s"
-msgstr "引数(arg): %s\t値(val): %s"
+msgid "Size for image %(image)s:%(virtual_size)d"
+msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/virt/xenapi/vm_utils.py:332
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
-msgstr "許可されていないリクエスト: controller=%s, action %sです。"
+msgid "Glance image %s"
+msgstr ""
-#: nova/api/ec2/__init__.py:339
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
#, python-format
-msgid "NotFound raised: %s"
-msgstr "NotFound 発生: %s"
+msgid "Copying VDI %s to /boot/guest on dom0"
+msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/virt/xenapi/vm_utils.py:352
#, python-format
-msgid "ApiError raised: %s"
-msgstr "APIエラー発生: %s"
+msgid "Kernel/Ramdisk VDI %s destroyed"
+msgstr ""
-#: nova/api/ec2/__init__.py:349
+#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
-msgid "Unexpected error raised: %s"
-msgstr "予期しないエラー発生: %s"
+msgid "Asking xapi to fetch %(url)s as %(access)s"
+msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
-msgstr "未知のエラーが発生しました。再度リクエストを実行してください。"
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
+#, python-format
+msgid "Looking up vdi %s for PV kernel"
+msgstr "PV kernelのvdi %s を取得します。"
-#: nova/api/ec2/admin.py:84
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid "Creating new user: %s"
-msgstr "Creating new user: 新しいユーザ %s を作成します。"
+msgid "PV Kernel in VDI:%s"
+msgstr ""
-#: nova/api/ec2/admin.py:92
+#: ../nova/virt/xenapi/vm_utils.py:405
#, python-format
-msgid "Deleting user: %s"
-msgstr "Deleting user: ユーザ %s を削除します。"
+msgid "Running pygrub against %s"
+msgstr ""
-#: nova/api/ec2/admin.py:114
+#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
-msgid "Adding role %s to user %s for project %s"
-msgstr "Adding role: ロール %s をユーザ %s、プロジェクト %s に追加します。"
+msgid "Found Xen kernel %s"
+msgstr "Xen Kernel %s が見つかりました。"
+
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
+msgstr ""
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
-msgid "Adding sitewide role %s to user %s"
-msgstr "Adding sitewide role: サイトワイドのロール %s をユーザ %s に追加します。"
+msgid "duplicate name found: %s"
+msgstr "%s は重複しています。"
-#: nova/api/ec2/admin.py:122
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "Removing role %s from user %s for project %s"
-msgstr "Removing role: ロール %s をユーザ %s プロジェクト %s から削除します。"
+msgid "VDI %s is still available"
+msgstr "VDI %s は依然として存在しています。"
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "Removing sitewide role %s from user %s"
-msgstr "Removing sitewide role: サイトワイドのロール %s をユーザ %s から削除します。"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgstr "(VM_UTILS) xenserver の vm state -> |%s|"
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
-msgstr "operation は add または remove の何れかである必要があります。"
+#: ../nova/virt/xenapi/vm_utils.py:465
+#, python-format
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgstr "(VM_UTILS) xenapi の power_state -> |%s|"
+
+#: ../nova/virt/xenapi/vm_utils.py:525
+#, python-format
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
+msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
-msgstr "Getting X509: x509の取得: ユーザ %s, プロジェクト %s"
+msgid "Re-scanning SR %s"
+msgstr "SR %s を再スキャンします。"
-#: nova/api/ec2/admin.py:159
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "Create project %s managed by %s"
-msgstr "Create project: プロジェクト %s (%s により管理される)を作成します。"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
+msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "Delete project: %s"
-msgstr "Delete project: プロジェクト %s を削除しました。"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:590
+#, python-format
+msgid "No VDIs found for VM %s"
+msgstr "VM %s にVDIが存在しません。"
+
+#: ../nova/virt/xenapi/vm_utils.py:594
+#, python-format
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
+#, python-format
+msgid "Creating VBD for VDI %s ... "
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
+#, python-format
+msgid "Creating VBD for VDI %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
+#, python-format
+msgid "Plugging VBD %s ... "
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
+#, python-format
+msgid "Plugging VBD %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:661
+#, python-format
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:664
+#, python-format
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
+#, python-format
+msgid "Destroying VBD for VDI %s ... "
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
+#, python-format
+msgid "Destroying VBD for VDI %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
+#, python-format
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
+#, python-format
+msgid "Ignoring XenAPI.Failure %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:735
+#, python-format
+msgid ""
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:747
+#, python-format
+msgid "Writing partition table %s done."
+msgstr ""
+
+#: ../nova/tests/test_rpc.py:89
+#, python-format
+msgid "Nested received %(queue)s, %(value)s"
+msgstr ""
+
+#: ../nova/tests/test_rpc.py:95
+#, python-format
+msgid "Nested return %s"
+msgstr "ネストした戻り値: %s"
+
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
+#, python-format
+msgid "Received %s"
+msgstr "%s を受信。"
+
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
+msgstr "Request context を空とすることは非推奨です。"
+
+#: ../nova/db/sqlalchemy/api.py:133
+#, python-format
+msgid "No service for id %s"
+msgstr "id %s のserviceが存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:251
+#, python-format
+msgid "No service for %(host)s, %(binary)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
+msgstr "fixed ipが一つも定義されていません。"
+
+#: ../nova/db/sqlalchemy/api.py:608
+#, python-format
+msgid "No floating ip for address %s"
+msgstr "アドレス %s の floating ip が存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:629
+#, python-format
+msgid "No address for instance %s"
+msgstr "インスタンス %s に対するアドレスが見つかりません。"
+
+#: ../nova/db/sqlalchemy/api.py:961
+#, python-format
+msgid "no keypair for user %(user_id)s, name %(name)s"
+msgstr "ユーザ %(user_id)s 名前 %(name)s のキーペアがありません。"
+
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
+#, python-format
+msgid "No network for id %s"
+msgstr "id %s に該当するnetwork が存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
+msgstr "ネットワークが定義されていません。"
+
+#: ../nova/db/sqlalchemy/api.py:1115
+#, python-format
+msgid "No network for bridge %s"
+msgstr "ブリッジ %s に該当する network が存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
+#, python-format
+msgid "No network for instance %s"
+msgstr "instance %s に該当する network が存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1277
+#, python-format
+msgid "Token %s does not exist"
+msgstr "トークン %s が存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1302
+#, python-format
+msgid "No quota for project_id %s"
+msgstr "project_id %s に対するクオータが存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
+#, python-format
+msgid "Volume %s not found"
+msgstr "ボリューム %s が見つかりません。"
+
+#: ../nova/db/sqlalchemy/api.py:1514
+#, python-format
+msgid "No export device found for volume %s"
+msgstr "ボリューム %s に関してエクスポートされているデバイスがありません。"
+
+#: ../nova/db/sqlalchemy/api.py:1527
+#, python-format
+msgid "No target id found for volume %s"
+msgstr "ボリューム %s に対する target idが存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1572
+#, python-format
+msgid "No security group with id %s"
+msgstr "id %s のセキュリティグループが存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1589
+#, python-format
+msgid "No security group named %(group_name)s for project: %(project_id)s"
+msgstr "プロジェクト %(project_id)s に対する名称 %(group_name)s のセキュリティグループが存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1682
+#, python-format
+msgid "No secuity group rule with id %s"
+msgstr "id %s のセキュリティグループルールが存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1756
+#, python-format
+msgid "No user for id %s"
+msgstr "id %s のユーザが存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1772
+#, python-format
+msgid "No user for access key %s"
+msgstr "アクセスキー %s に該当するユーザが存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1834
+#, python-format
+msgid "No project with id %s"
+msgstr "id %s のプロジェクトが存在しません。"
+
+#: ../nova/db/sqlalchemy/api.py:1979
+#, python-format
+msgid "No console pool with id %(pool_id)s"
+msgstr "Id %(pool_id)s のコンソールプールがありません。"
+
+#: ../nova/db/sqlalchemy/api.py:1996
+#, python-format
+msgid ""
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:2035
+#, python-format
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
+msgstr "プール %(pool_id)s に %(instance_id)s のコンソールがありません。"
+
+#: ../nova/db/sqlalchemy/api.py:2057
+#, python-format
+msgid "on instance %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:2058
+#, python-format
+msgid "No console with id %(console_id)s %(idesc)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
+#, python-format
+msgid "No zone with id %(zone_id)s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:160
+#, python-format
+msgid "Checking state of %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:165
+#, python-format
+msgid "Current state of %(name)s was %(state)s."
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:183
+#, python-format
+msgid "Connecting to libvirt: %s"
+msgstr "libvirt %s へ接続します。"
+
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
+msgstr "libvirtへの接続が切れています。"
+
+#: ../nova/virt/libvirt_conn.py:258
+#, python-format
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:283
+#, python-format
+msgid "Invalid device path %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:313
+#, python-format
+msgid "No disk at %s"
+msgstr "%s にディスクが存在しません。"
+
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
+msgstr "インスタンスのスナップショットは現在libvirtに対してはサポートされていません。"
+
+#: ../nova/virt/libvirt_conn.py:336
+#, python-format
+msgid "instance %s: rebooted"
+msgstr "インスタンス%s: 再起動しました。"
+
+#: ../nova/virt/libvirt_conn.py:339
+#, python-format
+msgid "_wait_for_reboot failed: %s"
+msgstr "_wait_for_reboot 失敗: %s"
+
+#: ../nova/virt/libvirt_conn.py:382
+#, python-format
+msgid "instance %s: rescued"
+msgstr "インスタンス %s: rescued"
+
+#: ../nova/virt/libvirt_conn.py:385
+#, python-format
+msgid "_wait_for_rescue failed: %s"
+msgstr "_wait_for_rescue 失敗: %s"
+
+#: ../nova/virt/libvirt_conn.py:411
+#, python-format
+msgid "instance %s: is running"
+msgstr "インスタンス %s を起動中です。"
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "Adding user %s to project %s"
-msgstr "Adding user: ユーザ %s をプロジェクト %s に追加します。"
+msgid "instance %s: booted"
+msgstr "インスタンス %s: 起動しました。"
-#: nova/api/ec2/admin.py:188
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid "Removing user %s from project %s"
-msgstr "Removing user: ユーザ %s をプロジェクト %s から削除します。"
+msgid "instance %s: failed to boot"
+msgstr "インスタンス %s の起動に失敗しました。"
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
-msgstr "サポートされていないAPIリクエストです。 controller = %s,action = %s"
+msgid "virsh said: %r"
+msgstr "virsh の出力: %r"
+
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
+msgstr "デバイスです。"
+
+#: ../nova/virt/libvirt_conn.py:448
+#, python-format
+msgid "data: %(data)r, fpath: %(fpath)r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:456
+#, python-format
+msgid "Contents of file %(fpath)s: %(contents)r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:563
+#, python-format
+msgid "instance %s: Creating image"
+msgstr "インスタンス %s のイメージを生成します。"
+
+#: ../nova/virt/libvirt_conn.py:646
+#, python-format
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:649
+#, python-format
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
+msgstr ""
+
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
+#, python-format
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
+msgstr ""
-#: nova/api/ec2/cloud.py:117
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
+#, python-format
+msgid "instance %s: starting toXML method"
+msgstr "インスタンス %s: toXML メソッドを開始。"
+
+#: ../nova/virt/libvirt_conn.py:732
+#, python-format
+msgid "instance %s: finished toXML method"
+msgstr "インスタンス %s: toXML メソッドを完了。"
+
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:1225
+#, python-format
+msgid "Attempted to unfilter instance %s which is not filtered"
+msgstr ""
+
+#: ../nova/api/ec2/metadatarequesthandler.py:76
+#, python-format
+msgid "Failed to get metadata for ip: %s"
+msgstr "ip %s に対するメタデータの取得に失敗しました。"
+
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
+msgstr "シングルトンをインスタンス化しようとしました。"
+
+#: ../nova/network/api.py:39
+#, python-format
+msgid "Quota exceeeded for %s, tried to allocate address"
+msgstr "アドレスを割り当てようとしましたが、%s のクオータを超えました。"
+
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
+msgstr "アドレスのクオータを超えました。これ以上アドレスを割り当てることはできません。"
+
+#: ../nova/tests/test_volume.py:162
+#, python-format
+msgid "Target %s allocated"
+msgstr "ターゲット %s をアロケートしました。"
+
+#: ../nova/virt/images.py:70
+#, python-format
+msgid "Finished retreving %(url)s -- placed in %(path)s"
+msgstr ""
+
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
+msgstr "予備の(fallback)スケジューラを実装する必要があります。"
+
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
+#, python-format
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
+
+#: ../nova/api/direct.py:149
+msgid "not available"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:62
+#, python-format
+msgid "The key_pair %s already exists"
+msgstr ""
+
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
msgid "Generating root CA: %s"
msgstr "ルートCA %s を生成しています。"
-#: nova/api/ec2/cloud.py:277
+#: ../nova/api/ec2/cloud.py:303
#, python-format
msgid "Create key pair %s"
msgstr "Create key pair: キーペア %s を作成します。"
-#: nova/api/ec2/cloud.py:285
+#: ../nova/api/ec2/cloud.py:311
#, python-format
msgid "Delete key pair %s"
msgstr "Delete key pair: キーペア %s を削除します。"
-#: nova/api/ec2/cloud.py:357
+#: ../nova/api/ec2/cloud.py:386
#, python-format
msgid "%s is not a valid ipProtocol"
msgstr "%s は適切なipProtocolではありません。"
-#: nova/api/ec2/cloud.py:361
+#: ../nova/api/ec2/cloud.py:390
msgid "Invalid port range"
msgstr "ポートの範囲が不正です。"
-#: nova/api/ec2/cloud.py:392
+#: ../nova/api/ec2/cloud.py:421
#, python-format
msgid "Revoke security group ingress %s"
msgstr "Revoke security group ingress: セキュリティグループ許可 %s の取消"
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:443
msgid "No rule for the specified parameters."
msgstr "指定されたパラメータに該当するルールがありません。"
-#: nova/api/ec2/cloud.py:421
+#: ../nova/api/ec2/cloud.py:450
#, python-format
msgid "Authorize security group ingress %s"
msgstr "Authorize security group ingress: セキュリティグループ許可 %s"
-#: nova/api/ec2/cloud.py:432
+#: ../nova/api/ec2/cloud.py:464
#, python-format
msgid "This rule already exists in group %s"
msgstr "指定されたルールは既にグループ %s に存在しています。"
-#: nova/api/ec2/cloud.py:460
+#: ../nova/api/ec2/cloud.py:492
#, python-format
msgid "Create Security Group %s"
msgstr "Create Security Group: セキュリティグループ %s を作成します。"
-#: nova/api/ec2/cloud.py:463
+#: ../nova/api/ec2/cloud.py:495
#, python-format
msgid "group %s already exists"
msgstr "グループ %s は既に存在しています。"
-#: nova/api/ec2/cloud.py:475
+#: ../nova/api/ec2/cloud.py:507
#, python-format
msgid "Delete security group %s"
msgstr "Delete security group: セキュリティグループ %s を削除します。"
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
-#, python-format
-msgid "Get console output for instance %s"
-msgstr "Get console output: インスタンス %s のコンソール出力を取得します。"
-
-#: nova/api/ec2/cloud.py:543
+#: ../nova/api/ec2/cloud.py:584
#, python-format
msgid "Create volume of %s GB"
msgstr "Create volume: %s GBのボリュームを作成します。"
-#: nova/api/ec2/cloud.py:567
+#: ../nova/api/ec2/cloud.py:612
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
-msgstr "Attach volume: ボリューム%s をインスタンス %s にデバイス %s でアタッチします。"
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:579
+#: ../nova/api/ec2/cloud.py:629
#, python-format
msgid "Detach volume %s"
msgstr "Detach volume: ボリューム %s をデタッチします"
-#: nova/api/ec2/cloud.py:686
+#: ../nova/api/ec2/cloud.py:761
msgid "Allocate address"
msgstr "Allocate address: アドレスを割り当てます。"
-#: nova/api/ec2/cloud.py:691
+#: ../nova/api/ec2/cloud.py:766
#, python-format
msgid "Release address %s"
msgstr "Release address: アドレス %s を開放します。"
-#: nova/api/ec2/cloud.py:696
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "Associate address %s to instance %s"
-msgstr "Associate address: アドレス %s をインスタンス %s に関連付けます。"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/api/ec2/cloud.py:780
#, python-format
msgid "Disassociate address %s"
msgstr "Disassociate address: アドレス %s の関連付けを解除します。"
-#: nova/api/ec2/cloud.py:730
+#: ../nova/api/ec2/cloud.py:807
msgid "Going to start terminating instances"
msgstr "インスタンス終了処理を開始します。"
-#: nova/api/ec2/cloud.py:738
+#: ../nova/api/ec2/cloud.py:815
#, python-format
msgid "Reboot instance %r"
msgstr "Reboot instance: インスタンス %r を再起動します。"
-#: nova/api/ec2/cloud.py:775
+#: ../nova/api/ec2/cloud.py:867
#, python-format
msgid "De-registering image %s"
msgstr "De-registering image: イメージ %s を登録解除します。"
-#: nova/api/ec2/cloud.py:783
+#: ../nova/api/ec2/cloud.py:875
#, python-format
-msgid "Registered image %s with id %s"
-msgstr "Registered image: イメージ %s をid %s で登録します。"
+msgid "Registered image %(image_location)s with id %(image_id)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
msgid "attribute not supported: %s"
msgstr "アトリビュート %s はサポートされていません。"
-#: nova/api/ec2/cloud.py:794
+#: ../nova/api/ec2/cloud.py:890
#, python-format
msgid "invalid id: %s"
msgstr "id %s は不正です。"
-#: nova/api/ec2/cloud.py:807
+#: ../nova/api/ec2/cloud.py:903
msgid "user or group not specified"
msgstr "ユーザまたはグループが指定されていません。"
-#: nova/api/ec2/cloud.py:809
+#: ../nova/api/ec2/cloud.py:905
msgid "only group \"all\" is supported"
msgstr "グループ \"all\" のみサポートされています。"
-#: nova/api/ec2/cloud.py:811
+#: ../nova/api/ec2/cloud.py:907
msgid "operation_type must be add or remove"
msgstr "operation_type は add または remove の何れかである必要があります。"
-#: nova/api/ec2/cloud.py:812
+#: ../nova/api/ec2/cloud.py:908
#, python-format
msgid "Updating image %s publicity"
msgstr "イメージ %s の公開設定を更新します。"
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../bin/nova-api.py:52
#, python-format
-msgid "Failed to get metadata for ip: %s"
-msgstr "ip %s に対するメタデータの取得に失敗しました。"
+msgid "Using paste.deploy config at: %s"
+msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../bin/nova-api.py:57
#, python-format
-msgid "Caught error: %s"
-msgstr "エラー %s をキャッチしました。"
+msgid "No paste configuration for app: %s"
+msgstr ""
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
-msgstr "管理用オペレーション(admin operation)をAPIに登録します。"
+#: ../bin/nova-api.py:59
+#, python-format
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
+msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../bin/nova-api.py:64
#, python-format
-msgid "Compute.api::lock %s"
-msgstr "例外: Compute.api::lock %s"
+msgid "Running %s API"
+msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../bin/nova-api.py:69
#, python-format
-msgid "Compute.api::unlock %s"
-msgstr "例外: Compute.api::unlock %s"
+msgid "No known API applications configured in %s."
+msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../bin/nova-api.py:83
#, python-format
-msgid "Compute.api::get_lock %s"
-msgstr "例外: Compute.api::get_lock %s"
+msgid "Starting nova-api node (version %s)"
+msgstr ""
-#: nova/api/openstack/servers.py:224
+#: ../bin/nova-api.py:89
#, python-format
-msgid "Compute.api::pause %s"
-msgstr "例外: Compute.api::pause %s"
+msgid "No paste configuration found for: %s"
+msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "Compute.api::unpause %s"
-msgstr "例外: Compute.api::unpause %s"
+msgid "Argument %(key)s value %(value)s is too short."
+msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "compute.api::suspend %s"
-msgstr "例外: compute.api::suspend %s"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
+msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "compute.api::resume %s"
-msgstr "例外: compute.api::resume %s"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
+msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "User %s already exists"
-msgstr "ユーザー %s は既に存在しています。"
+msgid "Argument %s is required."
+msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
-msgstr "マネージャ %s が存在しないためプロジェクトを作成できません。"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
+msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "Project can't be created because project %s already exists"
-msgstr "プロジェクト %s が既に存在するためプロジェクトを作成できません。"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
+msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
-msgstr "マネージャ %s が存在しないためプロジェクトを更新できません。"
+msgid "Attempted to create non-unique name %s"
+msgstr "ユニークではないname %s を作成しようとしました。"
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "User \"%s\" not found"
-msgstr "ユーザ \"%s\" が見つかりません。"
+msgid "instance %(name)s: not enough free memory"
+msgstr ""
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "Project \"%s\" not found"
-msgstr "プロジェクト \"%s\" が見つかりません。"
+msgid "Starting VM %s..."
+msgstr "VM %s を開始します…"
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
-msgstr "シングルトンをインスタンス化しようとしました。"
+#: ../nova/virt/xenapi/vmops.py:151
+#, python-format
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
+msgstr ""
-#: nova/auth/ldapdriver.py:181
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "LDAP object for %s doesn't exist"
-msgstr "LDAPオブジェクト %s が存在しません。"
+msgid "Invalid value for onset_files: '%s'"
+msgstr ""
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
-msgstr "ユーザ %s が存在しないためプロジェクトを作成できません。"
+msgid "Injecting file path: '%s'"
+msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "User %s is already a member of the group %s"
-msgstr "ユーザ %s は既にグループ %s のメンバーです。"
+msgid "Instance %s: booted"
+msgstr "インスタンス%s: ブートしました。"
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
-msgstr "グループの最後のメンバーを削除しようとしました。代わりにグループ %s を削除してください。"
+msgid "Instance not present %s"
+msgstr "インスタンス%s が存在しません。"
-#: nova/auth/ldapdriver.py:528
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "Group at dn %s doesn't exist"
-msgstr "dnが %s のグループは存在しません。"
+msgid "Starting snapshot for VM %s"
+msgstr "VM %s に対するスナップショットを開始します。"
-#: nova/auth/manager.py:259
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "Looking up user: %r"
-msgstr "ユーザ %r を検索します。"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
+msgstr ""
-#: nova/auth/manager.py:263
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "Failed authorization for access key %s"
-msgstr "Failed authorization: アクセスキー %s の認証に失敗しました。"
+msgid "Finished snapshot and upload for VM %s"
+msgstr "VM %s のスナップショットとアップロードが完了しました。"
-#: nova/auth/manager.py:264
+#: ../nova/virt/xenapi/vmops.py:356
#, python-format
-msgid "No user found for access key %s"
-msgstr "アクセスキー %s に対するユーザが見つかりませんでした。"
+msgid "VM %(vm)s already halted, skipping shutdown..."
+msgstr ""
-#: nova/auth/manager.py:270
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Using project name = user name (%s)"
-msgstr "ユーザ名 (%s) をプロジェクト名として使用します。"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
+msgstr ""
-#: nova/auth/manager.py:275
+#: ../nova/virt/xenapi/vmops.py:564
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
-msgstr "Failed authorization: 認証に失敗しました。プロジェクト名 %s (ユーザ = %s) は存在しません。"
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
+msgstr ""
-#: nova/auth/manager.py:277
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "No project called %s could be found"
-msgstr "プロジェクト %s は見つかりませんでした。"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
+msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/virt/xenapi/vmops.py:760
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "OpenSSL error: %s"
msgstr ""
-"Failed authorization: 認証に失敗しました: ユーザ %s は管理者ではなくかつプロジェクト %s のメンバーではありません。"
-#: nova/auth/manager.py:283
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "User %s is not a member of project %s"
-msgstr "ユーザ %s はプロジェクト %s のメンバーではありません。"
+msgid "Running instances: %s"
+msgstr "インスタンス %s は実行中です。"
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "Invalid signature for user %s"
-msgstr "Invalid signature: ユーザ %s の署名が不正です。"
+msgid "After terminating instances: %s"
+msgstr "インスタンス %s を終了した後です。"
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
-msgstr "署名が一致しません。"
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
+msgstr "cloudpipeインスタンス起動時に実行するスクリプトのテンプレート"
-#: nova/auth/manager.py:374
-msgid "Must specify project"
-msgstr "プロジェクトを指定してください。"
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
+msgstr "openvpnの設定に入れるネットワークの値"
-#: nova/auth/manager.py:408
-#, python-format
-msgid "The %s role can not be found"
-msgstr "ロール %s が見つかりません。"
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr "openvpnの設定に入れるネットマスクの値"
-#: nova/auth/manager.py:410
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "The %s role is global only"
-msgstr "ロール %s はグローバルでのみ使用可能です。"
+msgid "Launching VPN for %s"
+msgstr "%s 用のVPNを起動します。"
-#: nova/auth/manager.py:412
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
+msgstr ""
+
+#: ../nova/image/s3.py:99
#, python-format
-msgid "Adding role %s to user %s in project %s"
-msgstr "Adding role: ロール %s をユーザ %s (プロジェクト %s の) に追加します。"
+msgid "Image %s could not be found"
+msgstr "イメージ %s が見つかりませんでした。"
-#: nova/auth/manager.py:438
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr "認証失敗の回数が多すぎます。"
+
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "Removing role %s from user %s on project %s"
-msgstr "Removing role: ロール %s をユーザ %s (プロジェクト %s の)から削除します。"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
+msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "Created project %s with manager %s"
-msgstr "Created project: プロジェクト %s (マネージャ %s)を作成します。"
+msgid "Authentication Failure: %s"
+msgstr "%s の認証に失敗しました。"
-#: nova/auth/manager.py:523
+#: ../nova/api/ec2/__init__.py:182
#, python-format
-msgid "modifying project %s"
-msgstr "modifying project: プロジェクト %s を更新します。"
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
+msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "Remove user %s from project %s"
-msgstr "Remove user: ユーザ %s をプロジェクト %s から削除します。"
+msgid "action: %s"
+msgstr "アクション(action): %s"
-#: nova/auth/manager.py:581
+#: ../nova/api/ec2/__init__.py:209
#, python-format
-msgid "Deleting project %s"
-msgstr "Deleting project: プロジェクト %s を削除します。"
+msgid "arg: %(key)s\t\tval: %(value)s"
+msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "Created user %s (admin: %r)"
-msgstr "Created user: ユーザ %s (admin: %r) を作成しました。"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
+msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Deleting user %s"
-msgstr "Deleting user: ユーザ %s を削除します。"
+msgid "InstanceNotFound raised: %s"
+msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/api/ec2/__init__.py:320
#, python-format
-msgid "Access Key change for user %s"
-msgstr "Access Key change: ユーザ %s のアクセスキーを更新します。"
+msgid "VolumeNotFound raised: %s"
+msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/api/ec2/__init__.py:326
#, python-format
-msgid "Secret Key change for user %s"
-msgstr "Secret Key change: ユーザ %s のシークレットキーを更新します。"
+msgid "NotFound raised: %s"
+msgstr "NotFound 発生: %s"
-#: nova/auth/manager.py:659
+#: ../nova/api/ec2/__init__.py:329
#, python-format
-msgid "Admin status set to %r for user %s"
-msgstr "Admin status set: 管理者ステータス %r をユーザ %s に設定します。"
+msgid "ApiError raised: %s"
+msgstr "APIエラー発生: %s"
-#: nova/auth/manager.py:708
+#: ../nova/api/ec2/__init__.py:338
#, python-format
-msgid "No vpn data for project %s"
-msgstr "プロジェクト %s に関するvpnデータがありません。"
+msgid "Unexpected error raised: %s"
+msgstr "予期しないエラー発生: %s"
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
-msgstr "cloudpipeインスタンス起動時に実行するスクリプトのテンプレート"
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
+msgstr "未知のエラーが発生しました。再度リクエストを実行してください。"
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
-msgstr "openvpnの設定に入れるネットワークの値"
+#: ../nova/auth/dbdriver.py:84
+#, python-format
+msgid "User %s already exists"
+msgstr "ユーザー %s は既に存在しています。"
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
-msgstr "openvpnの設定に入れるネットマスクの値"
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
+#, python-format
+msgid "Project can't be created because manager %s doesn't exist"
+msgstr "マネージャ %s が存在しないためプロジェクトを作成できません。"
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
-msgid "Launching VPN for %s"
-msgstr "%s 用のVPNを起動します。"
+msgid "Project can't be created because user %s doesn't exist"
+msgstr "ユーザ %s が存在しないためプロジェクトを作成できません。"
-#: nova/compute/api.py:67
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
-msgid "Instance %d was not found in get_network_topic"
-msgstr "get_network_topicにおいてインスタンス %d が見つかりませんでした。"
+msgid "Project can't be created because project %s already exists"
+msgstr "プロジェクト %s が既に存在するためプロジェクトを作成できません。"
-#: nova/compute/api.py:73
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Instance %d has no host"
-msgstr "インスタンス %d にホストが登録されていません。"
+msgid "Project can't be modified because manager %s doesn't exist"
+msgstr "マネージャ %s が存在しないためプロジェクトを更新できません。"
-#: nova/compute/api.py:92
+#: ../nova/auth/dbdriver.py:245
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
-msgstr "%s のクオータ上限を超えました。%s インスタンスを実行しようとしました。"
+msgid "User \"%s\" not found"
+msgstr "ユーザ \"%s\" が見つかりません。"
-#: nova/compute/api.py:94
+#: ../nova/auth/dbdriver.py:248
#, python-format
+msgid "Project \"%s\" not found"
+msgstr "プロジェクト \"%s\" が見つかりません。"
+
+#: ../nova/virt/xenapi_conn.py:129
msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
-msgstr "インスタンスのクオータを超えました。このタイプにおいてはあと %s インスタンスしか実行できません。"
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
+msgstr ""
+"connection_type=xenapi を使用するには、以下の指定が必要です: xenapi_connection_url, "
+"xenapi_connection_username (オプション), xenapi_connection_password"
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
-msgstr "raw instanceを生成します。"
+#: ../nova/virt/xenapi_conn.py:311
+#, python-format
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
+msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Going to run %s instances..."
-msgstr "%s 個のインスタンスの起動を始めます…"
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
+msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
-msgstr "スケジューラに対して %s/%s のインスタンス %s を送信します。"
+msgid "Got exception: %s"
+msgstr "例外 %s が発生しました。"
-#: nova/compute/api.py:279
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Going to try and terminate %s"
-msgstr "%s を終了します。"
+msgid "updating %s..."
+msgstr "%s の情報の更新…"
-#: nova/compute/api.py:283
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
+msgstr "更新の最中に予期しないエラーが発生しました。"
+
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Instance %d was not found during terminate"
-msgstr "インスタンス %d が終了処理において見つかりませんでした。"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
+msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Instance %d is already being terminated"
-msgstr "インスタンス %d は既に終了済みです。"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
+msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
+msgstr "接続に際し予期しないエラーが発生しました。"
+
+#: ../nova/compute/monitor.py:429
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
-msgstr "デバイスの指定 %s が不正です: デバイス指定の例: /dev/vdb"
+msgid "Found instance: %s"
+msgstr "インスタンス %s が見つかりました。"
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
-msgstr "ボリュームはどこにもアタッチされていません。"
+#: ../nova/volume/san.py:67
+#, python-format
+msgid "Could not find iSCSI export for volume %s"
+msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/api/ec2/apirequest.py:100
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
-msgstr "インプットパーティションサイズがセクターサイズで割り切れません。 %d / %d"
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
+msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
-msgstr "ローカルストレージのバイト数がセクターサイズで割り切れません: %d / %d"
+msgid "Caught error: %s"
+msgstr "エラー %s をキャッチしました。"
+
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
+msgstr "管理用オペレーション(admin operation)をAPIに登録します。"
-#: nova/compute/disk.py:128
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
+msgstr ""
+
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Could not attach image to loopback: %s"
-msgstr "イメージをループバック %s にアタッチできません。"
+msgid "Re-wrote %s"
+msgstr ""
+
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
+msgstr ""
+
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
+msgstr ""
+
+#: ../nova/console/xvp.py:141
+#, python-format
+msgid "Error starting xvp: %s"
+msgstr ""
+
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
+msgstr ""
+
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
+msgstr ""
+
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
+msgstr ""
+
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
+msgstr ""
+
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
+msgstr ""
+
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
+msgstr ""
+
+#: ../bin/nova-manage.py:448
+msgid "IP address"
+msgstr ""
+
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
+msgstr ""
-#: nova/compute/disk.py:136
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
msgid "Failed to load partition: %s"
msgstr "パーティション %s のロードに失敗しました。"
-#: nova/compute/disk.py:158
+#: ../nova/virt/disk.py:91
#, python-format
msgid "Failed to mount filesystem: %s"
msgstr "ファイルシステム %s のマウントに失敗しました。"
-#: nova/compute/instance_types.py:41
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Unknown instance type: %s"
-msgstr "%s は未知のインスタンスタイプです。"
+msgid "nbd device %s did not show up"
+msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
-msgstr "check_instance_lock: decorating: |%s|"
+msgid "Could not attach image to loopback: %s"
+msgstr "イメージをループバック %s にアタッチできません。"
-#: nova/compute/manager.py:71
-#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
-msgstr "check_instance_lock: arguments: |%s| |%s| |%s|"
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
+msgstr ""
-#: nova/compute/manager.py:75
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "check_instance_lock: locked: |%s|"
-msgstr "check_instance_lock: locked: |%s|"
+msgid "%(filename)s, line %(line_info)d"
+msgstr ""
-#: nova/compute/manager.py:77
-#, python-format
-msgid "check_instance_lock: admin: |%s|"
-msgstr "check_instance_lock: admin: |%s|"
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
+msgid "In init host"
+msgstr "In init host"
-#: nova/compute/manager.py:82
+#: ../nova/virt/hyperv.py:131
#, python-format
-msgid "check_instance_lock: executing: |%s|"
-msgstr "check_instance_lock: executing: |%s|"
+msgid "Attempt to create duplicate vm %s"
+msgstr "VM %s を二重に作成しようとしました。"
-#: nova/compute/manager.py:86
+#: ../nova/virt/hyperv.py:148
#, python-format
-msgid "check_instance_lock: not executing |%s|"
-msgstr "check_instance_lock: not executing |%s|"
-
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
-msgstr "インスタンスは既に生成されています。"
+msgid "Starting VM %s "
+msgstr "VM %s を開始します。 "
-#: nova/compute/manager.py:158
+#: ../nova/virt/hyperv.py:150
#, python-format
-msgid "instance %s: starting..."
-msgstr "インスタンス %s を開始します。"
+msgid "Started VM %s "
+msgstr "VM %s を開始しました。 "
-#: nova/compute/manager.py:197
+#: ../nova/virt/hyperv.py:152
#, python-format
-msgid "instance %s: Failed to spawn"
-msgstr "インスタンス %s の起動に失敗しました。"
+msgid "spawn vm failed: %s"
+msgstr "vmの生成(spawn)に失敗しました: %s"
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/virt/hyperv.py:169
#, python-format
-msgid "Terminating instance %s"
-msgstr "Terminating instance: インスタンス %s を終了します。"
+msgid "Failed to create VM %s"
+msgstr "VM %s の作成に失敗しました。"
-#: nova/compute/manager.py:217
+#: ../nova/virt/hyperv.py:188
#, python-format
-msgid "Disassociating address %s"
-msgstr "アドレス %s の関連付けを解除(disassociate)しています。"
+msgid "Set memory for vm %s..."
+msgstr "vm %s のメモリを設定します。"
-#: nova/compute/manager.py:230
+#: ../nova/virt/hyperv.py:198
#, python-format
-msgid "Deallocating address %s"
-msgstr "アドレス %s の割当を解除(deallocate)します。"
+msgid "Set vcpus for vm %s..."
+msgstr "vm %s のvcpus を設定します。"
-#: nova/compute/manager.py:243
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
-msgstr "既に消去済みのインスタンス%sを消去しようとしました。"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
+msgstr ""
-#: nova/compute/manager.py:257
+#: ../nova/virt/hyperv.py:227
#, python-format
-msgid "Rebooting instance %s"
-msgstr "Rebooting instance: インスタンス %s を再起動します。"
+msgid "Failed to add diskdrive to VM %s"
+msgstr "VM %s へのディスクドライブの追加に失敗しました。"
-#: nova/compute/manager.py:260
+#: ../nova/virt/hyperv.py:230
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
-msgstr "実行していないインスタンスの再起動を試みます。%s (状態: %s 期待する状態: %s)"
+msgid "New disk drive path is %s"
+msgstr "新しいドライブパスは %s です。"
-#: nova/compute/manager.py:286
+#: ../nova/virt/hyperv.py:247
#, python-format
-msgid "instance %s: snapshotting"
-msgstr "snapshotting: インスタンス %s のスナップショットを取得します。"
+msgid "Failed to add vhd file to VM %s"
+msgstr "vhdファイルの VM %s への追加に失敗しました。"
-#: nova/compute/manager.py:289
+#: ../nova/virt/hyperv.py:249
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
-msgstr "実行していないインスタンスのスナップショット取得を試みます。%s (状態: %s 期待する状態: %s)"
+msgid "Created disk for %s"
+msgstr "%s に diskを作成します。"
-#: nova/compute/manager.py:301
+#: ../nova/virt/hyperv.py:253
#, python-format
-msgid "instance %s: rescuing"
-msgstr "Rescuing: インスタンス %s をレスキューします。"
+msgid "Creating nic for %s "
+msgstr "%s にNICを作成します。 "
-#: nova/compute/manager.py:316
-#, python-format
-msgid "instance %s: unrescuing"
-msgstr "Unrescuing: インスタンス %s をアンレスキューします。"
+#: ../nova/virt/hyperv.py:272
+msgid "Failed creating a port on the external vswitch"
+msgstr "外部vswitchへのポート作成に失敗しました。"
-#: nova/compute/manager.py:335
+#: ../nova/virt/hyperv.py:273
#, python-format
-msgid "instance %s: pausing"
-msgstr "pausing: インスタンス %s を一時停止します。"
+msgid "Failed creating port for %s"
+msgstr "ポート %s の作成に失敗しました。"
-#: nova/compute/manager.py:352
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "instance %s: unpausing"
-msgstr "unpausing: インスタンス %s の一時停止を解除します。"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
+msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/virt/hyperv.py:286
#, python-format
-msgid "instance %s: retrieving diagnostics"
-msgstr "retrieving diagnostics: インスタンス %s の診断情報を取得します。"
+msgid "Failed to add nic to VM %s"
+msgstr "VM %s に対してNICの追加に失敗しました。"
-#: nova/compute/manager.py:382
+#: ../nova/virt/hyperv.py:288
#, python-format
-msgid "instance %s: suspending"
-msgstr "suspending: インスタンス %s をサスペンドします。"
+msgid "Created nic for %s "
+msgstr "%s のNICを作成しました。 "
-#: nova/compute/manager.py:401
+#: ../nova/virt/hyperv.py:321
#, python-format
-msgid "instance %s: resuming"
-msgstr "resuming: インスタンス %s をレジュームします。"
+msgid "WMI job failed: %s"
+msgstr "WMIジョブに失敗しました: %s"
-#: nova/compute/manager.py:420
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "instance %s: locking"
-msgstr "locking: インスタンス %s をロックします。"
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
+msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/virt/hyperv.py:361
#, python-format
-msgid "instance %s: unlocking"
-msgstr "unlocking: インスタンス %s のロックを解除します。"
+msgid "Got request to destroy vm %s"
+msgstr "destroy vm %s リクエストを受信しました。"
-#: nova/compute/manager.py:442
+#: ../nova/virt/hyperv.py:386
#, python-format
-msgid "instance %s: getting locked state"
-msgstr "getting locked state: インスタンス %s のロックを取得しました。"
+msgid "Failed to destroy vm %s"
+msgstr "vm %s の削除に失敗しました。"
-#: nova/compute/manager.py:462
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "instance %s: attaching volume %s to %s"
-msgstr "attaching volume: インスタンス %s についてボリューム %s を %s にアタッチします。"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
+msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/virt/hyperv.py:415
#, python-format
-msgid "instance %s: attach failed %s, removing"
-msgstr "インスタンス %s: %sのアタッチに失敗しました。リムーブします。"
+msgid ""
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
+msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
-msgstr "Detach volume: ボリューム %s をマウントポイント %s (インスタンス%s)からデタッチします。"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
+msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "Detaching volume from unknown instance %s"
-msgstr "ボリュームを未知のインスタンス %s からデタッチします。"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
+msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/compute/api.py:71
#, python-format
-msgid "updating %s..."
-msgstr "%s の情報の更新…"
-
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
-msgstr "更新の最中に予期しないエラーが発生しました。"
+msgid "Instance %d was not found in get_network_topic"
+msgstr "get_network_topicにおいてインスタンス %d が見つかりませんでした。"
-#: nova/compute/monitor.py:355
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
-msgstr "ブロックデバイス \"%s\" の統計を \"%s\" について取得できません。"
+msgid "Instance %d has no host"
+msgstr "インスタンス %d にホストが登録されていません。"
-#: nova/compute/monitor.py:377
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
-msgstr "インタフェース \"%s\" の統計を \"%s\" について取得できません。"
-
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
-msgstr "接続に際し予期しないエラーが発生しました。"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
+msgstr ""
-#: nova/compute/monitor.py:427
+#: ../nova/compute/api.py:99
#, python-format
-msgid "Found instance: %s"
-msgstr "インスタンス %s が見つかりました。"
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
+msgstr "インスタンスのクオータを超えました。このタイプにおいてはあと %s インスタンスしか実行できません。"
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
-msgstr "Request context を空とすることは非推奨です。"
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
+msgstr "raw instanceを生成します。"
-#: nova/db/sqlalchemy/api.py:132
+#: ../nova/compute/api.py:160
#, python-format
-msgid "No service for id %s"
-msgstr "id %s のserviceが存在しません。"
+msgid "Going to run %s instances..."
+msgstr "%s 個のインスタンスの起動を始めます…"
-#: nova/db/sqlalchemy/api.py:229
+#: ../nova/compute/api.py:187
#, python-format
-msgid "No service for %s, %s"
-msgstr "%s, %s のserviceが存在しません。"
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../nova/compute/api.py:292
#, python-format
-msgid "No floating ip for address %s"
-msgstr "アドレス %s の floating ip が存在しません。"
+msgid "Going to try to terminate %s"
+msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../nova/compute/api.py:296
#, python-format
-msgid "No instance for id %s"
-msgstr "id %s のinstanceが存在しません。"
+msgid "Instance %d was not found during terminate"
+msgstr "インスタンス %d が終了処理において見つかりませんでした。"
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../nova/compute/api.py:301
#, python-format
-msgid "Instance %s not found"
-msgstr "インスタンス %s が見つかりません。"
+msgid "Instance %d is already being terminated"
+msgstr "インスタンス %d は既に終了済みです。"
-#: nova/db/sqlalchemy/api.py:891
+#: ../nova/compute/api.py:481
#, python-format
-msgid "no keypair for user %s, name %s"
-msgstr "ユーザ %s, ネーム%s に該当するキーペアが存在しません。"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgstr "デバイスの指定 %s が不正です: デバイス指定の例: /dev/vdb"
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
-#, python-format
-msgid "No network for id %s"
-msgstr "id %s に該当するnetwork が存在しません。"
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
+msgstr "ボリュームはどこにもアタッチされていません。"
-#: nova/db/sqlalchemy/api.py:1036
+#: ../nova/rpc.py:98
#, python-format
-msgid "No network for bridge %s"
-msgstr "ブリッジ %s に該当する network が存在しません。"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
+msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../nova/rpc.py:103
#, python-format
-msgid "No network for instance %s"
-msgstr "instance %s に該当する network が存在しません。"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgstr "AMQPサーバーに %d 回接続を試みましたが、接続できませんでした。シャットダウンします。"
+
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr "キューに再接続しました。"
+
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr "キューからメッセージの取得に失敗しました。"
-#: nova/db/sqlalchemy/api.py:1180
+#: ../nova/rpc.py:159
#, python-format
-msgid "Token %s does not exist"
-msgstr "トークン %s が存在しません。"
+msgid "Initing the Adapter Consumer for %s"
+msgstr "%sのアダプターコンシューマー(Adapter Consumer)を初期化しています。"
-#: nova/db/sqlalchemy/api.py:1205
+#: ../nova/rpc.py:178
#, python-format
-msgid "No quota for project_id %s"
-msgstr "project_id %s に対するクオータが存在しません。"
+msgid "received %s"
+msgstr "受信: %s"
-#: nova/db/sqlalchemy/api.py:1356
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
#, python-format
-msgid "No volume for id %s"
-msgstr "id %s に該当するボリュームが存在しません。"
+msgid "no method for message: %s"
+msgstr "メッセージ %s に対するメソッドが存在しません。"
-#: nova/db/sqlalchemy/api.py:1401
+#: ../nova/rpc.py:192
#, python-format
-msgid "Volume %s not found"
-msgstr "ボリューム %s が見つかりません。"
+msgid "No method for message: %s"
+msgstr "メッセージ %s に対するメソッドが存在しません。"
-#: nova/db/sqlalchemy/api.py:1413
+#: ../nova/rpc.py:253
#, python-format
-msgid "No export device found for volume %s"
-msgstr "ボリューム %s に関してエクスポートされているデバイスがありません。"
+msgid "Returning exception %s to caller"
+msgstr "呼び出し元に 例外 %s を返却します。"
-#: nova/db/sqlalchemy/api.py:1426
+#: ../nova/rpc.py:294
#, python-format
-msgid "No target id found for volume %s"
-msgstr "ボリューム %s に対する target idが存在しません。"
+msgid "unpacked context: %s"
+msgstr "context %s をアンパックしました。"
-#: nova/db/sqlalchemy/api.py:1471
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
+msgstr "非同期呼び出しを実行します…"
+
+#: ../nova/rpc.py:316
#, python-format
-msgid "No security group with id %s"
-msgstr "id %s のセキュリティグループが存在しません。"
+msgid "MSG_ID is %s"
+msgstr "MSG_IDは %s です。"
-#: nova/db/sqlalchemy/api.py:1488
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
+msgstr ""
+
+#: ../nova/rpc.py:364
#, python-format
-msgid "No security group named %s for project: %s"
-msgstr "セキュリティグループ名 %s がプロジェクト %s に存在しません。"
+msgid "response %s"
+msgstr "応答 %s"
-#: nova/db/sqlalchemy/api.py:1576
+#: ../nova/rpc.py:373
#, python-format
-msgid "No secuity group rule with id %s"
-msgstr "id %s のセキュリティグループルールが存在しません。"
+msgid "topic is %s"
+msgstr "topic は %s です。"
-#: nova/db/sqlalchemy/api.py:1650
+#: ../nova/rpc.py:374
#, python-format
-msgid "No user for id %s"
-msgstr "id %s のユーザが存在しません。"
+msgid "message %s"
+msgstr "メッセージ %s"
-#: nova/db/sqlalchemy/api.py:1666
+#: ../nova/volume/driver.py:78
#, python-format
-msgid "No user for access key %s"
-msgstr "アクセスキー %s に該当するユーザが存在しません。"
+msgid "Recovering from a failed execute. Try number %s"
+msgstr "実行失敗からリカバリーします。%s 回目のトライ。"
-#: nova/db/sqlalchemy/api.py:1728
+#: ../nova/volume/driver.py:87
#, python-format
-msgid "No project with id %s"
-msgstr "id %s のプロジェクトが存在しません。"
+msgid "volume group %s doesn't exist"
+msgstr "ボリュームグループ%sが存在しません。"
-#: nova/image/glance.py:78
+#: ../nova/volume/driver.py:220
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
-msgstr "Parallax がHTTPエラー%d を /images に対するリクエストに対して返しました。"
+msgid "FAKE AOE: %s"
+msgstr "偽のAOE: %s"
+
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
+msgstr ""
-#: nova/image/glance.py:97
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
-msgstr "Parallax がHTTPエラー %d を /images/detail に対するリクエストに対して返しました"
+msgid "FAKE ISCSI: %s"
+msgstr "偽のISCSI: %s"
-#: nova/image/s3.py:82
+#: ../nova/volume/driver.py:359
#, python-format
-msgid "Image %s could not be found"
-msgstr "イメージ %s が見つかりませんでした。"
+msgid "rbd has no pool %s"
+msgstr ""
-#: nova/network/api.py:39
+#: ../nova/volume/driver.py:414
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
-msgstr "アドレスを割り当てようとしましたが、%s のクオータを超えました。"
+msgid "Sheepdog is not working: %s"
+msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
-msgstr "アドレスのクオータを超えました。これ以上アドレスを割り当てることはできません。"
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
+msgstr ""
-#: nova/network/linux_net.py:176
+#: ../nova/wsgi.py:68
#, python-format
-msgid "Starting VLAN inteface %s"
-msgstr "VLANインタフェース %s を開始します。"
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
+msgstr ""
-#: nova/network/linux_net.py:186
-#, python-format
-msgid "Starting Bridge interface for %s"
-msgstr "%s 用のブリッジインタフェースを開始します。"
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
-#: nova/network/linux_net.py:254
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:123
#, python-format
-msgid "Hupping dnsmasq threw %s"
-msgstr "dnsmasqに対してhupを送信しましたが %s が発生しました。"
+msgid ""
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
+msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/virt/fake.py:239
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
-msgstr "Pid %d は無効です。dnsmasqを再実行します。"
+msgid "Instance %s Not Found"
+msgstr "インスタンス %s が見つかりません。"
-#: nova/network/linux_net.py:334
+#: ../nova/network/manager.py:153
#, python-format
-msgid "Killing dnsmasq threw %s"
-msgstr "dnsmasq をkillしましたが、 %s が発生しました。"
+msgid "Dissassociated %s stale fixed ip(s)"
+msgstr "無効になった %s 個の fixed ip を割当解除しました。"
-#: nova/network/manager.py:135
+#: ../nova/network/manager.py:157
msgid "setting network host"
msgstr "ネットワークホストの設定をします。"
-#: nova/network/manager.py:190
+#: ../nova/network/manager.py:212
#, python-format
msgid "Leasing IP %s"
msgstr "IP %s をリースします。"
-#: nova/network/manager.py:194
+#: ../nova/network/manager.py:216
#, python-format
msgid "IP %s leased that isn't associated"
msgstr "IP %s がリースされましたが関連付けられていません。"
-#: nova/network/manager.py:197
+#: ../nova/network/manager.py:220
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
-msgstr "IP %s が期待した mac %s ではなく %s にリースされました。"
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
-#: nova/network/manager.py:205
+#: ../nova/network/manager.py:228
#, python-format
msgid "IP %s leased that was already deallocated"
msgstr "既に割当解除しているIP %s がリースされました。"
-#: nova/network/manager.py:214
+#: ../nova/network/manager.py:233
+#, python-format
+msgid "Releasing IP %s"
+msgstr ""
+
+#: ../nova/network/manager.py:237
#, python-format
msgid "IP %s released that isn't associated"
msgstr "割り当てていないIP %s が開放されました。"
-#: nova/network/manager.py:217
+#: ../nova/network/manager.py:241
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
-msgstr "IP %s がmac %s ではない mac %s への割当から開放されました。"
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/network/manager.py:244
#, python-format
msgid "IP %s released that was not leased"
msgstr "リースしていないIP %s が開放されました。"
-#: nova/network/manager.py:442
+#: ../nova/network/manager.py:519
+msgid ""
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
-msgstr "無効になった %s 個の fixed ip を割当解除しました。"
+msgid "Introducing %s..."
+msgstr "%s を introduce します…"
+
+#: ../nova/virt/xenapi/volume_utils.py:74
+#, python-format
+msgid "Introduced %(label)s as %(sr_ref)s."
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
+msgstr "Storage Repository を作成できません。"
+
+#: ../nova/virt/xenapi/volume_utils.py:90
+#, python-format
+msgid "Unable to find SR from VBD %s"
+msgstr "VBD %s から SRを取得できません。"
+
+#: ../nova/virt/xenapi/volume_utils.py:96
+#, python-format
+msgid "Forgetting SR %s ... "
+msgstr "SR %s をforgetします。 "
+
+#: ../nova/virt/xenapi/volume_utils.py:101
+#, python-format
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:107
+#, python-format
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
+msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/virt/xenapi/volume_utils.py:111
+#, python-format
+msgid "Forgetting SR %s done."
+msgstr "SR %s のforgetが完了。"
+
+#: ../nova/virt/xenapi/volume_utils.py:113
+#, python-format
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:123
+#, python-format
+msgid "Unable to introduce VDI on SR %s"
+msgstr "SR %s のVDIのintroduceができません。"
+
+#: ../nova/virt/xenapi/volume_utils.py:128
+#, python-format
+msgid "Unable to get record of VDI %s on"
+msgstr "VDI %s のレコードを取得できません。"
+
+#: ../nova/virt/xenapi/volume_utils.py:146
+#, python-format
+msgid "Unable to introduce VDI for SR %s"
+msgstr "SR %s のVDIをintroduceできません。"
+
+#: ../nova/virt/xenapi/volume_utils.py:175
+#, python-format
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:197
+#, python-format
+msgid "Mountpoint cannot be translated: %s"
+msgstr "マウントポイントを変換できません。 %s"
+
+#: ../nova/objectstore/image.py:262
+#, python-format
+msgid "Failed to decrypt private key: %s"
+msgstr ""
+
+#: ../nova/objectstore/image.py:269
+#, python-format
+msgid "Failed to decrypt initialization vector: %s"
+msgstr ""
+
+#: ../nova/objectstore/image.py:277
+#, python-format
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:106
#, python-format
msgid "Unknown S3 value type %r"
msgstr "未知のS3 value type %r です。"
-#: nova/objectstore/handler.py:137
+#: ../nova/objectstore/handler.py:137
msgid "Authenticated request"
msgstr "認証リクエスト"
-#: nova/objectstore/handler.py:182
+#: ../nova/objectstore/handler.py:182
msgid "List of buckets requested"
msgstr "List of buckets が呼ばれました。"
-#: nova/objectstore/handler.py:209
+#: ../nova/objectstore/handler.py:209
#, python-format
msgid "List keys for bucket %s"
msgstr "バケット %s のキーの一覧"
-#: nova/objectstore/handler.py:217
+#: ../nova/objectstore/handler.py:217
#, python-format
msgid "Unauthorized attempt to access bucket %s"
msgstr "Unauthorized attempt to access bucket: バケット %s に対するアクセスは許可されていません。"
-#: nova/objectstore/handler.py:235
+#: ../nova/objectstore/handler.py:235
#, python-format
msgid "Creating bucket %s"
msgstr "バケットを作成します。 %s"
-#: nova/objectstore/handler.py:245
+#: ../nova/objectstore/handler.py:245
#, python-format
msgid "Deleting bucket %s"
msgstr "バケットを削除します。 %s"
-#: nova/objectstore/handler.py:249
+#: ../nova/objectstore/handler.py:249
#, python-format
msgid "Unauthorized attempt to delete bucket %s"
msgstr "Unauthorized attempt to delete bucket: バケット %s に対する削除は許可されていません。"
-#: nova/objectstore/handler.py:271
+#: ../nova/objectstore/handler.py:273
+#, python-format
+msgid "Getting object: %(bname)s / %(nm)s"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Getting object: %s / %s"
-msgstr "オブジェクトの取得: %s / %s"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
+msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-"Unauthorized attempt to get object: オブジェクト %s のバケット %s からの取得は許可されていません。"
-#: nova/objectstore/handler.py:292
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "Putting object: %s / %s"
-msgstr "オブジェクトの格納:: %s / %s"
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
+msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-"Unauthorized attempt to upload: オブジェクト %s のバケット %s へのアップロードは許可されていません。"
-#: nova/objectstore/handler.py:314
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "Deleting object: %s / %s"
-msgstr "オブジェクトを削除しています。: %s / %s"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
+msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/objectstore/handler.py:396
#, python-format
msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
"Not authorized to upload image: イメージの格納は許可されていません。ディレクトリ %s は正しくありません。"
-#: nova/objectstore/handler.py:401
+#: ../nova/objectstore/handler.py:404
#, python-format
msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
"Not authorized to upload image: イメージの格納は許可されていません。バケット %s への格納は許可されていません。"
-#: nova/objectstore/handler.py:406
+#: ../nova/objectstore/handler.py:409
#, python-format
msgid "Starting image upload: %s"
msgstr "イメージのアップロードを開始しました。 %s"
-#: nova/objectstore/handler.py:420
+#: ../nova/objectstore/handler.py:423
#, python-format
msgid "Not authorized to update attributes of image %s"
msgstr "Not authorized to update attributes: イメージ %s のアトリビュートの更新は許可されていません。"
-#: nova/objectstore/handler.py:428
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "Toggling publicity flag of image %s %r"
-msgstr "Toggling publicity flag: イメージ %s の公開フラグを %r に更新します。"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
+msgstr ""
-#: nova/objectstore/handler.py:433
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
msgid "Updating user fields on image %s"
msgstr "Updating user fields: イメージ %s のユーザフィールドを更新します。"
-#: nova/objectstore/handler.py:447
+#: ../nova/objectstore/handler.py:450
#, python-format
msgid "Unauthorized attempt to delete image %s"
msgstr "Unauthorized attempt to delete image: イメージ %s の削除は許可されていません。"
-#: nova/objectstore/handler.py:452
+#: ../nova/objectstore/handler.py:455
#, python-format
msgid "Deleted image: %s"
msgstr "イメージ %s を削除しました。"
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
-msgstr "適切なホストが見つかりません。"
+#: ../nova/auth/manager.py:259
+#, python-format
+msgid "Looking up user: %r"
+msgstr "ユーザ %r を検索します。"
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
-msgstr "予備の(fallback)スケジューラを実装する必要があります。"
+#: ../nova/auth/manager.py:263
+#, python-format
+msgid "Failed authorization for access key %s"
+msgstr "Failed authorization: アクセスキー %s の認証に失敗しました。"
-#: nova/scheduler/manager.py:69
+#: ../nova/auth/manager.py:264
#, python-format
-msgid "Casting to %s %s for %s"
-msgstr "メッセージのcast: %s %s for %s"
+msgid "No user found for access key %s"
+msgstr "アクセスキー %s に対するユーザが見つかりませんでした。"
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
-msgstr "全てのホストにコア数の空きがありません。"
+#: ../nova/auth/manager.py:270
+#, python-format
+msgid "Using project name = user name (%s)"
+msgstr "ユーザ名 (%s) をプロジェクト名として使用します。"
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
-msgstr "全てのホストが利用可能な容量(gigabytes)に達しています。"
+#: ../nova/auth/manager.py:277
+#, python-format
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
+msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
-msgstr "全てのホストがネットワークの最大数に達しています。"
+#: ../nova/auth/manager.py:279
+#, python-format
+msgid "No project called %s could be found"
+msgstr "プロジェクト %s は見つかりませんでした。"
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
-msgstr "インスタンスのテストには実際の仮想環境が必要です。(fakeでは実行できません。)"
+#: ../nova/auth/manager.py:287
+#, python-format
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
+msgstr ""
-#: nova/tests/test_cloud.py:210
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "Need to watch instance %s until it's running..."
-msgstr "インスタンス %s が実行するまで監視します…"
+msgid "User %(uid)s is not a member of project %(pjid)s"
+msgstr ""
-#: nova/tests/test_compute.py:104
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
-msgid "Running instances: %s"
-msgstr "インスタンス %s は実行中です。"
+msgid "Invalid signature for user %s"
+msgstr "Invalid signature: ユーザ %s の署名が不正です。"
+
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
+msgstr "署名が一致しません。"
-#: nova/tests/test_compute.py:110
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
+msgstr "プロジェクトを指定してください。"
+
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "After terminating instances: %s"
-msgstr "インスタンス %s を終了した後です。"
+msgid "The %s role can not be found"
+msgstr "ロール %s が見つかりません。"
-#: nova/tests/test_rpc.py:89
+#: ../nova/auth/manager.py:416
#, python-format
-msgid "Nested received %s, %s"
-msgstr "ネスとした受信: %s, %s"
+msgid "The %s role is global only"
+msgstr "ロール %s はグローバルでのみ使用可能です。"
-#: nova/tests/test_rpc.py:94
+#: ../nova/auth/manager.py:420
#, python-format
-msgid "Nested return %s"
-msgstr "ネストした戻り値: %s"
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
+msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Received %s"
-msgstr "%s を受信。"
+msgid "Adding sitewide role %(role)s to user %(uid)s"
+msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Target %s allocated"
-msgstr "ターゲット %s をアロケートしました。"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
+msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
-msgstr "ハイパーバイザへの接続に失敗しました。"
+#: ../nova/auth/manager.py:451
+#, python-format
+msgid "Removing sitewide role %(role)s from user %(uid)s"
+msgstr ""
-#: nova/virt/fake.py:210
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Instance %s Not Found"
-msgstr "インスタンス %s が見つかりません。"
+msgid "Created project %(name)s with manager %(manager_user)s"
+msgstr ""
-#: nova/virt/hyperv.py:118
-msgid "In init host"
-msgstr "In init host"
+#: ../nova/auth/manager.py:533
+#, python-format
+msgid "modifying project %s"
+msgstr "modifying project: プロジェクト %s を更新します。"
-#: nova/virt/hyperv.py:131
+#: ../nova/auth/manager.py:545
#, python-format
-msgid "Attempt to create duplicate vm %s"
-msgstr "VM %s を二重に作成しようとしました。"
+msgid "Adding user %(uid)s to project %(pid)s"
+msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Starting VM %s "
-msgstr "VM %s を開始します。 "
+msgid "Remove user %(uid)s from project %(pid)s"
+msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Started VM %s "
-msgstr "VM %s を開始しました。 "
+msgid "Deleting project %s"
+msgstr "Deleting project: プロジェクト %s を削除します。"
-#: nova/virt/hyperv.py:152
+#: ../nova/auth/manager.py:650
#, python-format
-msgid "spawn vm failed: %s"
-msgstr "vmの生成(spawn)に失敗しました: %s"
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
+msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Failed to create VM %s"
-msgstr "VM %s の作成に失敗しました。"
+msgid "Deleting user %s"
+msgstr "Deleting user: ユーザ %s を削除します。"
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
+#: ../nova/auth/manager.py:669
#, python-format
-msgid "Created VM %s..."
-msgstr "VM %s を作成します。"
+msgid "Access Key change for user %s"
+msgstr "Access Key change: ユーザ %s のアクセスキーを更新します。"
-#: nova/virt/hyperv.py:188
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Set memory for vm %s..."
-msgstr "vm %s のメモリを設定します。"
+msgid "Secret Key change for user %s"
+msgstr "Secret Key change: ユーザ %s のシークレットキーを更新します。"
-#: nova/virt/hyperv.py:198
+#: ../nova/auth/manager.py:673
#, python-format
-msgid "Set vcpus for vm %s..."
-msgstr "vm %s のvcpus を設定します。"
+msgid "Admin status set to %(admin)r for user %(uid)s"
+msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/auth/manager.py:722
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
-msgstr "%s のディスクをディスクファイル %s をアタッチして作成します。"
+msgid "No vpn data for project %s"
+msgstr "プロジェクト %s に関するvpnデータがありません。"
-#: nova/virt/hyperv.py:227
+#: ../nova/service.py:161
#, python-format
-msgid "Failed to add diskdrive to VM %s"
-msgstr "VM %s へのディスクドライブの追加に失敗しました。"
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
+msgstr ""
+
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
+msgstr "データベースにエントリの存在しないサービスを終了します。"
+
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr "サービスデータベースオブジェクトが消滅しました。再作成します。"
-#: nova/virt/hyperv.py:230
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
+msgstr "モデルサーバへの接続を復旧しました。"
+
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr "モデルサーバが消滅しました。"
+
+#: ../nova/auth/ldapdriver.py:174
#, python-format
-msgid "New disk drive path is %s"
-msgstr "新しいドライブパスは %s です。"
+msgid "LDAP user %s already exists"
+msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/auth/ldapdriver.py:205
#, python-format
-msgid "Failed to add vhd file to VM %s"
-msgstr "vhdファイルの VM %s への追加に失敗しました。"
+msgid "LDAP object for %s doesn't exist"
+msgstr "LDAPオブジェクト %s が存在しません。"
-#: nova/virt/hyperv.py:249
+#: ../nova/auth/ldapdriver.py:348
#, python-format
-msgid "Created disk for %s"
-msgstr "%s に diskを作成します。"
+msgid "User %s doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "Creating nic for %s "
-msgstr "%s にNICを作成します。 "
+msgid "Group can't be created because group %s already exists"
+msgstr ""
-#: nova/virt/hyperv.py:272
-msgid "Failed creating a port on the external vswitch"
-msgstr "外部vswitchへのポート作成に失敗しました。"
+#: ../nova/auth/ldapdriver.py:478
+#, python-format
+msgid "Group can't be created because user %s doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "Failed creating port for %s"
-msgstr "ポート %s の作成に失敗しました。"
+msgid "User %s can't be searched in group because the user doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/auth/ldapdriver.py:507
#, python-format
-msgid "Created switch port %s on switch %s"
-msgstr "スイッチポート %s をスイッチ %s に作成しました。"
+msgid "User %s can't be added to the group because the user doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
#, python-format
-msgid "Failed to add nic to VM %s"
-msgstr "VM %s に対してNICの追加に失敗しました。"
+msgid "The group at dn %s doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/auth/ldapdriver.py:513
#, python-format
-msgid "Created nic for %s "
-msgstr "%s のNICを作成しました。 "
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
+msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/auth/ldapdriver.py:524
#, python-format
-msgid "WMI job failed: %s"
-msgstr "WMIジョブに失敗しました: %s"
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/auth/ldapdriver.py:528
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
-msgstr "WMIジョブが成功しました: %s, 経過時間=%s "
+msgid "User %s is not a member of the group"
+msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "Got request to destroy vm %s"
-msgstr "destroy vm %s リクエストを受信しました。"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
+msgstr "グループの最後のメンバーを削除しようとしました。代わりにグループ %s を削除してください。"
-#: nova/virt/hyperv.py:383
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "Failed to destroy vm %s"
-msgstr "vm %s の削除に失敗しました。"
+msgid "User %s can't be removed from all because the user doesn't exist"
+msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "Del: disk %s vm %s"
-msgstr "Del: 削除: disk %s vm %s"
+msgid "Group at dn %s doesn't exist"
+msgstr "dnが %s のグループは存在しません。"
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/xenapi/network_utils.py:40
#, python-format
-msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+msgid "Found non-unique network for bridge %s"
+msgstr "ブリッジ %s に対してブリッジが複数存在します。"
+
+#: ../nova/virt/xenapi/network_utils.py:43
+#, python-format
+msgid "Found no network for bridge %s"
+msgstr "ブリッジ %s に対するネットワークが存在しません。"
+
+#: ../nova/api/ec2/admin.py:97
+#, python-format
+msgid "Creating new user: %s"
+msgstr "Creating new user: 新しいユーザ %s を作成します。"
+
+#: ../nova/api/ec2/admin.py:105
+#, python-format
+msgid "Deleting user: %s"
+msgstr "Deleting user: ユーザ %s を削除します。"
+
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
msgstr ""
-"vm %s の情報の取得: state=%s, mem=%s, num_cpu=%s, cpu_time=%s"
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/api/ec2/admin.py:131
#, python-format
-msgid "duplicate name found: %s"
-msgstr "%s は重複しています。"
+msgid "Adding sitewide role %(role)s to user %(user)s"
+msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/api/ec2/admin.py:137
#, python-format
-msgid "Successfully changed vm state of %s to %s"
-msgstr "vmの状態の %s から %s への変更に成功しました。"
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
+msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/api/ec2/admin.py:141
#, python-format
-msgid "Failed to change vm state of %s to %s"
-msgstr "VMの状態の %s から %s への変更に失敗しました。"
+msgid "Removing sitewide role %(role)s from user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr "operation は add または remove の何れかである必要があります。"
-#: nova/virt/images.py:70
+#: ../nova/api/ec2/admin.py:159
#, python-format
-msgid "Finished retreving %s -- placed in %s"
-msgstr "%s を取得しました。格納先: %s"
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
+msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/api/ec2/admin.py:177
#, python-format
-msgid "Connecting to libvirt: %s"
-msgstr "libvirt %s へ接続します。"
+msgid "Create project %(name)s managed by %(manager_user)s"
+msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
-msgstr "libvirtへの接続が切れています。"
+#: ../nova/api/ec2/admin.py:190
+#, python-format
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
-#: nova/virt/libvirt_conn.py:229
+#: ../nova/api/ec2/admin.py:200
#, python-format
-msgid "instance %s: deleting instance files %s"
-msgstr "インスタンス %s: インスタンスファイル %s を削除しています。"
+msgid "Delete project: %s"
+msgstr "Delete project: プロジェクト %s を削除しました。"
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/api/ec2/admin.py:214
#, python-format
-msgid "No disk at %s"
-msgstr "%s にディスクが存在しません。"
+msgid "Adding user %(user)s to project %(project)s"
+msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
-msgstr "インスタンスのスナップショットは現在libvirtに対してはサポートされていません。"
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
+msgstr ""
-#: nova/virt/libvirt_conn.py:294
#, python-format
-msgid "instance %s: rebooted"
-msgstr "インスタンス%s: 再起動しました。"
+#~ msgid ""
+#~ "%s\n"
+#~ "Command: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+#~ msgstr ""
+#~ "%s\n"
+#~ "コマンド: %s\n"
+#~ "終了コード: %s\n"
+#~ "標準出力: %r\n"
+#~ "標準エラー出力: %r"
-#: nova/virt/libvirt_conn.py:297
#, python-format
-msgid "_wait_for_reboot failed: %s"
-msgstr "_wait_for_reboot 失敗: %s"
+#~ msgid "(%s) publish (key: %s) %s"
+#~ msgstr "(%s) パブリッシュ (key: %s) %s"
-#: nova/virt/libvirt_conn.py:340
#, python-format
-msgid "instance %s: rescued"
-msgstr "インスタンス %s: rescued"
+#~ msgid "Binding %s to %s with key %s"
+#~ msgstr "%s を %s にキー %s でバインドします。"
-#: nova/virt/libvirt_conn.py:343
#, python-format
-msgid "_wait_for_rescue failed: %s"
-msgstr "_wait_for_rescue 失敗: %s"
+#~ msgid "Getting from %s: %s"
+#~ msgstr "%s から %s を取得"
-#: nova/virt/libvirt_conn.py:370
#, python-format
-msgid "instance %s: is running"
-msgstr "インスタンス %s を起動中です。"
+#~ msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+#~ msgstr "AMQPサーバ %s:%d に接続できません。 %d 秒後に再度試みます。"
-#: nova/virt/libvirt_conn.py:381
#, python-format
-msgid "instance %s: booted"
-msgstr "インスタンス %s: 起動しました。"
+#~ msgid "Starting %s node"
+#~ msgstr "ノード %s を開始します。"
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
#, python-format
-msgid "instance %s: failed to boot"
-msgstr "インスタンス %s の起動に失敗しました。"
+#~ msgid "Data store %s is unreachable. Trying again in %d seconds."
+#~ msgstr "データストア %s に接続できません。 %d 秒後に再接続します。"
-#: nova/virt/libvirt_conn.py:395
#, python-format
-msgid "virsh said: %r"
-msgstr "virsh の出力: %r"
+#~ msgid "Couldn't get IP, using 127.0.0.1 %s"
+#~ msgstr "IPを取得できません。127.0.0.1 を %s として使います。"
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
-msgstr "デバイスです。"
+#, python-format
+#~ msgid ""
+#~ "Access key %s has had %d failed authentications and will be locked out for "
+#~ "%d minutes."
+#~ msgstr "アクセスキー %s は %d 回認証に失敗したため、%d 分間ロックされます。"
-#: nova/virt/libvirt_conn.py:407
#, python-format
-msgid "data: %r, fpath: %r"
-msgstr "データ:%r ファイルパス: %r"
+#~ msgid "Authenticated Request For %s:%s)"
+#~ msgstr "リクエストを認証しました: %s:%s"
-#: nova/virt/libvirt_conn.py:415
#, python-format
-msgid "Contents of file %s: %r"
-msgstr "ファイル %s の中身: %r"
+#~ msgid "arg: %s\t\tval: %s"
+#~ msgstr "引数(arg): %s\t値(val): %s"
-#: nova/virt/libvirt_conn.py:449
#, python-format
-msgid "instance %s: Creating image"
-msgstr "インスタンス %s のイメージを生成します。"
+#~ msgid "Unauthorized request for controller=%s and action=%s"
+#~ msgstr "許可されていないリクエスト: controller=%s, action %sです。"
-#: nova/virt/libvirt_conn.py:505
#, python-format
-msgid "instance %s: injecting key into image %s"
-msgstr "インスタンス %s にキー %s をインジェクトします。"
+#~ msgid "Adding role %s to user %s for project %s"
+#~ msgstr "Adding role: ロール %s をユーザ %s、プロジェクト %s に追加します。"
-#: nova/virt/libvirt_conn.py:508
#, python-format
-msgid "instance %s: injecting net into image %s"
-msgstr "インスタンス %s のネットワーク設定をイメージ %s にインジェクトします。"
+#~ msgid "Adding sitewide role %s to user %s"
+#~ msgstr "Adding sitewide role: サイトワイドのロール %s をユーザ %s に追加します。"
-#: nova/virt/libvirt_conn.py:516
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
-msgstr "インスタンス %s: データをイメージ %s にインジェクトする際にエラーが発生しました。(%s)"
+#~ msgid "Removing role %s from user %s for project %s"
+#~ msgstr "Removing role: ロール %s をユーザ %s プロジェクト %s から削除します。"
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
#, python-format
-msgid "instance %s: starting toXML method"
-msgstr "インスタンス %s: toXML メソッドを開始。"
+#~ msgid "Removing sitewide role %s from user %s"
+#~ msgstr "Removing sitewide role: サイトワイドのロール %s をユーザ %s から削除します。"
-#: nova/virt/libvirt_conn.py:589
#, python-format
-msgid "instance %s: finished toXML method"
-msgstr "インスタンス %s: toXML メソッドを完了。"
+#~ msgid "Getting x509 for user: %s on project: %s"
+#~ msgstr "Getting X509: x509の取得: ユーザ %s, プロジェクト %s"
-#: nova/virt/xenapi_conn.py:113
-msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
-msgstr ""
-"connection_type=xenapi を使用するには、以下の指定が必要です: xenapi_connection_url, "
-"xenapi_connection_username (オプション), xenapi_connection_password"
+#, python-format
+#~ msgid "Create project %s managed by %s"
+#~ msgstr "Create project: プロジェクト %s (%s により管理される)を作成します。"
-#: nova/virt/xenapi_conn.py:263
#, python-format
-msgid "Task [%s] %s status: success %s"
-msgstr "タスク [%s] %s ステータス: success %s"
+#~ msgid "Adding user %s to project %s"
+#~ msgstr "Adding user: ユーザ %s をプロジェクト %s に追加します。"
-#: nova/virt/xenapi_conn.py:271
#, python-format
-msgid "Task [%s] %s status: %s %s"
-msgstr "タスク [%s] %s ステータス: %s %s"
+#~ msgid "Removing user %s from project %s"
+#~ msgstr "Removing user: ユーザ %s をプロジェクト %s から削除します。"
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
#, python-format
-msgid "Got exception: %s"
-msgstr "例外 %s が発生しました。"
+#~ msgid "Unsupported API request: controller = %s,action = %s"
+#~ msgstr "サポートされていないAPIリクエストです。 controller = %s,action = %s"
-#: nova/virt/xenapi/fake.py:72
#, python-format
-msgid "%s: _db_content => %s"
-msgstr "%s: _db_content => %s"
+#~ msgid "Attach volume %s to instacne %s at %s"
+#~ msgstr "Attach volume: ボリューム%s をインスタンス %s にデバイス %s でアタッチします。"
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
-msgstr "NotImplemented 例外を発生させます。"
+#, python-format
+#~ msgid "Associate address %s to instance %s"
+#~ msgstr "Associate address: アドレス %s をインスタンス %s に関連付けます。"
-#: nova/virt/xenapi/fake.py:249
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
-msgstr "xenapi.fake には %s が実装されていません。"
+#~ msgid "Registered image %s with id %s"
+#~ msgstr "Registered image: イメージ %s をid %s で登録します。"
-#: nova/virt/xenapi/fake.py:283
#, python-format
-msgid "Calling %s %s"
-msgstr "呼び出し: %s %s"
+#~ msgid "User %s is already a member of the group %s"
+#~ msgstr "ユーザ %s は既にグループ %s のメンバーです。"
-#: nova/virt/xenapi/fake.py:288
#, python-format
-msgid "Calling getter %s"
-msgstr "getter %s をコールします。"
+#~ msgid "failed authorization: no project named %s (user=%s)"
+#~ msgstr "Failed authorization: 認証に失敗しました。プロジェクト名 %s (ユーザ = %s) は存在しません。"
-#: nova/virt/xenapi/fake.py:340
#, python-format
-msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
-msgstr "xenapi.fake に %s に関する実装がないか、引数の数が誤っています。"
+#~ msgid "Failed authorization: user %s not admin and not member of project %s"
+#~ msgstr ""
+#~ "Failed authorization: 認証に失敗しました: ユーザ %s は管理者ではなくかつプロジェクト %s のメンバーではありません。"
-#: nova/virt/xenapi/network_utils.py:40
#, python-format
-msgid "Found non-unique network for bridge %s"
-msgstr "ブリッジ %s に対してブリッジが複数存在します。"
+#~ msgid "User %s is not a member of project %s"
+#~ msgstr "ユーザ %s はプロジェクト %s のメンバーではありません。"
-#: nova/virt/xenapi/network_utils.py:43
#, python-format
-msgid "Found no network for bridge %s"
-msgstr "ブリッジ %s に対するネットワークが存在しません。"
+#~ msgid "Adding role %s to user %s in project %s"
+#~ msgstr "Adding role: ロール %s をユーザ %s (プロジェクト %s の) に追加します。"
-#: nova/virt/xenapi/vm_utils.py:127
#, python-format
-msgid "Created VM %s as %s."
-msgstr "VM %s を %s として作成しました。"
+#~ msgid "Removing role %s from user %s on project %s"
+#~ msgstr "Removing role: ロール %s をユーザ %s (プロジェクト %s の)から削除します。"
-#: nova/virt/xenapi/vm_utils.py:147
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
-msgstr "VM %s, VDI %s のVBDを作成します… "
+#~ msgid "Created project %s with manager %s"
+#~ msgstr "Created project: プロジェクト %s (マネージャ %s)を作成します。"
-#: nova/virt/xenapi/vm_utils.py:149
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
-msgstr "VBD %s を VM %s, VDI %s に対して作成しました。"
+#~ msgid "Remove user %s from project %s"
+#~ msgstr "Remove user: ユーザ %s をプロジェクト %s から削除します。"
-#: nova/virt/xenapi/vm_utils.py:165
#, python-format
-msgid "VBD not found in instance %s"
-msgstr "インスタンス %s のVBDが見つかりません。"
+#~ msgid "Created user %s (admin: %r)"
+#~ msgstr "Created user: ユーザ %s (admin: %r) を作成しました。"
-#: nova/virt/xenapi/vm_utils.py:175
#, python-format
-msgid "Unable to unplug VBD %s"
-msgstr "VBD %s の unplug に失敗しました。"
+#~ msgid "Admin status set to %r for user %s"
+#~ msgstr "Admin status set: 管理者ステータス %r をユーザ %s に設定します。"
-#: nova/virt/xenapi/vm_utils.py:187
#, python-format
-msgid "Unable to destroy VBD %s"
-msgstr "VBD %s の削除に失敗しました。"
+#~ msgid "Quota exceeeded for %s, tried to run %s instances"
+#~ msgstr "%s のクオータ上限を超えました。%s インスタンスを実行しようとしました。"
-#: nova/virt/xenapi/vm_utils.py:202
#, python-format
-msgid "Creating VIF for VM %s, network %s."
-msgstr "VM %s, ネットワーク %s を作成します。"
+#~ msgid "Casting to scheduler for %s/%s's instance %s"
+#~ msgstr "スケジューラに対して %s/%s のインスタンス %s を送信します。"
-#: nova/virt/xenapi/vm_utils.py:205
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
-msgstr "VIF %s を VM %s, ネットワーク %s に作成しました。"
+#~ msgid "Going to try and terminate %s"
+#~ msgstr "%s を終了します。"
-#: nova/virt/xenapi/vm_utils.py:216
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
-msgstr "VM %s のスナップショットをラベル '%s' で作成します。"
+#~ msgid "Input partition size not evenly divisible by sector size: %d / %d"
+#~ msgstr "インプットパーティションサイズがセクターサイズで割り切れません。 %d / %d"
-#: nova/virt/xenapi/vm_utils.py:229
#, python-format
-msgid "Created snapshot %s from VM %s."
-msgstr "スナップショット %s を VM %s について作成しました。"
+#~ msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+#~ msgstr "ローカルストレージのバイト数がセクターサイズで割り切れません: %d / %d"
-#: nova/virt/xenapi/vm_utils.py:243
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
-msgstr "xapiに対して %s を '%s' としてアップロードするように指示します。"
+#~ msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+#~ msgstr "check_instance_lock: arguments: |%s| |%s| |%s|"
-#: nova/virt/xenapi/vm_utils.py:261
#, python-format
-msgid "Asking xapi to fetch %s as %s"
-msgstr "xapi に対して %s を %s として取得するように指示します。"
+#~ msgid "Disassociating address %s"
+#~ msgstr "アドレス %s の関連付けを解除(disassociate)しています。"
-#: nova/virt/xenapi/vm_utils.py:279
#, python-format
-msgid "Looking up vdi %s for PV kernel"
-msgstr "PV kernelのvdi %s を取得します。"
+#~ msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+#~ msgstr "実行していないインスタンスの再起動を試みます。%s (状態: %s 期待する状態: %s)"
-#: nova/virt/xenapi/vm_utils.py:290
#, python-format
-msgid "PV Kernel in VDI:%d"
-msgstr "VDIのPV Kernel: %d"
+#~ msgid ""
+#~ "trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+#~ msgstr "実行していないインスタンスのスナップショット取得を試みます。%s (状態: %s 期待する状態: %s)"
-#: nova/virt/xenapi/vm_utils.py:318
#, python-format
-msgid "VDI %s is still available"
-msgstr "VDI %s は依然として存在しています。"
+#~ msgid "instance %s: attaching volume %s to %s"
+#~ msgstr "attaching volume: インスタンス %s についてボリューム %s を %s にアタッチします。"
-#: nova/virt/xenapi/vm_utils.py:331
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
-msgstr "(VM_UTILS) xenserver の vm state -> |%s|"
+#~ msgid "instance %s: attach failed %s, removing"
+#~ msgstr "インスタンス %s: %sのアタッチに失敗しました。リムーブします。"
-#: nova/virt/xenapi/vm_utils.py:333
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
-msgstr "(VM_UTILS) xenapi の power_state -> |%s|"
+#~ msgid "Detach volume %s from mountpoint %s on instance %s"
+#~ msgstr "Detach volume: ボリューム %s をマウントポイント %s (インスタンス%s)からデタッチします。"
-#: nova/virt/xenapi/vm_utils.py:390
#, python-format
-msgid "VHD %s has parent %s"
-msgstr "VHD %s のペアレントは %s です。"
+#~ msgid "Cannot get blockstats for \"%s\" on \"%s\""
+#~ msgstr "ブロックデバイス \"%s\" の統計を \"%s\" について取得できません。"
-#: nova/virt/xenapi/vm_utils.py:407
#, python-format
-msgid "Re-scanning SR %s"
-msgstr "SR %s を再スキャンします。"
+#~ msgid "Cannot get ifstats for \"%s\" on \"%s\""
+#~ msgstr "インタフェース \"%s\" の統計を \"%s\" について取得できません。"
-#: nova/virt/xenapi/vm_utils.py:431
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
-msgstr "ペアレント %s がオリジナルのペアレント %s と一致しません。合致するのを待ちます…"
+#~ msgid "No service for %s, %s"
+#~ msgstr "%s, %s のserviceが存在しません。"
-#: nova/virt/xenapi/vm_utils.py:448
#, python-format
-msgid "No VDIs found for VM %s"
-msgstr "VM %s にVDIが存在しません。"
+#~ msgid "No instance for id %s"
+#~ msgstr "id %s のinstanceが存在しません。"
-#: nova/virt/xenapi/vm_utils.py:452
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
-msgstr "予期しない数 (%s) のVDIがVM %s に存在します。"
+#~ msgid "no keypair for user %s, name %s"
+#~ msgstr "ユーザ %s, ネーム%s に該当するキーペアが存在しません。"
-#: nova/virt/xenapi/vmops.py:62
#, python-format
-msgid "Attempted to create non-unique name %s"
-msgstr "ユニークではないname %s を作成しようとしました。"
+#~ msgid "No volume for id %s"
+#~ msgstr "id %s に該当するボリュームが存在しません。"
-#: nova/virt/xenapi/vmops.py:99
#, python-format
-msgid "Starting VM %s..."
-msgstr "VM %s を開始します…"
+#~ msgid "No security group named %s for project: %s"
+#~ msgstr "セキュリティグループ名 %s がプロジェクト %s に存在しません。"
-#: nova/virt/xenapi/vmops.py:101
#, python-format
-msgid "Spawning VM %s created %s."
-msgstr "VM %s の生成(spawning) により %s を作成しました。"
+#~ msgid "Parallax returned HTTP error %d from request for /images"
+#~ msgstr "Parallax がHTTPエラー%d を /images に対するリクエストに対して返しました。"
-#: nova/virt/xenapi/vmops.py:112
#, python-format
-msgid "Instance %s: booted"
-msgstr "インスタンス%s: ブートしました。"
+#~ msgid "Parallax returned HTTP error %d from request for /images/detail"
+#~ msgstr "Parallax がHTTPエラー %d を /images/detail に対するリクエストに対して返しました"
-#: nova/virt/xenapi/vmops.py:137
#, python-format
-msgid "Instance not present %s"
-msgstr "インスタンス%s が存在しません。"
+#~ msgid "IP %s leased to bad mac %s vs %s"
+#~ msgstr "IP %s が期待した mac %s ではなく %s にリースされました。"
-#: nova/virt/xenapi/vmops.py:166
#, python-format
-msgid "Starting snapshot for VM %s"
-msgstr "VM %s に対するスナップショットを開始します。"
+#~ msgid "IP %s released from bad mac %s vs %s"
+#~ msgstr "IP %s がmac %s ではない mac %s への割当から開放されました。"
-#: nova/virt/xenapi/vmops.py:174
#, python-format
-msgid "Unable to Snapshot %s: %s"
-msgstr "%s のスナップショットに失敗しました: %s"
+#~ msgid "Getting object: %s / %s"
+#~ msgstr "オブジェクトの取得: %s / %s"
-#: nova/virt/xenapi/vmops.py:184
#, python-format
-msgid "Finished snapshot and upload for VM %s"
-msgstr "VM %s のスナップショットとアップロードが完了しました。"
+#~ msgid "Unauthorized attempt to get object %s from bucket %s"
+#~ msgstr ""
+#~ "Unauthorized attempt to get object: オブジェクト %s のバケット %s からの取得は許可されていません。"
-#: nova/virt/xenapi/vmops.py:252
#, python-format
-msgid "suspend: instance not present %s"
-msgstr "suspend: インスタンス %s は存在しません。"
+#~ msgid "Putting object: %s / %s"
+#~ msgstr "オブジェクトの格納:: %s / %s"
-#: nova/virt/xenapi/vmops.py:262
#, python-format
-msgid "resume: instance not present %s"
-msgstr "resume: インスタンス %s は存在しません。"
+#~ msgid "Unauthorized attempt to upload object %s to bucket %s"
+#~ msgstr ""
+#~ "Unauthorized attempt to upload: オブジェクト %s のバケット %s へのアップロードは許可されていません。"
-#: nova/virt/xenapi/vmops.py:271
#, python-format
-msgid "Instance not found %s"
-msgstr "インスタンス %s が見つかりません。"
+#~ msgid "Deleting object: %s / %s"
+#~ msgstr "オブジェクトを削除しています。: %s / %s"
-#: nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Introducing %s..."
-msgstr "%s を introduce します…"
+#~ msgid "Toggling publicity flag of image %s %r"
+#~ msgstr "Toggling publicity flag: イメージ %s の公開フラグを %r に更新します。"
-#: nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Introduced %s as %s."
-msgstr "%s を %s として introduce しました。"
+#~ msgid "Casting to %s %s for %s"
+#~ msgstr "メッセージのcast: %s %s for %s"
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
-msgstr "Storage Repository を作成できません。"
+#, python-format
+#~ msgid "Nested received %s, %s"
+#~ msgstr "ネスとした受信: %s, %s"
-#: nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Unable to find SR from VBD %s"
-msgstr "VBD %s から SRを取得できません。"
+#~ msgid "Creating disk for %s by attaching disk file %s"
+#~ msgstr "%s のディスクをディスクファイル %s をアタッチして作成します。"
-#: nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "Forgetting SR %s ... "
-msgstr "SR %s をforgetします。 "
+#~ msgid "Created switch port %s on switch %s"
+#~ msgstr "スイッチポート %s をスイッチ %s に作成しました。"
-#: nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
-msgstr "例外 %s が %s のPBDを取得する際に発生しましたが無視します。"
+#~ msgid "WMI job succeeded: %s, Elapsed=%s "
+#~ msgstr "WMIジョブが成功しました: %s, 経過時間=%s "
-#: nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
-msgstr "例外 %s が %s のPBDをunplugする際に発生しましたが無視します。"
+#~ msgid "Del: disk %s vm %s"
+#~ msgstr "Del: 削除: disk %s vm %s"
-#: nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Forgetting SR %s done."
-msgstr "SR %s のforgetが完了。"
+#~ msgid ""
+#~ "Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
+#~ "cpu_time=%s"
+#~ msgstr ""
+#~ "vm %s の情報の取得: state=%s, mem=%s, num_cpu=%s, cpu_time=%s"
-#: nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
-msgstr "例外 %s がSR %s をforgetする際に発生しましたが無視します。"
+#~ msgid "Successfully changed vm state of %s to %s"
+#~ msgstr "vmの状態の %s から %s への変更に成功しました。"
-#: nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "Unable to introduce VDI on SR %s"
-msgstr "SR %s のVDIのintroduceができません。"
+#~ msgid "Failed to change vm state of %s to %s"
+#~ msgstr "VMの状態の %s から %s への変更に失敗しました。"
-#: nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Unable to get record of VDI %s on"
-msgstr "VDI %s のレコードを取得できません。"
+#~ msgid "Finished retreving %s -- placed in %s"
+#~ msgstr "%s を取得しました。格納先: %s"
-#: nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Unable to introduce VDI for SR %s"
-msgstr "SR %s のVDIをintroduceできません。"
+#~ msgid "instance %s: deleting instance files %s"
+#~ msgstr "インスタンス %s: インスタンスファイル %s を削除しています。"
-#: nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Unable to obtain target information %s, %s"
-msgstr "ターゲットの情報を取得できません。 %s, %s"
+#~ msgid "data: %r, fpath: %r"
+#~ msgstr "データ:%r ファイルパス: %r"
-#: nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Mountpoint cannot be translated: %s"
-msgstr "マウントポイントを変換できません。 %s"
+#~ msgid "Contents of file %s: %r"
+#~ msgstr "ファイル %s の中身: %r"
-#: nova/virt/xenapi/volumeops.py:51
#, python-format
-msgid "Attach_volume: %s, %s, %s"
-msgstr "Attach_volume: ボリュームのアタッチ: %s, %s, %s"
+#~ msgid "instance %s: injecting key into image %s"
+#~ msgstr "インスタンス %s にキー %s をインジェクトします。"
-#: nova/virt/xenapi/volumeops.py:69
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
-msgstr "SR %s にインスタンス %s のVDIを作成できません。"
+#~ msgid "instance %s: injecting net into image %s"
+#~ msgstr "インスタンス %s のネットワーク設定をイメージ %s にインジェクトします。"
-#: nova/virt/xenapi/volumeops.py:81
#, python-format
-msgid "Unable to use SR %s for instance %s"
-msgstr "SR %s をインスタンス %s に対して利用できません。"
+#~ msgid "instance %s: ignoring error injecting data into image %s (%s)"
+#~ msgstr "インスタンス %s: データをイメージ %s にインジェクトする際にエラーが発生しました。(%s)"
-#: nova/virt/xenapi/volumeops.py:93
#, python-format
-msgid "Unable to attach volume to instance %s"
-msgstr "インスタンス %s にボリュームをアタッチできません。"
+#~ msgid "Task [%s] %s status: success %s"
+#~ msgstr "タスク [%s] %s ステータス: success %s"
-#: nova/virt/xenapi/volumeops.py:95
#, python-format
-msgid "Mountpoint %s attached to instance %s"
-msgstr "マウントポイント %s をインスタンス %s にアタッチしました。"
+#~ msgid "Task [%s] %s status: %s %s"
+#~ msgstr "タスク [%s] %s ステータス: %s %s"
-#: nova/virt/xenapi/volumeops.py:106
#, python-format
-msgid "Detach_volume: %s, %s"
-msgstr "Detach_volume: ボリュームのデタッチ: %s, %s"
+#~ msgid "%s: _db_content => %s"
+#~ msgstr "%s: _db_content => %s"
-#: nova/virt/xenapi/volumeops.py:113
#, python-format
-msgid "Unable to locate volume %s"
-msgstr "ボリューム %s の存在が確認できません。"
+#~ msgid "Calling %s %s"
+#~ msgstr "呼び出し: %s %s"
-#: nova/virt/xenapi/volumeops.py:121
#, python-format
-msgid "Unable to detach volume %s"
-msgstr "ボリューム %s のデタッチができません。"
+#~ msgid "Created VM %s as %s."
+#~ msgstr "VM %s を %s として作成しました。"
-#: nova/virt/xenapi/volumeops.py:128
#, python-format
-msgid "Mountpoint %s detached from instance %s"
-msgstr "マウントポイント %s をインスタンス %s からデタッチしました。"
+#~ msgid "Creating VBD for VM %s, VDI %s ... "
+#~ msgstr "VM %s, VDI %s のVBDを作成します… "
-#: nova/volume/api.py:44
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
-msgstr "%sのクオータを超えています。サイズ %sG のボリュームの作成を行おうとしました。"
+#~ msgid "Created VBD %s for VM %s, VDI %s."
+#~ msgstr "VBD %s を VM %s, VDI %s に対して作成しました。"
-#: nova/volume/api.py:46
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
-msgstr "ボリュームのクオータを超えています。%sの大きさのボリュームは作成できません。"
+#~ msgid "Creating VIF for VM %s, network %s."
+#~ msgstr "VM %s, ネットワーク %s を作成します。"
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
-msgstr "ボリュームのステータス(status)が available でなければなりません。"
+#, python-format
+#~ msgid "Created VIF %s for VM %s, network %s."
+#~ msgstr "VIF %s を VM %s, ネットワーク %s に作成しました。"
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
-msgstr "ボリュームは既にアタッチされています(attached)。"
+#, python-format
+#~ msgid "Snapshotting VM %s with label '%s'..."
+#~ msgstr "VM %s のスナップショットをラベル '%s' で作成します。"
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
-msgstr "ボリュームは既にデタッチされています(detached)。"
+#, python-format
+#~ msgid "Created snapshot %s from VM %s."
+#~ msgstr "スナップショット %s を VM %s について作成しました。"
-#: nova/volume/driver.py:76
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
-msgstr "実行失敗からリカバリーします。%s 回目のトライ。"
+#~ msgid "Asking xapi to upload %s as '%s'"
+#~ msgstr "xapiに対して %s を '%s' としてアップロードするように指示します。"
-#: nova/volume/driver.py:85
#, python-format
-msgid "volume group %s doesn't exist"
-msgstr "ボリュームグループ%sが存在しません。"
+#~ msgid "Asking xapi to fetch %s as %s"
+#~ msgstr "xapi に対して %s を %s として取得するように指示します。"
-#: nova/volume/driver.py:210
#, python-format
-msgid "FAKE AOE: %s"
-msgstr "偽のAOE: %s"
+#~ msgid "PV Kernel in VDI:%d"
+#~ msgstr "VDIのPV Kernel: %d"
-#: nova/volume/driver.py:315
#, python-format
-msgid "FAKE ISCSI: %s"
-msgstr "偽のISCSI: %s"
+#~ msgid "VHD %s has parent %s"
+#~ msgstr "VHD %s のペアレントは %s です。"
-#: nova/volume/manager.py:85
#, python-format
-msgid "Re-exporting %s volumes"
-msgstr "%s 個のボリュームを再エクスポートします。"
+#~ msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+#~ msgstr "ペアレント %s がオリジナルのペアレント %s と一致しません。合致するのを待ちます…"
-#: nova/volume/manager.py:93
#, python-format
-msgid "volume %s: creating"
-msgstr "ボリューム%sを作成します。"
+#~ msgid "Unexpected number of VDIs (%s) found for VM %s"
+#~ msgstr "予期しない数 (%s) のVDIがVM %s に存在します。"
-#: nova/volume/manager.py:102
#, python-format
-msgid "volume %s: creating lv of size %sG"
-msgstr "ボリューム%sの%sGのlv (論理ボリューム) を作成します。"
+#~ msgid "Spawning VM %s created %s."
+#~ msgstr "VM %s の生成(spawning) により %s を作成しました。"
-#: nova/volume/manager.py:106
#, python-format
-msgid "volume %s: creating export"
-msgstr "ボリューム %s をエクスポートします。"
+#~ msgid "Unable to Snapshot %s: %s"
+#~ msgstr "%s のスナップショットに失敗しました: %s"
-#: nova/volume/manager.py:113
#, python-format
-msgid "volume %s: created successfully"
-msgstr "ボリューム %s の作成に成功しました。"
+#~ msgid "suspend: instance not present %s"
+#~ msgstr "suspend: インスタンス %s は存在しません。"
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
-msgstr "ボリュームはアタッチされたままです。"
+#, python-format
+#~ msgid "resume: instance not present %s"
+#~ msgstr "resume: インスタンス %s は存在しません。"
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
-msgstr "ボリュームはこのノードのローカルではありません。"
+#, python-format
+#~ msgid "Instance not found %s"
+#~ msgstr "インスタンス %s が見つかりません。"
-#: nova/volume/manager.py:124
#, python-format
-msgid "volume %s: removing export"
-msgstr "ボリューム %s のエクスポートを解除します。"
+#~ msgid "Introduced %s as %s."
+#~ msgstr "%s を %s として introduce しました。"
-#: nova/volume/manager.py:126
#, python-format
-msgid "volume %s: deleting"
-msgstr "ボリューム %s を削除します。"
+#~ msgid "Ignoring exception %s when getting PBDs for %s"
+#~ msgstr "例外 %s が %s のPBDを取得する際に発生しましたが無視します。"
-#: nova/volume/manager.py:129
#, python-format
-msgid "volume %s: deleted successfully"
-msgstr "ボリューム %s の削除に成功しました。"
+#~ msgid "Ignoring exception %s when unplugging PBD %s"
+#~ msgstr "例外 %s が %s のPBDをunplugする際に発生しましたが無視します。"
+
+#, python-format
+#~ msgid "Ignoring exception %s when forgetting SR %s"
+#~ msgstr "例外 %s がSR %s をforgetする際に発生しましたが無視します。"
+
+#, python-format
+#~ msgid "Unable to obtain target information %s, %s"
+#~ msgstr "ターゲットの情報を取得できません。 %s, %s"
+
+#, python-format
+#~ msgid "Attach_volume: %s, %s, %s"
+#~ msgstr "Attach_volume: ボリュームのアタッチ: %s, %s, %s"
+
+#, python-format
+#~ msgid "Unable to create VDI on SR %s for instance %s"
+#~ msgstr "SR %s にインスタンス %s のVDIを作成できません。"
+
+#, python-format
+#~ msgid "Unable to use SR %s for instance %s"
+#~ msgstr "SR %s をインスタンス %s に対して利用できません。"
+
+#, python-format
+#~ msgid "Mountpoint %s attached to instance %s"
+#~ msgstr "マウントポイント %s をインスタンス %s にアタッチしました。"
+
+#, python-format
+#~ msgid "Detach_volume: %s, %s"
+#~ msgstr "Detach_volume: ボリュームのデタッチ: %s, %s"
+
+#, python-format
+#~ msgid "Mountpoint %s detached from instance %s"
+#~ msgstr "マウントポイント %s をインスタンス %s からデタッチしました。"
+
+#, python-format
+#~ msgid "Quota exceeeded for %s, tried to create %sG volume"
+#~ msgstr "%sのクオータを超えています。サイズ %sG のボリュームの作成を行おうとしました。"
+
+#, python-format
+#~ msgid "Volume quota exceeded. You cannot create a volume of size %s"
+#~ msgstr "ボリュームのクオータを超えています。%sの大きさのボリュームは作成できません。"
+
+#, python-format
+#~ msgid "volume %s: creating lv of size %sG"
+#~ msgstr "ボリューム%sの%sGのlv (論理ボリューム) を作成します。"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index e57f7304a..887c32597 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,2142 +7,3021 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
-"PO-Revision-Date: 2011-02-03 20:32+0000\n"
-"Last-Translator: André Gondim <andregondim@ubuntu.com>\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
+"PO-Revision-Date: 2011-03-24 14:51+0000\n"
+"Last-Translator: msinhore <msinhore@gmail.com>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-05 05:36+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-03-25 05:22+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
-msgid "Filename of root CA"
-msgstr "Nome do arquivo da CA raiz"
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr "Hosts não encontrados"
-#: nova/crypto.py:49
-msgid "Filename of private key"
-msgstr "Nome do arquivo da chave privada"
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr "Erro inesperado ao executar o comando."
-#: nova/crypto.py:51
-msgid "Filename of root Certificate Revokation List"
-msgstr "Nome de arquivo da Lista de Revogação de Certificados"
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
-#: nova/crypto.py:53
-msgid "Where we keep our keys"
-msgstr "Aonde armazenamos nossas chaves"
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
-#: nova/crypto.py:55
-msgid "Where we keep our root CA"
-msgstr "Aonde mantemos nosso CA raiz"
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr "Exceção não capturada"
-#: nova/crypto.py:57
-msgid "Should we use a CA for each project?"
-msgstr "Devemos usar um CA para cada projeto?"
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr "Cota excedida para %(pid)s, tentando criar volume com %(size)sG"
-#: nova/crypto.py:61
+#: ../nova/volume/api.py:47
#, python-format
-msgid "Subject for certificate for users, %s for project, user, timestamp"
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
msgstr ""
-"Sujeito do certificado para usuários, %s para projeto, usuário, timestamp"
+"Cota excedida para o volume. Você não pode criar um volume com o tamanho %sG"
-#: nova/crypto.py:66
-#, python-format
-msgid "Subject for certificate for projects, %s for project, timestamp"
-msgstr "Sujeito do certificado para projetos, %s para projeto, timestamp"
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr "O status do volume parece estar disponível"
-#: nova/crypto.py:71
-#, python-format
-msgid "Subject for certificate for vpns, %s for project, timestamp"
-msgstr "Sujeito do certificado para vpns, %s para projeto, timestamp"
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr "O Volume já está anexado"
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr "O Volume já está desanexado"
-#: nova/crypto.py:258
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr "Falha ao ler o IP privado"
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr "Falha ao ler o(s) IP(s) público(s)"
+
+#: ../nova/api/openstack/servers.py:152
#, python-format
-msgid "Flags path: %s"
-msgstr "Caminho da sinalização: %s"
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr "%(param)s propriedade não foi encontrada para %(_image_id)s"
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
-msgstr "Erro inesperado ao executar o comando."
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr "Os keypairs não foram definidos"
-#: nova/exception.py:36
+#: ../nova/api/openstack/servers.py:238
#, python-format
-msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-msgstr ""
-"%s\n"
-"Comando: %s\n"
-"Código de retorno: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-
-#: nova/exception.py:86
-msgid "Uncaught exception"
-msgstr "Exceção não capturada"
+msgid "Compute.api::lock %s"
+msgstr "Compute.api::lock %s"
-#: nova/fakerabbit.py:48
+#: ../nova/api/openstack/servers.py:253
#, python-format
-msgid "(%s) publish (key: %s) %s"
-msgstr "(%s) publicar (key: %s) %s"
+msgid "Compute.api::unlock %s"
+msgstr "Compute.api::unlock %s"
-#: nova/fakerabbit.py:53
+#: ../nova/api/openstack/servers.py:267
#, python-format
-msgid "Publishing to route %s"
-msgstr "Publicando para rota %s"
+msgid "Compute.api::get_lock %s"
+msgstr "Compute.api::get_lock %s"
-#: nova/fakerabbit.py:83
+#: ../nova/api/openstack/servers.py:281
#, python-format
-msgid "Declaring queue %s"
-msgstr "Declarando fila %s"
+msgid "Compute.api::reset_network %s"
+msgstr "Compute.api::reset_network %s"
-#: nova/fakerabbit.py:89
+#: ../nova/api/openstack/servers.py:292
#, python-format
-msgid "Declaring exchange %s"
-msgstr "Declarando troca %s"
+msgid "Compute.api::pause %s"
+msgstr "Compute.api::pause %s"
-#: nova/fakerabbit.py:95
+#: ../nova/api/openstack/servers.py:303
#, python-format
-msgid "Binding %s to %s with key %s"
-msgstr "Atribuindo %s para %s com chave %s"
+msgid "Compute.api::unpause %s"
+msgstr "Compute.api::unpause %s"
-#: nova/fakerabbit.py:120
+#: ../nova/api/openstack/servers.py:314
#, python-format
-msgid "Getting from %s: %s"
-msgstr "Obtendo de %s: %s"
+msgid "compute.api::suspend %s"
+msgstr "compute.api::suspend %s"
-#: nova/rpc.py:92
+#: ../nova/api/openstack/servers.py:325
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
-msgstr ""
-"Servidor AMQP em %s:%d inatingível. Tentando novamente em %d segundos."
+msgid "compute.api::resume %s"
+msgstr "compute.api::resume %s"
-#: nova/rpc.py:99
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr "Número errado de argumentos."
+
+#: ../nova/twistd.py:209
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgid "pidfile %s does not exist. Daemon not running?\n"
msgstr ""
-"Não foi possível conectar ao servidor AMQP após %d tentativas. Desligando."
+"Arquivo do id do processo (pidfile) %s não existe. O Daemon está parado?\n"
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
-msgstr "Reconectado à fila"
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr "Processo inexistente"
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
-msgstr "Falha ao obter mensagem da fila"
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr "Servindo %s"
-#: nova/rpc.py:155
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr "Conjunto completo de FLAGS:"
+
+#: ../nova/twistd.py:266
#, python-format
-msgid "Initing the Adapter Consumer for %s"
-msgstr "Iniciando o Adaptador Consumidor para %s"
+msgid "Starting %s"
+msgstr "Iniciando %s"
-#: nova/rpc.py:170
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
#, python-format
-msgid "received %s"
-msgstr "recebido %s"
+msgid "Instance %s not found"
+msgstr "Instancia %s não encontrada"
-#: nova/rpc.py:183
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
#, python-format
-msgid "no method for message: %s"
-msgstr "sem método para mensagem: %s"
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
-#: nova/rpc.py:184
+#: ../nova/virt/xenapi/volumeops.py:69
#, python-format
-msgid "No method for message: %s"
-msgstr "Sem método para mensagem: %s"
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+"Não é possível criar o VDI no SR %(sr_ref)s para a instância "
+"%(instance_name)s"
-#: nova/rpc.py:245
+#: ../nova/virt/xenapi/volumeops.py:80
#, python-format
-msgid "Returning exception %s to caller"
-msgstr "Retornando exceção %s ao método de origem"
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+"Não é possível usar o SR %(sr_ref)s para a instância %(instance_name)s"
-#: nova/rpc.py:286
+#: ../nova/virt/xenapi/volumeops.py:91
#, python-format
-msgid "unpacked context: %s"
-msgstr "conteúdo descompactado: %s"
+msgid "Unable to attach volume to instance %s"
+msgstr "Não é possível anexar o volume na instância %s"
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
-msgstr "Fazendo chamada assíncrona..."
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr ""
+"Ponto de montagem %(mountpoint)s conectada à instância %(instance_name)s"
-#: nova/rpc.py:308
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
#, python-format
-msgid "MSG_ID is %s"
-msgstr "MSG_ID é %s"
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s"
-#: nova/rpc.py:356
+#: ../nova/virt/xenapi/volumeops.py:112
#, python-format
-msgid "response %s"
-msgstr "resposta %s"
+msgid "Unable to locate volume %s"
+msgstr "Não é possível localizar o volume %s"
-#: nova/rpc.py:365
+#: ../nova/virt/xenapi/volumeops.py:120
#, python-format
-msgid "topic is %s"
-msgstr "topico é %s"
+msgid "Unable to detach volume %s"
+msgstr "Não é possível desconectar o volume %s"
-#: nova/rpc.py:366
+#: ../nova/virt/xenapi/volumeops.py:127
#, python-format
-msgid "message %s"
-msgstr "mensagem %s"
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr ""
+"Ponto de montagem %(mountpoint)s desanexada da instância %(instance_name)s"
-#: nova/service.py:157
+#: ../nova/compute/instance_types.py:41
#, python-format
-msgid "Starting %s node"
-msgstr "Iniciando nó %s"
+msgid "Unknown instance type: %s"
+msgstr "Tipo de instância desconhecido: %s"
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
-msgstr "Encerrado serviço que não tem entrada na base de dados"
+#: ../nova/crypto.py:46
+msgid "Filename of root CA"
+msgstr "Nome do arquivo da CA raiz"
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
-msgstr "O objeto da base de dados do serviço desapareceu, Recriando."
+#: ../nova/crypto.py:49
+msgid "Filename of private key"
+msgstr "Nome do arquivo da chave privada"
-#: nova/service.py:202
-msgid "Recovered model server connection!"
-msgstr "Recuperada conexão servidor de modelo."
+#: ../nova/crypto.py:51
+msgid "Filename of root Certificate Revokation List"
+msgstr "Nome de arquivo da Lista de Revogação de Certificados"
-#: nova/service.py:208
-msgid "model server went away"
-msgstr "servidor de modelo perdido"
+#: ../nova/crypto.py:53
+msgid "Where we keep our keys"
+msgstr "Aonde armazenamos nossas chaves"
+
+#: ../nova/crypto.py:55
+msgid "Where we keep our root CA"
+msgstr "Onde mantemos nosso CA raiz"
+
+#: ../nova/crypto.py:57
+msgid "Should we use a CA for each project?"
+msgstr "Devemos usar um CA para cada projeto?"
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/crypto.py:61
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
+msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr ""
-"Repositório de dados %s não pode ser atingido. Tentando novamente em %d "
-"segundos."
+"Assunto do certificado para usuários, %s para projeto, usuário, timestamp"
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/crypto.py:66
#, python-format
-msgid "Serving %s"
-msgstr "Servindo %s"
+msgid "Subject for certificate for projects, %s for project, timestamp"
+msgstr "Assunto do certificado para projetos, %s para projeto, timestamp"
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
-msgstr "Conjunto completo de FLAGS:"
+#: ../nova/crypto.py:71
+#, python-format
+msgid "Subject for certificate for vpns, %s for project, timestamp"
+msgstr "Assunto do certificado para vpns, %s para projeto, timestamp"
-#: nova/twistd.py:211
+#: ../nova/crypto.py:258
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
+msgid "Flags path: %s"
+msgstr "Localização dos sinalizadores: %s"
+
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr "Moldagem para %(topic)s %(host)s para %(method)s"
+
+#: ../nova/compute/manager.py:78
+#, python-format
+msgid "check_instance_lock: decorating: |%s|"
+msgstr "check_instance_lock: decorating: |%s|"
+
+#: ../nova/compute/manager.py:80
+#, python-format
+msgid ""
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
msgstr ""
-"Arquivo de id de processo (pidfile) %s não existe. Daemon não está "
-"executando?\n"
+"check_instance_lock: argumentos: |%(self)s| |%(context)s| |%(instance_id)s|"
-#: nova/twistd.py:268
+#: ../nova/compute/manager.py:84
#, python-format
-msgid "Starting %s"
-msgstr "Iniciando %s"
+msgid "check_instance_lock: locked: |%s|"
+msgstr "check_instance_lock: locked: |%s|"
-#: nova/utils.py:53
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "Inner Exception: %s"
-msgstr "Exceção interna: %s"
+msgid "check_instance_lock: admin: |%s|"
+msgstr "check_instance_lock: admin: |%s|"
-#: nova/utils.py:54
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Class %s cannot be found"
-msgstr "Classe %s não pode ser encontrada"
+msgid "check_instance_lock: executing: |%s|"
+msgstr "check_instance_lock: executando: |%s|"
-#: nova/utils.py:113
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Fetching %s"
-msgstr "Obtendo %s"
+msgid "check_instance_lock: not executing |%s|"
+msgstr "check_instance_lock: not executando |%s|"
-#: nova/utils.py:125
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
+msgstr "A instância já foi criada"
+
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "Running cmd (subprocess): %s"
-msgstr "Executando comando (subprocesso): %s"
+msgid "instance %s: starting..."
+msgstr "instância %s: iniciando..."
-#: nova/utils.py:138
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "Result was %s"
-msgstr "Resultado foi %s"
+msgid "instance %s: Failed to spawn"
+msgstr "instância %s: falha na geração"
-#: nova/utils.py:171
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "debug in callback: %s"
-msgstr "debug em callback: %s"
+msgid "Terminating instance %s"
+msgstr "Terminando a instância %s"
-#: nova/utils.py:176
+#: ../nova/compute/manager.py:255
#, python-format
-msgid "Running %s"
-msgstr "Executando %s"
+msgid "Deallocating address %s"
+msgstr "Desalocando o endereço %s"
-#: nova/utils.py:207
+#: ../nova/compute/manager.py:268
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
-msgstr "Não foi possível obter IP, usando 127.0.0.1 %s"
+msgid "trying to destroy already destroyed instance: %s"
+msgstr "tentando destruir instância já destruida: %s"
-#: nova/utils.py:289
+#: ../nova/compute/manager.py:282
#, python-format
-msgid "Invalid backend: %s"
-msgstr "Backend inválido: %s"
+msgid "Rebooting instance %s"
+msgstr "Reiniciando a instância %s"
-#: nova/utils.py:300
+#: ../nova/compute/manager.py:287
#, python-format
-msgid "backend %s"
-msgstr "backend %s"
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
+"tentando reiniciar uma instancia com estado diferente de running: "
+"%(instance_id)s (estado: %(state)s esperado: %(running)s)"
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
-msgstr "Muitas falhas de autenticação."
+#: ../nova/compute/manager.py:311
+#, python-format
+msgid "instance %s: snapshotting"
+msgstr "instância %s: fazendo um snapshot"
-#: nova/api/ec2/__init__.py:142
+#: ../nova/compute/manager.py:316
#, python-format
msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-"Chave de acesso %s tem %d falhas de autenticação e vai ser bloqueada por %d "
-"minutos."
+"tentando fazer um snapshot de uma instância com estado diferente de running: "
+" %(instance_id)s (estado: %(state)s esperado: %(running)s)"
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "Authentication Failure: %s"
-msgstr "Falha de Autenticação: %s"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
+msgstr ""
+"tentando limpar a senha de uma instância com estado diferente de running: "
+"%(instance_id)s (estado: %(instance_state)s esperado: %(expected_state)s)"
-#: nova/api/ec2/__init__.py:190
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "Authenticated Request For %s:%s)"
-msgstr "Pedido de Autenticação Para: %s:%s"
+msgid "instance %s: setting admin password"
+msgstr "instância %s: configurando a senha do administrador"
-#: nova/api/ec2/__init__.py:227
+#: ../nova/compute/manager.py:353
#, python-format
-msgid "action: %s"
-msgstr "ação: %s"
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
+msgstr ""
+"tentando injetar o arquivo dentro de uma instância com estado diferente de "
+"running: %(instance_id)s (estado: %(instance_state)s esperado: "
+"%(expected_state)s)"
-#: nova/api/ec2/__init__.py:229
+#: ../nova/compute/manager.py:362
#, python-format
-msgid "arg: %s\t\tval: %s"
-msgstr "argumento: %s\t\tvalor: %s"
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
+msgstr "instância %(nm)s: injetando um arquivo para %(plain_path)s"
-#: nova/api/ec2/__init__.py:301
+#: ../nova/compute/manager.py:372
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
-msgstr "Requisição não autorizada para controlador=%s e ação=%s"
+msgid "instance %s: rescuing"
+msgstr "instância %s: resgatando"
-#: nova/api/ec2/__init__.py:339
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "NotFound raised: %s"
-msgstr "NotFound lançado: %s"
+msgid "instance %s: unrescuing"
+msgstr "instância %s: desfazendo o resgate"
-#: nova/api/ec2/__init__.py:342
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "ApiError raised: %s"
-msgstr "ApiError lançado: %s"
+msgid "instance %s: pausing"
+msgstr "instância %s: pausando"
-#: nova/api/ec2/__init__.py:349
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "Unexpected error raised: %s"
-msgstr "Erro inexperado lançado: %s"
+msgid "instance %s: unpausing"
+msgstr "instância %s: saindo do pause"
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
-msgstr ""
-"Ocorreu um erro desconhecido. Por favor tente sua requisição novamente."
+#: ../nova/compute/manager.py:440
+#, python-format
+msgid "instance %s: retrieving diagnostics"
+msgstr "instância %s: recuperando os diagnósticos"
-#: nova/api/ec2/admin.py:84
+#: ../nova/compute/manager.py:453
#, python-format
-msgid "Creating new user: %s"
-msgstr "Criando novo usuário: %s"
+msgid "instance %s: suspending"
+msgstr "instância %s: suspendendo"
-#: nova/api/ec2/admin.py:92
+#: ../nova/compute/manager.py:472
#, python-format
-msgid "Deleting user: %s"
-msgstr "Excluindo usuário: %s"
+msgid "instance %s: resuming"
+msgstr ""
-#: nova/api/ec2/admin.py:114
+#: ../nova/compute/manager.py:491
#, python-format
-msgid "Adding role %s to user %s for project %s"
-msgstr "Adicionando papel %s ao usuário %s para o projeto %s"
+msgid "instance %s: locking"
+msgstr "instância %s: bloqueando"
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/compute/manager.py:503
#, python-format
-msgid "Adding sitewide role %s to user %s"
-msgstr "Adicionando papel em todo site %s ao usuário %s"
+msgid "instance %s: unlocking"
+msgstr "instância %s: desbloqueando"
-#: nova/api/ec2/admin.py:122
+#: ../nova/compute/manager.py:513
#, python-format
-msgid "Removing role %s from user %s for project %s"
-msgstr "Removendo papel %s do usuário %s para o projeto %s"
+msgid "instance %s: getting locked state"
+msgstr ""
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/compute/manager.py:526
#, python-format
-msgid "Removing sitewide role %s from user %s"
-msgstr "Removendo papel %s em todo site do usuário %s"
+msgid "instance %s: reset network"
+msgstr ""
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
-msgstr "operações devem ser adicionar e excluir"
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
+#, python-format
+msgid "Get console output for instance %s"
+msgstr "Obter saída do console para instância %s"
-#: nova/api/ec2/admin.py:142
+#: ../nova/compute/manager.py:543
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
-msgstr "Obtendo x509 para usuário: %s do projeto: %s"
+msgid "instance %s: getting ajax console"
+msgstr "instância %s: obtendo console ajax"
-#: nova/api/ec2/admin.py:159
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "Create project %s managed by %s"
-msgstr "Criar projeto %s gerenciado por %s"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
+msgstr ""
-#: nova/api/ec2/admin.py:170
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "Delete project: %s"
-msgstr "Excluir projeto: %s"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
+msgstr ""
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Adding user %s to project %s"
-msgstr "Adicionando usuário %s ao projeto %s"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
+msgstr ""
+
+#: ../nova/compute/manager.py:588
+#, python-format
+msgid "Detaching volume from unknown instance %s"
+msgstr ""
-#: nova/api/ec2/admin.py:188
+#: ../nova/scheduler/simple.py:53
#, python-format
-msgid "Removing user %s from project %s"
-msgstr "Excluindo usuário %s do projeto %s"
+msgid "Host %s is not alive"
+msgstr "Host %s não está ativo"
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:87
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
-msgstr "Requisição de API não suportada: controlador = %s,ação = %s"
+msgid "Host %s not available"
+msgstr "O host %s não está disponível"
+
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr "Todos os hosts tem muitos gigabytes"
+
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
+msgstr "Todos os hosts tem muitas interfaces de rede"
-#: nova/api/ec2/cloud.py:117
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "Generating root CA: %s"
-msgstr "Gerando CA raiz: %s"
+msgid "Re-exporting %s volumes"
+msgstr "Re-exportando %s volumes"
-#: nova/api/ec2/cloud.py:277
+#: ../nova/volume/manager.py:90
#, python-format
-msgid "Create key pair %s"
-msgstr "Criar par de chaves %s"
+msgid "volume %s: skipping export"
+msgstr "volume %s: ignorando export"
-#: nova/api/ec2/cloud.py:285
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Delete key pair %s"
-msgstr "Remover par de chaves %s"
+msgid "volume %s: creating"
+msgstr "volume %s: criando"
-#: nova/api/ec2/cloud.py:357
+#: ../nova/volume/manager.py:108
#, python-format
-msgid "%s is not a valid ipProtocol"
-msgstr "%s não é um ipProtocol válido"
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
+msgstr "volume %(vol_name)s: criando lv com tamanho %(vol_size)sG"
-#: nova/api/ec2/cloud.py:361
-msgid "Invalid port range"
-msgstr "Intervalo de porta inválido"
+#: ../nova/volume/manager.py:112
+#, python-format
+msgid "volume %s: creating export"
+msgstr "volume %s: criando o export"
-#: nova/api/ec2/cloud.py:392
+#: ../nova/volume/manager.py:123
#, python-format
-msgid "Revoke security group ingress %s"
-msgstr "Revogado entrada do grupo de segurança %s"
+msgid "volume %s: created successfully"
+msgstr "volume %s: criado com sucesso"
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
-msgid "No rule for the specified parameters."
-msgstr "Não existe regra para os parâmetros especificados"
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
+msgstr "O volume continua atachado"
+
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
+msgstr "O volume não pertence à este node"
-#: nova/api/ec2/cloud.py:421
+#: ../nova/volume/manager.py:136
#, python-format
-msgid "Authorize security group ingress %s"
-msgstr "Autorizada entrada do grupo de segurança %s"
+msgid "volume %s: removing export"
+msgstr "volume %s: removendo export"
-#: nova/api/ec2/cloud.py:432
+#: ../nova/volume/manager.py:138
#, python-format
-msgid "This rule already exists in group %s"
-msgstr "Esta regra já existe no grupo %s"
+msgid "volume %s: deleting"
+msgstr "volume %s: removendo"
-#: nova/api/ec2/cloud.py:460
+#: ../nova/volume/manager.py:147
#, python-format
-msgid "Create Security Group %s"
-msgstr "Criar Grupo de Segurança %s"
+msgid "volume %s: deleted successfully"
+msgstr "volume %s: remoção realizada com sucesso"
-#: nova/api/ec2/cloud.py:463
+#: ../nova/virt/xenapi/fake.py:74
#, python-format
-msgid "group %s already exists"
-msgstr "group %s já existe"
+msgid "%(text)s: _db_content => %(content)s"
+msgstr "%(text)s: _db_content => %(content)s"
-#: nova/api/ec2/cloud.py:475
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
+msgstr "Aumento não implementado"
+
+#: ../nova/virt/xenapi/fake.py:306
#, python-format
-msgid "Delete security group %s"
-msgstr "Excluir grupo de segurança %s"
+msgid "xenapi.fake does not have an implementation for %s"
+msgstr "xenapi.fake não tem uma implementação para %s"
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
+#: ../nova/virt/xenapi/fake.py:341
#, python-format
-msgid "Get console output for instance %s"
-msgstr "Obter saída do console para instância %s"
+msgid "Calling %(localname)s %(impl)s"
+msgstr "Chamando %(localname)s %(impl)s"
-#: nova/api/ec2/cloud.py:543
+#: ../nova/virt/xenapi/fake.py:346
#, python-format
-msgid "Create volume of %s GB"
-msgstr "Criar volume de %s GB"
+msgid "Calling getter %s"
+msgstr "Chamando o pai %s"
-#: nova/api/ec2/cloud.py:567
+#: ../nova/virt/xenapi/fake.py:406
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
-msgstr "Anexar volume %s para instância %s em %s"
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
+msgstr ""
+"xenapi.fake não tem implementação para %s ou isto foi chamado com um número "
+"de argumentos inválidos"
+
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
+msgstr "Não é possível testar instâncias sem um ambiente virtual real"
-#: nova/api/ec2/cloud.py:579
+#: ../nova/tests/test_cloud.py:268
#, python-format
-msgid "Detach volume %s"
-msgstr "Desanexar volume %s"
+msgid "Need to watch instance %s until it's running..."
+msgstr "É necessário assistir a instância %s até ela estar rodando..."
-#: nova/api/ec2/cloud.py:686
-msgid "Allocate address"
-msgstr "Alocar endereço"
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
+msgstr "Falha ao abrir a conexão com o hypervisor"
-#: nova/api/ec2/cloud.py:691
+#: ../nova/network/linux_net.py:187
#, python-format
-msgid "Release address %s"
-msgstr "Liberar endereço %s"
+msgid "Starting VLAN inteface %s"
+msgstr "Iniciando a VLAN %s"
-#: nova/api/ec2/cloud.py:696
+#: ../nova/network/linux_net.py:208
#, python-format
-msgid "Associate address %s to instance %s"
-msgstr "Atribuir endereço %s à instância %s"
+msgid "Starting Bridge interface for %s"
+msgstr "Iniciando a Bridge para %s"
-#: nova/api/ec2/cloud.py:703
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
#, python-format
-msgid "Disassociate address %s"
-msgstr "Desatribuir endereço %s"
+msgid "Hupping dnsmasq threw %s"
+msgstr ""
-#: nova/api/ec2/cloud.py:730
-msgid "Going to start terminating instances"
-msgstr "Começando a terminar instâncias"
+#: ../nova/network/linux_net.py:316
+#, python-format
+msgid "Pid %d is stale, relaunching dnsmasq"
+msgstr "Pid %d está ultrapassado, reiniciando dnsmasq"
-#: nova/api/ec2/cloud.py:738
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
#, python-format
-msgid "Reboot instance %r"
-msgstr "Reiniciar instância %r"
+msgid "killing radvd threw %s"
+msgstr ""
-#: nova/api/ec2/cloud.py:775
+#: ../nova/network/linux_net.py:360
#, python-format
-msgid "De-registering image %s"
-msgstr "Removendo o registro da imagem %s"
+msgid "Pid %d is stale, relaunching radvd"
+msgstr "Pid %d está ultrapassado, reiniciando radvd"
-#: nova/api/ec2/cloud.py:783
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
#, python-format
-msgid "Registered image %s with id %s"
-msgstr "Registrada imagem %s com id %s"
+msgid "Killing dnsmasq threw %s"
+msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/utils.py:58
#, python-format
-msgid "attribute not supported: %s"
-msgstr "atributo não suportado: %s"
+msgid "Inner Exception: %s"
+msgstr "Exceção interna: %s"
-#: nova/api/ec2/cloud.py:794
+#: ../nova/utils.py:59
#, python-format
-msgid "invalid id: %s"
-msgstr "id inválido: %s"
+msgid "Class %s cannot be found"
+msgstr "Classe %s não pode ser encontrada"
-#: nova/api/ec2/cloud.py:807
-msgid "user or group not specified"
-msgstr "usuário ou grupo não especificado"
+#: ../nova/utils.py:118
+#, python-format
+msgid "Fetching %s"
+msgstr "Obtendo %s"
-#: nova/api/ec2/cloud.py:809
-msgid "only group \"all\" is supported"
-msgstr "apenas o grupo \"all\" é suportado"
+#: ../nova/utils.py:130
+#, python-format
+msgid "Running cmd (subprocess): %s"
+msgstr "Executando comando (subprocesso): %s"
-#: nova/api/ec2/cloud.py:811
-msgid "operation_type must be add or remove"
-msgstr "operation_type deve ser add ou remove"
+#: ../nova/utils.py:143 ../nova/utils.py:183
+#, python-format
+msgid "Result was %s"
+msgstr "Resultado foi %s"
-#: nova/api/ec2/cloud.py:812
+#: ../nova/utils.py:159
#, python-format
-msgid "Updating image %s publicity"
-msgstr "Atualizando publicidade da imagem %s"
+msgid "Running cmd (SSH): %s"
+msgstr "Rodando o comando (SSH): %s"
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../nova/utils.py:217
#, python-format
-msgid "Failed to get metadata for ip: %s"
-msgstr "Falha ao obter metadados para o ip: %s"
+msgid "debug in callback: %s"
+msgstr "debug em callback: %s"
-#: nova/api/openstack/__init__.py:70
+#: ../nova/utils.py:222
#, python-format
-msgid "Caught error: %s"
-msgstr "Capturado o erro: %s"
+msgid "Running %s"
+msgstr "Executando %s"
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
-msgstr "Incluindo operações administrativas na API."
+#: ../nova/utils.py:262
+#, python-format
+msgid "Link Local address is not found.:%s"
+msgstr "Endereço para Link Local não encontrado: %s"
-#: nova/api/openstack/servers.py:184
+#: ../nova/utils.py:265
#, python-format
-msgid "Compute.api::lock %s"
-msgstr "Compute.api::lock %s"
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
+msgstr ""
+"Não foi possível atribuir um IP para o Link Local de %(interface)s :%(ex)s"
-#: nova/api/openstack/servers.py:199
+#: ../nova/utils.py:363
#, python-format
-msgid "Compute.api::unlock %s"
-msgstr "Compute.api::unlock %s"
+msgid "Invalid backend: %s"
+msgstr "Backend inválido: %s"
-#: nova/api/openstack/servers.py:213
+#: ../nova/utils.py:374
#, python-format
-msgid "Compute.api::get_lock %s"
-msgstr "Compute.api::get_lock %s"
+msgid "backend %s"
+msgstr "backend %s"
-#: nova/api/openstack/servers.py:224
+#: ../nova/fakerabbit.py:49
#, python-format
-msgid "Compute.api::pause %s"
-msgstr "Compute.api::pause %s"
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
+msgstr "(%(nm)s) publicar (key: %(routing_key)s) %(message)s"
-#: nova/api/openstack/servers.py:235
+#: ../nova/fakerabbit.py:54
#, python-format
-msgid "Compute.api::unpause %s"
-msgstr "Compute.api::unpause %s"
+msgid "Publishing to route %s"
+msgstr "Publicando para rota %s"
-#: nova/api/openstack/servers.py:246
+#: ../nova/fakerabbit.py:84
#, python-format
-msgid "compute.api::suspend %s"
-msgstr "compute.api::suspend %s"
+msgid "Declaring queue %s"
+msgstr "Declarando fila %s"
-#: nova/api/openstack/servers.py:257
+#: ../nova/fakerabbit.py:90
#, python-format
-msgid "compute.api::resume %s"
-msgstr "compute.api::resume %s"
+msgid "Declaring exchange %s"
+msgstr "Declarando troca %s"
-#: nova/auth/dbdriver.py:84
+#: ../nova/fakerabbit.py:96
#, python-format
-msgid "User %s already exists"
-msgstr "Usuário %s já existe"
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
+msgstr "Ligação %(queue)s para %(exchange)s com chave %(routing_key)s"
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../nova/fakerabbit.py:121
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
-msgstr "Projeto não pode ser criado porque o gerente %s não existe."
+msgid "Getting from %(queue)s: %(message)s"
+msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
-msgid "Project can't be created because project %s already exists"
-msgstr "Projeto não pode ser criado porque o projeto %s já existe."
+msgid "Created VM %s..."
+msgstr "VM %s criada..."
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vm_utils.py:138
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
-msgstr "Projeto não pode ser modificado porque o gerente %s não existe."
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
+msgstr "VM %(instance_name)s criada como %(vm_ref)s."
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vm_utils.py:168
#, python-format
-msgid "User \"%s\" not found"
-msgstr "Usuário \"%s\" não encontrado"
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
+msgstr "Criando VBD para VM %(vm_ref)s, VDI %(vdi_ref)s ... "
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
-msgid "Project \"%s\" not found"
-msgstr "Projeto \"%s\" não encontrado"
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
+msgstr "VBD %(vbd_ref)s criado para VM %(vm_ref)s, VDI %(vdi_ref)s."
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
-msgstr "Tentativa de instanciar singleton"
+#: ../nova/virt/xenapi/vm_utils.py:187
+#, python-format
+msgid "VBD not found in instance %s"
+msgstr "O VBD não foi encontrado na instância %s"
-#: nova/auth/ldapdriver.py:181
+#: ../nova/virt/xenapi/vm_utils.py:197
#, python-format
-msgid "LDAP object for %s doesn't exist"
-msgstr "Objeto LDAP para %s não existe"
+msgid "Unable to unplug VBD %s"
+msgstr "Não é possível desconectar o VBD %s"
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vm_utils.py:209
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
-msgstr "Projeto não pode ser criado porque o usuário %s não existe"
+msgid "Unable to destroy VBD %s"
+msgstr "Não é possível destruir o VBD %s"
+
+#: ../nova/virt/xenapi/vm_utils.py:224
+#, python-format
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
+msgstr "Criando a VIF para VM %(vm_ref)s, rede %(network_ref)s."
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vm_utils.py:227
#, python-format
-msgid "User %s is already a member of the group %s"
-msgstr "Usuário %s já pertence ao grupo %s"
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
+msgstr "VIF %(vif_ref)s criada para VM %(vm_ref)s, rede %(network_ref)s."
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
msgstr ""
-"Tentatica de remover o último membto de um grupo. Ao invés disso excluindo o "
-"grupo %s."
+"VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) no SR "
+"%(sr_ref)s criada com sucesso."
-#: nova/auth/ldapdriver.py:528
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "Group at dn %s doesn't exist"
-msgstr "Grupo no dn %s não existe"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
+msgstr "Fazendo um snapshot da VM %(vm_ref)s com rótulo '%(label)s'..."
-#: nova/auth/manager.py:259
+#: ../nova/virt/xenapi/vm_utils.py:272
#, python-format
-msgid "Looking up user: %r"
-msgstr "Procurando usuário: %r"
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
+msgstr "Snapshot %(template_vm_ref)s criado a partir da VM %(vm_ref)s."
-#: nova/auth/manager.py:263
+#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
-msgid "Failed authorization for access key %s"
-msgstr "Falha de autorização para chave de acesso %s"
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
+msgstr ""
+"Solicitando à xapi para realizar upload da imagem %(vdi_uuids)s com ID "
+"%(image_id)s"
-#: nova/auth/manager.py:264
+#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
-msgid "No user found for access key %s"
-msgstr "Nenhum usuário encontrado para chave de acesso %s"
+msgid "Size for image %(image)s:%(virtual_size)d"
+msgstr "Tamanho da imagem %(image)s:%(virtual_size)d"
-#: nova/auth/manager.py:270
+#: ../nova/virt/xenapi/vm_utils.py:332
#, python-format
-msgid "Using project name = user name (%s)"
-msgstr "Usando nome do projeto = nome do usuário (%s)"
+msgid "Glance image %s"
+msgstr ""
-#: nova/auth/manager.py:275
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
-msgstr "falha de autorização: nenhum projeto de nome %s (usuário=%s)"
+msgid "Copying VDI %s to /boot/guest on dom0"
+msgstr "Copiando o VDI %s de /boot/guest no dom0"
-#: nova/auth/manager.py:277
+#: ../nova/virt/xenapi/vm_utils.py:352
#, python-format
-msgid "No project called %s could be found"
-msgstr "Nenhum projeto chamado %s pode ser encontrado."
+msgid "Kernel/Ramdisk VDI %s destroyed"
+msgstr "Kernel/Ramdisk %s destruidos"
-#: nova/auth/manager.py:281
+#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "Asking xapi to fetch %(url)s as %(access)s"
msgstr ""
-"Falha de autorização: usuário %s não é administrador nem membro do projeto %s"
-#: nova/auth/manager.py:283
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
#, python-format
-msgid "User %s is not a member of project %s"
-msgstr "Usuário %s não é membro do projeto %s"
+msgid "Looking up vdi %s for PV kernel"
+msgstr "Verificando o vdi %s para kernel PV"
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid "Invalid signature for user %s"
-msgstr "Assinatura inválida para usuário %s"
+msgid "PV Kernel in VDI:%s"
+msgstr "Kernel PV no VDI: %s"
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
-msgstr "Assinatura não confere"
-
-#: nova/auth/manager.py:374
-msgid "Must specify project"
-msgstr "Deve especificar projeto"
+#: ../nova/virt/xenapi/vm_utils.py:405
+#, python-format
+msgid "Running pygrub against %s"
+msgstr ""
-#: nova/auth/manager.py:408
+#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
-msgid "The %s role can not be found"
-msgstr "O papel %s não foi encontrado"
+msgid "Found Xen kernel %s"
+msgstr "Kernel Xen encontrado: %s"
+
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
+msgstr "Kernel Xen não encontrado. Iniciando como HVM."
-#: nova/auth/manager.py:410
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
-msgid "The %s role is global only"
-msgstr "O papel %s é apenas global"
+msgid "duplicate name found: %s"
+msgstr "nome duplicado encontrado: %s"
-#: nova/auth/manager.py:412
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "Adding role %s to user %s in project %s"
-msgstr "Adicionando papel %s ao usuário %s no projeto %s"
+msgid "VDI %s is still available"
+msgstr "O VDI %s continua disponível"
-#: nova/auth/manager.py:438
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "Removing role %s from user %s on project %s"
-msgstr "Removendo papel %s do usuário %s no projeto %s"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgstr "(VM_UTILS) xenserver vm state -> |%s|"
-#: nova/auth/manager.py:505
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "Created project %s with manager %s"
-msgstr "Criado projeto %s com gerente %s"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgstr "(VM_UTILS) xenapi power_state -> |%s|"
-#: nova/auth/manager.py:523
+#: ../nova/virt/xenapi/vm_utils.py:525
#, python-format
-msgid "modifying project %s"
-msgstr "modificando projeto %s"
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
+msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "Remove user %s from project %s"
-msgstr "Remover usuário %s do projeto %s"
+msgid "Re-scanning SR %s"
+msgstr ""
-#: nova/auth/manager.py:581
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "Deleting project %s"
-msgstr "Excluindo projeto %s"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
+msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "Created user %s (admin: %r)"
-msgstr "Criado usuário %s (administrador: %r)"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
+msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/virt/xenapi/vm_utils.py:590
#, python-format
-msgid "Deleting user %s"
-msgstr "Apagando usuário %s"
+msgid "No VDIs found for VM %s"
+msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/virt/xenapi/vm_utils.py:594
#, python-format
-msgid "Access Key change for user %s"
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
-msgid "Secret Key change for user %s"
+msgid "Creating VBD for VDI %s ... "
msgstr ""
-#: nova/auth/manager.py:659
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
-msgid "Admin status set to %r for user %s"
+msgid "Creating VBD for VDI %s done."
msgstr ""
-#: nova/auth/manager.py:708
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
#, python-format
-msgid "No vpn data for project %s"
+msgid "Plugging VBD %s ... "
msgstr ""
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
+#, python-format
+msgid "Plugging VBD %s done."
msgstr ""
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
+#: ../nova/virt/xenapi/vm_utils.py:661
+#, python-format
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
+#: ../nova/virt/xenapi/vm_utils.py:664
+#, python-format
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
-msgid "Launching VPN for %s"
-msgstr "Executando VPN para %s"
+msgid "Destroying VBD for VDI %s ... "
+msgstr ""
-#: nova/compute/api.py:67
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
-msgid "Instance %d was not found in get_network_topic"
+msgid "Destroying VBD for VDI %s done."
msgstr ""
-#: nova/compute/api.py:73
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
-msgid "Instance %d has no host"
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
msgstr ""
-#: nova/compute/api.py:92
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
+msgid "Ignoring XenAPI.Failure %s"
msgstr ""
-#: nova/compute/api.py:94
+#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
+#: ../nova/virt/xenapi/vm_utils.py:747
+#, python-format
+msgid "Writing partition table %s done."
msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/tests/test_rpc.py:89
#, python-format
-msgid "Going to run %s instances..."
+msgid "Nested received %(queue)s, %(value)s"
msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/tests/test_rpc.py:95
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
+msgid "Nested return %s"
msgstr ""
-#: nova/compute/api.py:279
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
#, python-format
-msgid "Going to try and terminate %s"
+msgid "Received %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
msgstr ""
-#: nova/compute/api.py:283
+#: ../nova/db/sqlalchemy/api.py:133
#, python-format
-msgid "Instance %d was not found during terminate"
+msgid "No service for id %s"
msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/db/sqlalchemy/api.py:251
#, python-format
-msgid "Instance %d is already being terminated"
+msgid "No service for %(host)s, %(binary)s"
msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:608
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "No floating ip for address %s"
msgstr ""
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
+#: ../nova/db/sqlalchemy/api.py:629
+#, python-format
+msgid "No address for instance %s"
msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/db/sqlalchemy/api.py:961
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "No network for id %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
msgstr ""
-#: nova/compute/disk.py:128
+#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
-msgid "Could not attach image to loopback: %s"
+msgid "No network for bridge %s"
msgstr ""
-#: nova/compute/disk.py:136
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
#, python-format
-msgid "Failed to load partition: %s"
+msgid "No network for instance %s"
msgstr ""
-#: nova/compute/disk.py:158
+#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
-msgid "Failed to mount filesystem: %s"
+msgid "Token %s does not exist"
msgstr ""
-#: nova/compute/instance_types.py:41
+#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
-msgid "Unknown instance type: %s"
+msgid "No quota for project_id %s"
msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
+msgid "Volume %s not found"
msgstr ""
-#: nova/compute/manager.py:71
+#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "No export device found for volume %s"
msgstr ""
-#: nova/compute/manager.py:75
+#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
-msgid "check_instance_lock: locked: |%s|"
+msgid "No target id found for volume %s"
msgstr ""
-#: nova/compute/manager.py:77
+#: ../nova/db/sqlalchemy/api.py:1572
#, python-format
-msgid "check_instance_lock: admin: |%s|"
+msgid "No security group with id %s"
msgstr ""
-#: nova/compute/manager.py:82
+#: ../nova/db/sqlalchemy/api.py:1589
#, python-format
-msgid "check_instance_lock: executing: |%s|"
+msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""
-#: nova/compute/manager.py:86
+#: ../nova/db/sqlalchemy/api.py:1682
#, python-format
-msgid "check_instance_lock: not executing |%s|"
+msgid "No secuity group rule with id %s"
msgstr ""
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
+#: ../nova/db/sqlalchemy/api.py:1756
+#, python-format
+msgid "No user for id %s"
msgstr ""
-#: nova/compute/manager.py:158
+#: ../nova/db/sqlalchemy/api.py:1772
#, python-format
-msgid "instance %s: starting..."
+msgid "No user for access key %s"
msgstr ""
-#: nova/compute/manager.py:197
+#: ../nova/db/sqlalchemy/api.py:1834
#, python-format
-msgid "instance %s: Failed to spawn"
+msgid "No project with id %s"
msgstr ""
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/db/sqlalchemy/api.py:1979
#, python-format
-msgid "Terminating instance %s"
+msgid "No console pool with id %(pool_id)s"
msgstr ""
-#: nova/compute/manager.py:217
+#: ../nova/db/sqlalchemy/api.py:1996
#, python-format
-msgid "Disassociating address %s"
+msgid ""
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
msgstr ""
-#: nova/compute/manager.py:230
+#: ../nova/db/sqlalchemy/api.py:2035
#, python-format
-msgid "Deallocating address %s"
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""
-#: nova/compute/manager.py:243
+#: ../nova/db/sqlalchemy/api.py:2057
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
+msgid "on instance %s"
msgstr ""
-#: nova/compute/manager.py:257
+#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
-msgid "Rebooting instance %s"
+msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""
-#: nova/compute/manager.py:260
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+msgid "No zone with id %(zone_id)s"
msgstr ""
-#: nova/compute/manager.py:286
+#: ../nova/virt/libvirt_conn.py:160
#, python-format
-msgid "instance %s: snapshotting"
+msgid "Checking state of %s"
msgstr ""
-#: nova/compute/manager.py:289
+#: ../nova/virt/libvirt_conn.py:165
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Current state of %(name)s was %(state)s."
msgstr ""
-#: nova/compute/manager.py:301
+#: ../nova/virt/libvirt_conn.py:183
#, python-format
-msgid "instance %s: rescuing"
+msgid "Connecting to libvirt: %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
msgstr ""
-#: nova/compute/manager.py:316
+#: ../nova/virt/libvirt_conn.py:258
#, python-format
-msgid "instance %s: unrescuing"
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/virt/libvirt_conn.py:283
#, python-format
-msgid "instance %s: pausing"
+msgid "Invalid device path %s"
msgstr ""
-#: nova/compute/manager.py:352
+#: ../nova/virt/libvirt_conn.py:313
#, python-format
-msgid "instance %s: unpausing"
+msgid "No disk at %s"
msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:336
#, python-format
-msgid "instance %s: retrieving diagnostics"
+msgid "instance %s: rebooted"
msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/virt/libvirt_conn.py:339
#, python-format
-msgid "instance %s: suspending"
+msgid "_wait_for_reboot failed: %s"
msgstr ""
-#: nova/compute/manager.py:401
+#: ../nova/virt/libvirt_conn.py:382
#, python-format
-msgid "instance %s: resuming"
+msgid "instance %s: rescued"
msgstr ""
-#: nova/compute/manager.py:420
+#: ../nova/virt/libvirt_conn.py:385
#, python-format
-msgid "instance %s: locking"
+msgid "_wait_for_rescue failed: %s"
msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "instance %s: unlocking"
+msgid "instance %s: is running"
msgstr ""
-#: nova/compute/manager.py:442
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "instance %s: getting locked state"
+msgid "instance %s: booted"
msgstr ""
-#: nova/compute/manager.py:462
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid "instance %s: attaching volume %s to %s"
+msgid "instance %s: failed to boot"
msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "instance %s: attach failed %s, removing"
+msgid "virsh said: %r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/virt/libvirt_conn.py:448
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
+msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/virt/libvirt_conn.py:456
#, python-format
-msgid "Detaching volume from unknown instance %s"
+msgid "Contents of file %(fpath)s: %(contents)r"
msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:563
#, python-format
-msgid "updating %s..."
+msgid "instance %s: Creating image"
msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
+#: ../nova/virt/libvirt_conn.py:646
+#, python-format
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""
-#: nova/compute/monitor.py:355
+#: ../nova/virt/libvirt_conn.py:649
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""
-#: nova/compute/monitor.py:377
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
msgstr ""
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
+#, python-format
+msgid "instance %s: starting toXML method"
msgstr ""
-#: nova/compute/monitor.py:427
+#: ../nova/virt/libvirt_conn.py:732
#, python-format
-msgid "Found instance: %s"
+msgid "instance %s: finished toXML method"
msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
msgstr ""
-#: nova/db/sqlalchemy/api.py:132
+#: ../nova/virt/libvirt_conn.py:1225
#, python-format
-msgid "No service for id %s"
+msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
-msgid "No service for %s, %s"
+msgid "Failed to get metadata for ip: %s"
+msgstr "Falha ao obter metadados para o ip: %s"
+
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
+msgstr "Tentativa de instanciar singleton"
+
+#: ../nova/network/api.py:39
+#, python-format
+msgid "Quota exceeeded for %s, tried to allocate address"
msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
+msgstr ""
+
+#: ../nova/tests/test_volume.py:162
#, python-format
-msgid "No floating ip for address %s"
+msgid "Target %s allocated"
msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../nova/virt/images.py:70
#, python-format
-msgid "No instance for id %s"
+msgid "Finished retreving %(url)s -- placed in %(path)s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
+msgstr ""
+
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
#, python-format
-msgid "Instance %s not found"
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
+
+#: ../nova/api/direct.py:149
+msgid "not available"
msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../nova/api/ec2/cloud.py:62
#, python-format
-msgid "no keypair for user %s, name %s"
+msgid "The key_pair %s already exists"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
-msgid "No network for id %s"
+msgid "Generating root CA: %s"
+msgstr "Gerando CA raiz: %s"
+
+#: ../nova/api/ec2/cloud.py:303
+#, python-format
+msgid "Create key pair %s"
+msgstr "Criar par de chaves %s"
+
+#: ../nova/api/ec2/cloud.py:311
+#, python-format
+msgid "Delete key pair %s"
+msgstr "Remover par de chaves %s"
+
+#: ../nova/api/ec2/cloud.py:386
+#, python-format
+msgid "%s is not a valid ipProtocol"
+msgstr "%s não é um ipProtocol válido"
+
+#: ../nova/api/ec2/cloud.py:390
+msgid "Invalid port range"
+msgstr "Intervalo de porta inválido"
+
+#: ../nova/api/ec2/cloud.py:421
+#, python-format
+msgid "Revoke security group ingress %s"
+msgstr "Revogado entrada do grupo de segurança %s"
+
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1036
+#: ../nova/api/ec2/cloud.py:443
+msgid "No rule for the specified parameters."
+msgstr "Não existe regra para os parâmetros especificados"
+
+#: ../nova/api/ec2/cloud.py:450
#, python-format
-msgid "No network for bridge %s"
+msgid "Authorize security group ingress %s"
+msgstr "Autorizada entrada do grupo de segurança %s"
+
+#: ../nova/api/ec2/cloud.py:464
+#, python-format
+msgid "This rule already exists in group %s"
+msgstr "Esta regra já existe no grupo %s"
+
+#: ../nova/api/ec2/cloud.py:492
+#, python-format
+msgid "Create Security Group %s"
+msgstr "Criar Grupo de Segurança %s"
+
+#: ../nova/api/ec2/cloud.py:495
+#, python-format
+msgid "group %s already exists"
+msgstr "group %s já existe"
+
+#: ../nova/api/ec2/cloud.py:507
+#, python-format
+msgid "Delete security group %s"
+msgstr "Excluir grupo de segurança %s"
+
+#: ../nova/api/ec2/cloud.py:584
+#, python-format
+msgid "Create volume of %s GB"
+msgstr "Criar volume de %s GB"
+
+#: ../nova/api/ec2/cloud.py:612
+#, python-format
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../nova/api/ec2/cloud.py:629
#, python-format
-msgid "No network for instance %s"
+msgid "Detach volume %s"
+msgstr "Desanexar volume %s"
+
+#: ../nova/api/ec2/cloud.py:761
+msgid "Allocate address"
+msgstr "Alocar endereço"
+
+#: ../nova/api/ec2/cloud.py:766
+#, python-format
+msgid "Release address %s"
+msgstr "Liberar endereço %s"
+
+#: ../nova/api/ec2/cloud.py:771
+#, python-format
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../nova/api/ec2/cloud.py:780
#, python-format
-msgid "Token %s does not exist"
+msgid "Disassociate address %s"
+msgstr "Desatribuir endereço %s"
+
+#: ../nova/api/ec2/cloud.py:807
+msgid "Going to start terminating instances"
+msgstr "Começando a terminar instâncias"
+
+#: ../nova/api/ec2/cloud.py:815
+#, python-format
+msgid "Reboot instance %r"
+msgstr "Reiniciar instância %r"
+
+#: ../nova/api/ec2/cloud.py:867
+#, python-format
+msgid "De-registering image %s"
+msgstr "Removendo o registro da imagem %s"
+
+#: ../nova/api/ec2/cloud.py:875
+#, python-format
+msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1205
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
-msgid "No quota for project_id %s"
+msgid "attribute not supported: %s"
+msgstr "atributo não suportado: %s"
+
+#: ../nova/api/ec2/cloud.py:890
+#, python-format
+msgid "invalid id: %s"
+msgstr "id inválido: %s"
+
+#: ../nova/api/ec2/cloud.py:903
+msgid "user or group not specified"
+msgstr "usuário ou grupo não especificado"
+
+#: ../nova/api/ec2/cloud.py:905
+msgid "only group \"all\" is supported"
+msgstr "apenas o grupo \"all\" é suportado"
+
+#: ../nova/api/ec2/cloud.py:907
+msgid "operation_type must be add or remove"
+msgstr "operation_type deve ser add ou remove"
+
+#: ../nova/api/ec2/cloud.py:908
+#, python-format
+msgid "Updating image %s publicity"
+msgstr "Atualizando publicidade da imagem %s"
+
+#: ../bin/nova-api.py:52
+#, python-format
+msgid "Using paste.deploy config at: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1356
+#: ../bin/nova-api.py:57
#, python-format
-msgid "No volume for id %s"
+msgid "No paste configuration for app: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1401
+#: ../bin/nova-api.py:59
#, python-format
-msgid "Volume %s not found"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1413
+#: ../bin/nova-api.py:64
#, python-format
-msgid "No export device found for volume %s"
+msgid "Running %s API"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1426
+#: ../bin/nova-api.py:69
#, python-format
-msgid "No target id found for volume %s"
+msgid "No known API applications configured in %s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../bin/nova-api.py:83
#, python-format
-msgid "No security group with id %s"
+msgid "Starting nova-api node (version %s)"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../bin/nova-api.py:89
#, python-format
-msgid "No security group named %s for project: %s"
+msgid "No paste configuration found for: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "No secuity group rule with id %s"
+msgid "Argument %(key)s value %(value)s is too short."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "No user for id %s"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1666
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "No user for access key %s"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "No project with id %s"
+msgid "Argument %s is required."
msgstr ""
-#: nova/image/glance.py:78
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
msgstr ""
-#: nova/image/glance.py:97
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-#: nova/image/s3.py:82
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "Image %s could not be found"
+msgid "Attempted to create non-unique name %s"
msgstr ""
-#: nova/network/api.py:39
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
+msgid "instance %(name)s: not enough free memory"
msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../nova/virt/xenapi/vmops.py:148
+#, python-format
+msgid "Starting VM %s..."
msgstr ""
-#: nova/network/linux_net.py:176
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "Starting VLAN inteface %s"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""
-#: nova/network/linux_net.py:186
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "Starting Bridge interface for %s"
+msgid "Invalid value for onset_files: '%s'"
msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "Hupping dnsmasq threw %s"
+msgid "Injecting file path: '%s'"
msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
+msgid "Instance %s: booted"
msgstr ""
-#: nova/network/linux_net.py:334
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "Killing dnsmasq threw %s"
+msgid "Instance not present %s"
msgstr ""
-#: nova/network/manager.py:135
-msgid "setting network host"
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
+#, python-format
+msgid "Starting snapshot for VM %s"
msgstr ""
-#: nova/network/manager.py:190
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "Leasing IP %s"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid "Finished snapshot and upload for VM %s"
msgstr ""
-#: nova/network/manager.py:197
+#: ../nova/virt/xenapi/vmops.py:356
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
+msgid "VM %(vm)s already halted, skipping shutdown..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
msgstr ""
-#: nova/network/manager.py:205
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/virt/xenapi/vmops.py:564
#, python-format
-msgid "IP %s released that isn't associated"
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/virt/xenapi/vmops.py:760
#, python-format
-msgid "IP %s released that was not leased"
+msgid "OpenSSL error: %s"
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid "Running instances: %s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "Unknown S3 value type %r"
+msgid "After terminating instances: %s"
msgstr ""
-#: nova/objectstore/handler.py:137
-msgid "Authenticated request"
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
msgstr ""
-#: nova/objectstore/handler.py:182
-msgid "List of buckets requested"
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
msgstr ""
-#: nova/objectstore/handler.py:209
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "List keys for bucket %s"
+msgid "Launching VPN for %s"
+msgstr "Executando VPN para %s"
+
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
msgstr ""
-#: nova/objectstore/handler.py:217
+#: ../nova/image/s3.py:99
#, python-format
-msgid "Unauthorized attempt to access bucket %s"
+msgid "Image %s could not be found"
msgstr ""
-#: nova/objectstore/handler.py:235
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr "Muitas falhas de autenticação."
+
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "Creating bucket %s"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
msgstr ""
-#: nova/objectstore/handler.py:245
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "Deleting bucket %s"
+msgid "Authentication Failure: %s"
+msgstr "Falha de Autenticação: %s"
+
+#: ../nova/api/ec2/__init__.py:182
+#, python-format
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""
-#: nova/objectstore/handler.py:249
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "Unauthorized attempt to delete bucket %s"
+msgid "action: %s"
+msgstr "ação: %s"
+
+#: ../nova/api/ec2/__init__.py:209
+#, python-format
+msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""
-#: nova/objectstore/handler.py:271
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "Getting object: %s / %s"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "InstanceNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/api/ec2/__init__.py:320
#, python-format
-msgid "Putting object: %s / %s"
+msgid "VolumeNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/api/ec2/__init__.py:326
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "NotFound raised: %s"
+msgstr "NotFound lançado: %s"
+
+#: ../nova/api/ec2/__init__.py:329
+#, python-format
+msgid "ApiError raised: %s"
+msgstr "ApiError lançado: %s"
+
+#: ../nova/api/ec2/__init__.py:338
+#, python-format
+msgid "Unexpected error raised: %s"
+msgstr "Erro inexperado lançado: %s"
+
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
msgstr ""
+"Ocorreu um erro desconhecido. Por favor tente sua requisição novamente."
+
+#: ../nova/auth/dbdriver.py:84
+#, python-format
+msgid "User %s already exists"
+msgstr "Usuário %s já existe"
+
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
+#, python-format
+msgid "Project can't be created because manager %s doesn't exist"
+msgstr "Projeto não pode ser criado porque o gerente %s não existe."
+
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
+#, python-format
+msgid "Project can't be created because user %s doesn't exist"
+msgstr "Projeto não pode ser criado porque o usuário %s não existe"
+
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
+#, python-format
+msgid "Project can't be created because project %s already exists"
+msgstr "Projeto não pode ser criado porque o projeto %s já existe."
-#: nova/objectstore/handler.py:314
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Deleting object: %s / %s"
+msgid "Project can't be modified because manager %s doesn't exist"
+msgstr "Projeto não pode ser modificado porque o gerente %s não existe."
+
+#: ../nova/auth/dbdriver.py:245
+#, python-format
+msgid "User \"%s\" not found"
+msgstr "Usuário \"%s\" não encontrado"
+
+#: ../nova/auth/dbdriver.py:248
+#, python-format
+msgid "Project \"%s\" not found"
+msgstr "Projeto \"%s\" não encontrado"
+
+#: ../nova/virt/xenapi_conn.py:129
+msgid ""
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/virt/xenapi_conn.py:311
#, python-format
-msgid "Not authorized to upload image: invalid directory %s"
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
msgstr ""
-#: nova/objectstore/handler.py:401
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Not authorized to upload image: unauthorized bucket %s"
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
msgstr ""
-#: nova/objectstore/handler.py:406
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Starting image upload: %s"
+msgid "Got exception: %s"
msgstr ""
-#: nova/objectstore/handler.py:420
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Not authorized to update attributes of image %s"
+msgid "updating %s..."
+msgstr ""
+
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
msgstr ""
-#: nova/objectstore/handler.py:428
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Toggling publicity flag of image %s %r"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:433
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Updating user fields on image %s"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
+msgstr ""
+
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
msgstr ""
-#: nova/objectstore/handler.py:447
+#: ../nova/compute/monitor.py:429
#, python-format
-msgid "Unauthorized attempt to delete image %s"
+msgid "Found instance: %s"
msgstr ""
-#: nova/objectstore/handler.py:452
+#: ../nova/volume/san.py:67
#, python-format
-msgid "Deleted image: %s"
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
+#: ../nova/api/ec2/apirequest.py:100
+#, python-format
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
+#: ../nova/api/openstack/__init__.py:55
+#, python-format
+msgid "Caught error: %s"
+msgstr "Capturado o erro: %s"
+
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
+msgstr "Incluindo operações administrativas na API."
+
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
msgstr ""
-#: nova/scheduler/manager.py:69
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "Re-wrote %s"
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
msgstr ""
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
+#: ../nova/console/xvp.py:141
+#, python-format
+msgid "Error starting xvp: %s"
msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
msgstr ""
-#: nova/tests/test_cloud.py:210
-#, python-format
-msgid "Need to watch instance %s until it's running..."
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
msgstr ""
-#: nova/tests/test_compute.py:104
-#, python-format
-msgid "Running instances: %s"
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
msgstr ""
-#: nova/tests/test_compute.py:110
-#, python-format
-msgid "After terminating instances: %s"
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
+msgstr ""
+
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
+msgstr ""
+
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
+msgstr ""
+
+#: ../bin/nova-manage.py:448
+msgid "IP address"
msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
+msgstr ""
+
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
-msgid "Nested received %s, %s"
+msgid "Failed to load partition: %s"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../nova/virt/disk.py:91
#, python-format
-msgid "Nested return %s"
+msgid "Failed to mount filesystem: %s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Received %s"
+msgid "nbd device %s did not show up"
msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "Target %s allocated"
+msgid "Could not attach image to loopback: %s"
msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
msgstr ""
-#: nova/virt/fake.py:210
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "Instance %s Not Found"
+msgid "%(filename)s, line %(line_info)d"
msgstr ""
-#: nova/virt/hyperv.py:118
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr ""
-#: nova/virt/hyperv.py:152
+#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
-#, python-format
-msgid "Created VM %s..."
-msgstr ""
-
-#: nova/virt/hyperv.py:188
+#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:198
+#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""
-#: nova/virt/hyperv.py:227
+#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:272
+#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "Created switch port %s on switch %s"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "Del: disk %s vm %s"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "duplicate name found: %s"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "Successfully changed vm state of %s to %s"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/compute/api.py:71
#, python-format
-msgid "Failed to change vm state of %s to %s"
+msgid "Instance %d was not found in get_network_topic"
msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Finished retreving %s -- placed in %s"
+msgid "Instance %d has no host"
msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Connecting to libvirt: %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
+#: ../nova/compute/api.py:99
+#, python-format
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""
-#: nova/virt/libvirt_conn.py:229
-#, python-format
-msgid "instance %s: deleting instance files %s"
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
msgstr ""
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/compute/api.py:160
#, python-format
-msgid "No disk at %s"
+msgid "Going to run %s instances..."
msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+#: ../nova/compute/api.py:187
+#, python-format
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:294
+#: ../nova/compute/api.py:292
#, python-format
-msgid "instance %s: rebooted"
+msgid "Going to try to terminate %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:297
+#: ../nova/compute/api.py:296
#, python-format
-msgid "_wait_for_reboot failed: %s"
+msgid "Instance %d was not found during terminate"
msgstr ""
-#: nova/virt/libvirt_conn.py:340
+#: ../nova/compute/api.py:301
#, python-format
-msgid "instance %s: rescued"
+msgid "Instance %d is already being terminated"
msgstr ""
-#: nova/virt/libvirt_conn.py:343
+#: ../nova/compute/api.py:481
#, python-format
-msgid "_wait_for_rescue failed: %s"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgstr ""
+
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
msgstr ""
-#: nova/virt/libvirt_conn.py:370
+#: ../nova/rpc.py:98
#, python-format
-msgid "instance %s: is running"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
msgstr ""
-#: nova/virt/libvirt_conn.py:381
+#: ../nova/rpc.py:103
#, python-format
-msgid "instance %s: booted"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
msgstr ""
+"Não foi possível conectar ao servidor AMQP após %d tentativas. Desligando."
+
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr "Reconectado à fila"
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr "Falha ao obter mensagem da fila"
+
+#: ../nova/rpc.py:159
#, python-format
-msgid "instance %s: failed to boot"
+msgid "Initing the Adapter Consumer for %s"
+msgstr "Iniciando o Adaptador Consumidor para %s"
+
+#: ../nova/rpc.py:178
+#, python-format
+msgid "received %s"
+msgstr "recebido %s"
+
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
+#, python-format
+msgid "no method for message: %s"
+msgstr "sem método para mensagem: %s"
+
+#: ../nova/rpc.py:192
+#, python-format
+msgid "No method for message: %s"
+msgstr "Sem método para mensagem: %s"
+
+#: ../nova/rpc.py:253
+#, python-format
+msgid "Returning exception %s to caller"
+msgstr "Retornando exceção %s ao método de origem"
+
+#: ../nova/rpc.py:294
+#, python-format
+msgid "unpacked context: %s"
+msgstr "conteúdo descompactado: %s"
+
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
+msgstr "Fazendo chamada assíncrona..."
+
+#: ../nova/rpc.py:316
+#, python-format
+msgid "MSG_ID is %s"
+msgstr "MSG_ID é %s"
+
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
msgstr ""
-#: nova/virt/libvirt_conn.py:395
+#: ../nova/rpc.py:364
#, python-format
-msgid "virsh said: %r"
+msgid "response %s"
+msgstr "resposta %s"
+
+#: ../nova/rpc.py:373
+#, python-format
+msgid "topic is %s"
+msgstr "topico é %s"
+
+#: ../nova/rpc.py:374
+#, python-format
+msgid "message %s"
+msgstr "mensagem %s"
+
+#: ../nova/volume/driver.py:78
+#, python-format
+msgid "Recovering from a failed execute. Try number %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
+#: ../nova/volume/driver.py:87
+#, python-format
+msgid "volume group %s doesn't exist"
msgstr ""
-#: nova/virt/libvirt_conn.py:407
+#: ../nova/volume/driver.py:220
#, python-format
-msgid "data: %r, fpath: %r"
+msgid "FAKE AOE: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:415
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
#, python-format
-msgid "Contents of file %s: %r"
+msgid "FAKE ISCSI: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:449
+#: ../nova/volume/driver.py:359
#, python-format
-msgid "instance %s: Creating image"
+msgid "rbd has no pool %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:505
+#: ../nova/volume/driver.py:414
#, python-format
-msgid "instance %s: injecting key into image %s"
+msgid "Sheepdog is not working: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:508
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
+msgstr ""
+
+#: ../nova/wsgi.py:68
#, python-format
-msgid "instance %s: injecting net into image %s"
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
+msgstr ""
+
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
msgstr ""
-#: nova/virt/libvirt_conn.py:516
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:123
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
+msgid ""
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
+#: ../nova/virt/fake.py:239
#, python-format
-msgid "instance %s: starting toXML method"
+msgid "Instance %s Not Found"
msgstr ""
-#: nova/virt/libvirt_conn.py:589
+#: ../nova/network/manager.py:153
#, python-format
-msgid "instance %s: finished toXML method"
+msgid "Dissassociated %s stale fixed ip(s)"
msgstr ""
-#: nova/virt/xenapi_conn.py:113
-msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
+#: ../nova/network/manager.py:157
+msgid "setting network host"
msgstr ""
-#: nova/virt/xenapi_conn.py:263
+#: ../nova/network/manager.py:212
#, python-format
-msgid "Task [%s] %s status: success %s"
+msgid "Leasing IP %s"
msgstr ""
-#: nova/virt/xenapi_conn.py:271
+#: ../nova/network/manager.py:216
#, python-format
-msgid "Task [%s] %s status: %s %s"
+msgid "IP %s leased that isn't associated"
msgstr ""
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
+#: ../nova/network/manager.py:220
#, python-format
-msgid "Got exception: %s"
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:72
+#: ../nova/network/manager.py:228
#, python-format
-msgid "%s: _db_content => %s"
+msgid "IP %s leased that was already deallocated"
msgstr ""
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
+#: ../nova/network/manager.py:233
+#, python-format
+msgid "Releasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:249
+#: ../nova/network/manager.py:237
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
+msgid "IP %s released that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:283
+#: ../nova/network/manager.py:241
#, python-format
-msgid "Calling %s %s"
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:288
+#: ../nova/network/manager.py:244
#, python-format
-msgid "Calling getter %s"
+msgid "IP %s released that was not leased"
msgstr ""
-#: nova/virt/xenapi/fake.py:340
-#, python-format
+#: ../nova/network/manager.py:519
msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:40
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Found non-unique network for bridge %s"
+msgid "Introducing %s..."
msgstr ""
-#: nova/virt/xenapi/network_utils.py:43
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Found no network for bridge %s"
+msgid "Introduced %(label)s as %(sr_ref)s."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:127
-#, python-format
-msgid "Created VM %s as %s."
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:147
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
+msgid "Unable to find SR from VBD %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:149
+#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
+msgid "Forgetting SR %s ... "
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:165
+#: ../nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "VBD not found in instance %s"
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:175
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "Unable to unplug VBD %s"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:187
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Unable to destroy VBD %s"
+msgid "Forgetting SR %s done."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:202
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Creating VIF for VM %s, network %s."
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:205
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
+msgid "Unable to introduce VDI on SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:216
+#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
+msgid "Unable to get record of VDI %s on"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:229
+#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Created snapshot %s from VM %s."
+msgid "Unable to introduce VDI for SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:243
+#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:261
+#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Asking xapi to fetch %s as %s"
+msgid "Mountpoint cannot be translated: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:279
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "Looking up vdi %s for PV kernel"
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:290
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:318
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "VDI %s is still available"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:331
+#: ../nova/objectstore/handler.py:106
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgid "Unknown S3 value type %r"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:333
-#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
+#: ../nova/objectstore/handler.py:137
+msgid "Authenticated request"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:182
+msgid "List of buckets requested"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:390
+#: ../nova/objectstore/handler.py:209
#, python-format
-msgid "VHD %s has parent %s"
+msgid "List keys for bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:407
+#: ../nova/objectstore/handler.py:217
#, python-format
-msgid "Re-scanning SR %s"
+msgid "Unauthorized attempt to access bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:431
+#: ../nova/objectstore/handler.py:235
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+msgid "Creating bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:448
+#: ../nova/objectstore/handler.py:245
#, python-format
-msgid "No VDIs found for VM %s"
+msgid "Deleting bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:452
+#: ../nova/objectstore/handler.py:249
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
+msgid "Unauthorized attempt to delete bucket %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:62
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "Attempted to create non-unique name %s"
+msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:99
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Starting VM %s..."
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:101
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Spawning VM %s created %s."
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:112
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "Instance %s: booted"
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:137
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "Instance not present %s"
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:166
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "Starting snapshot for VM %s"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:174
+#: ../nova/objectstore/handler.py:396
#, python-format
-msgid "Unable to Snapshot %s: %s"
+msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:184
+#: ../nova/objectstore/handler.py:404
#, python-format
-msgid "Finished snapshot and upload for VM %s"
+msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:252
+#: ../nova/objectstore/handler.py:409
#, python-format
-msgid "suspend: instance not present %s"
+msgid "Starting image upload: %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:262
+#: ../nova/objectstore/handler.py:423
#, python-format
-msgid "resume: instance not present %s"
+msgid "Not authorized to update attributes of image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:271
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "Instance not found %s"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:57
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
-msgid "Introducing %s..."
+msgid "Updating user fields on image %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:74
+#: ../nova/objectstore/handler.py:450
#, python-format
-msgid "Introduced %s as %s."
+msgid "Unauthorized attempt to delete image %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
+#: ../nova/objectstore/handler.py:455
+#, python-format
+msgid "Deleted image: %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:90
+#: ../nova/auth/manager.py:259
#, python-format
-msgid "Unable to find SR from VBD %s"
+msgid "Looking up user: %r"
+msgstr "Procurando usuário: %r"
+
+#: ../nova/auth/manager.py:263
+#, python-format
+msgid "Failed authorization for access key %s"
+msgstr "Falha de autorização para chave de acesso %s"
+
+#: ../nova/auth/manager.py:264
+#, python-format
+msgid "No user found for access key %s"
+msgstr "Nenhum usuário encontrado para chave de acesso %s"
+
+#: ../nova/auth/manager.py:270
+#, python-format
+msgid "Using project name = user name (%s)"
+msgstr "Usando nome do projeto = nome do usuário (%s)"
+
+#: ../nova/auth/manager.py:277
+#, python-format
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:96
+#: ../nova/auth/manager.py:279
#, python-format
-msgid "Forgetting SR %s ... "
+msgid "No project called %s could be found"
+msgstr "Nenhum projeto chamado %s pode ser encontrado."
+
+#: ../nova/auth/manager.py:287
+#, python-format
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:101
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
+msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:107
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
+msgid "Invalid signature for user %s"
+msgstr "Assinatura inválida para usuário %s"
+
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
+msgstr "Assinatura não confere"
+
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
+msgstr "Deve especificar projeto"
+
+#: ../nova/auth/manager.py:414
+#, python-format
+msgid "The %s role can not be found"
+msgstr "O papel %s não foi encontrado"
+
+#: ../nova/auth/manager.py:416
+#, python-format
+msgid "The %s role is global only"
+msgstr "O papel %s é apenas global"
+
+#: ../nova/auth/manager.py:420
+#, python-format
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:111
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Forgetting SR %s done."
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:113
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:123
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Unable to introduce VDI on SR %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:128
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Unable to get record of VDI %s on"
+msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:146
+#: ../nova/auth/manager.py:533
#, python-format
-msgid "Unable to introduce VDI for SR %s"
+msgid "modifying project %s"
+msgstr "modificando projeto %s"
+
+#: ../nova/auth/manager.py:545
+#, python-format
+msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:175
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Unable to obtain target information %s, %s"
+msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:197
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Mountpoint cannot be translated: %s"
+msgid "Deleting project %s"
+msgstr "Excluindo projeto %s"
+
+#: ../nova/auth/manager.py:650
+#, python-format
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:51
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Attach_volume: %s, %s, %s"
+msgid "Deleting user %s"
+msgstr "Apagando usuário %s"
+
+#: ../nova/auth/manager.py:669
+#, python-format
+msgid "Access Key change for user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:69
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
+msgid "Secret Key change for user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:81
+#: ../nova/auth/manager.py:673
#, python-format
-msgid "Unable to use SR %s for instance %s"
+msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:93
+#: ../nova/auth/manager.py:722
#, python-format
-msgid "Unable to attach volume to instance %s"
+msgid "No vpn data for project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:95
+#: ../nova/service.py:161
#, python-format
-msgid "Mountpoint %s attached to instance %s"
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:106
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
+msgstr "Encerrado serviço que não tem entrada na base de dados"
+
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr "O objeto da base de dados do serviço desapareceu, Recriando."
+
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
+msgstr "Recuperada conexão servidor de modelo."
+
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr "servidor de modelo perdido"
+
+#: ../nova/auth/ldapdriver.py:174
#, python-format
-msgid "Detach_volume: %s, %s"
+msgid "LDAP user %s already exists"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:113
+#: ../nova/auth/ldapdriver.py:205
#, python-format
-msgid "Unable to locate volume %s"
+msgid "LDAP object for %s doesn't exist"
+msgstr "Objeto LDAP para %s não existe"
+
+#: ../nova/auth/ldapdriver.py:348
+#, python-format
+msgid "User %s doesn't exist"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:121
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "Unable to detach volume %s"
+msgid "Group can't be created because group %s already exists"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:128
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Mountpoint %s detached from instance %s"
+msgid "Group can't be created because user %s doesn't exist"
msgstr ""
-#: nova/volume/api.py:44
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
+msgid "User %s can't be searched in group because the user doesn't exist"
msgstr ""
-#: nova/volume/api.py:46
+#: ../nova/auth/ldapdriver.py:507
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
+msgid "User %s can't be added to the group because the user doesn't exist"
msgstr ""
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
+#, python-format
+msgid "The group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
+#: ../nova/auth/ldapdriver.py:513
+#, python-format
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
msgstr ""
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
+#: ../nova/auth/ldapdriver.py:524
+#, python-format
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
msgstr ""
-#: nova/volume/driver.py:76
+#: ../nova/auth/ldapdriver.py:528
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
+msgid "User %s is not a member of the group"
msgstr ""
-#: nova/volume/driver.py:85
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "volume group %s doesn't exist"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
msgstr ""
+"Tentatica de remover o último membto de um grupo. Ao invés disso excluindo o "
+"grupo %s."
-#: nova/volume/driver.py:210
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "FAKE AOE: %s"
+msgid "User %s can't be removed from all because the user doesn't exist"
msgstr ""
-#: nova/volume/driver.py:315
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "FAKE ISCSI: %s"
+msgid "Group at dn %s doesn't exist"
+msgstr "Grupo no dn %s não existe"
+
+#: ../nova/virt/xenapi/network_utils.py:40
+#, python-format
+msgid "Found non-unique network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:85
+#: ../nova/virt/xenapi/network_utils.py:43
#, python-format
-msgid "Re-exporting %s volumes"
+msgid "Found no network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:93
+#: ../nova/api/ec2/admin.py:97
#, python-format
-msgid "volume %s: creating"
+msgid "Creating new user: %s"
+msgstr "Criando novo usuário: %s"
+
+#: ../nova/api/ec2/admin.py:105
+#, python-format
+msgid "Deleting user: %s"
+msgstr "Excluindo usuário: %s"
+
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
msgstr ""
-#: nova/volume/manager.py:102
+#: ../nova/api/ec2/admin.py:131
#, python-format
-msgid "volume %s: creating lv of size %sG"
+msgid "Adding sitewide role %(role)s to user %(user)s"
msgstr ""
-#: nova/volume/manager.py:106
+#: ../nova/api/ec2/admin.py:137
#, python-format
-msgid "volume %s: creating export"
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
msgstr ""
-#: nova/volume/manager.py:113
+#: ../nova/api/ec2/admin.py:141
#, python-format
-msgid "volume %s: created successfully"
+msgid "Removing sitewide role %(role)s from user %(user)s"
msgstr ""
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr "operações devem ser adicionar e excluir"
+
+#: ../nova/api/ec2/admin.py:159
+#, python-format
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
msgstr ""
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
+#: ../nova/api/ec2/admin.py:177
+#, python-format
+msgid "Create project %(name)s managed by %(manager_user)s"
msgstr ""
-#: nova/volume/manager.py:124
+#: ../nova/api/ec2/admin.py:190
#, python-format
-msgid "volume %s: removing export"
+msgid "Modify project: %(name)s managed by %(manager_user)s"
msgstr ""
-#: nova/volume/manager.py:126
+#: ../nova/api/ec2/admin.py:200
#, python-format
-msgid "volume %s: deleting"
+msgid "Delete project: %s"
+msgstr "Excluir projeto: %s"
+
+#: ../nova/api/ec2/admin.py:214
+#, python-format
+msgid "Adding user %(user)s to project %(project)s"
msgstr ""
-#: nova/volume/manager.py:129
+#: ../nova/api/ec2/admin.py:218
#, python-format
-msgid "volume %s: deleted successfully"
+msgid "Removing user %(user)s from project %(project)s"
msgstr ""
+
+#, python-format
+#~ msgid ""
+#~ "%s\n"
+#~ "Command: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+#~ msgstr ""
+#~ "%s\n"
+#~ "Comando: %s\n"
+#~ "Código de retorno: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+
+#, python-format
+#~ msgid "(%s) publish (key: %s) %s"
+#~ msgstr "(%s) publicar (key: %s) %s"
+
+#, python-format
+#~ msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+#~ msgstr ""
+#~ "Servidor AMQP em %s:%d inatingível. Tentando novamente em %d segundos."
+
+#, python-format
+#~ msgid "Binding %s to %s with key %s"
+#~ msgstr "Atribuindo %s para %s com chave %s"
+
+#, python-format
+#~ msgid "Getting from %s: %s"
+#~ msgstr "Obtendo de %s: %s"
+
+#, python-format
+#~ msgid "Starting %s node"
+#~ msgstr "Iniciando nó %s"
+
+#, python-format
+#~ msgid "Data store %s is unreachable. Trying again in %d seconds."
+#~ msgstr ""
+#~ "Repositório de dados %s não pode ser atingido. Tentando novamente em %d "
+#~ "segundos."
+
+#, python-format
+#~ msgid "Couldn't get IP, using 127.0.0.1 %s"
+#~ msgstr "Não foi possível obter IP, usando 127.0.0.1 %s"
+
+#, python-format
+#~ msgid ""
+#~ "Access key %s has had %d failed authentications and will be locked out for "
+#~ "%d minutes."
+#~ msgstr ""
+#~ "Chave de acesso %s tem %d falhas de autenticação e vai ser bloqueada por %d "
+#~ "minutos."
+
+#, python-format
+#~ msgid "arg: %s\t\tval: %s"
+#~ msgstr "argumento: %s\t\tvalor: %s"
+
+#, python-format
+#~ msgid "Authenticated Request For %s:%s)"
+#~ msgstr "Pedido de Autenticação Para: %s:%s"
+
+#, python-format
+#~ msgid "Adding sitewide role %s to user %s"
+#~ msgstr "Adicionando papel em todo site %s ao usuário %s"
+
+#, python-format
+#~ msgid "Adding role %s to user %s for project %s"
+#~ msgstr "Adicionando papel %s ao usuário %s para o projeto %s"
+
+#, python-format
+#~ msgid "Unauthorized request for controller=%s and action=%s"
+#~ msgstr "Requisição não autorizada para controlador=%s e ação=%s"
+
+#, python-format
+#~ msgid "Removing role %s from user %s for project %s"
+#~ msgstr "Removendo papel %s do usuário %s para o projeto %s"
+
+#, python-format
+#~ msgid "Getting x509 for user: %s on project: %s"
+#~ msgstr "Obtendo x509 para usuário: %s do projeto: %s"
+
+#, python-format
+#~ msgid "Create project %s managed by %s"
+#~ msgstr "Criar projeto %s gerenciado por %s"
+
+#, python-format
+#~ msgid "Removing user %s from project %s"
+#~ msgstr "Excluindo usuário %s do projeto %s"
+
+#, python-format
+#~ msgid "Adding user %s to project %s"
+#~ msgstr "Adicionando usuário %s ao projeto %s"
+
+#, python-format
+#~ msgid "Unsupported API request: controller = %s,action = %s"
+#~ msgstr "Requisição de API não suportada: controlador = %s,ação = %s"
+
+#, python-format
+#~ msgid "Removing sitewide role %s from user %s"
+#~ msgstr "Removendo papel %s em todo site do usuário %s"
+
+#, python-format
+#~ msgid "Associate address %s to instance %s"
+#~ msgstr "Atribuir endereço %s à instância %s"
+
+#, python-format
+#~ msgid "Attach volume %s to instacne %s at %s"
+#~ msgstr "Anexar volume %s para instância %s em %s"
+
+#, python-format
+#~ msgid "Registered image %s with id %s"
+#~ msgstr "Registrada imagem %s com id %s"
+
+#, python-format
+#~ msgid "User %s is already a member of the group %s"
+#~ msgstr "Usuário %s já pertence ao grupo %s"
+
+#, python-format
+#~ msgid "User %s is not a member of project %s"
+#~ msgstr "Usuário %s não é membro do projeto %s"
+
+#, python-format
+#~ msgid "failed authorization: no project named %s (user=%s)"
+#~ msgstr "falha de autorização: nenhum projeto de nome %s (usuário=%s)"
+
+#, python-format
+#~ msgid "Failed authorization: user %s not admin and not member of project %s"
+#~ msgstr ""
+#~ "Falha de autorização: usuário %s não é administrador nem membro do projeto %s"
+
+#, python-format
+#~ msgid "Created project %s with manager %s"
+#~ msgstr "Criado projeto %s com gerente %s"
+
+#, python-format
+#~ msgid "Removing role %s from user %s on project %s"
+#~ msgstr "Removendo papel %s do usuário %s no projeto %s"
+
+#, python-format
+#~ msgid "Adding role %s to user %s in project %s"
+#~ msgstr "Adicionando papel %s ao usuário %s no projeto %s"
+
+#, python-format
+#~ msgid "Remove user %s from project %s"
+#~ msgstr "Remover usuário %s do projeto %s"
+
+#, python-format
+#~ msgid "Created user %s (admin: %r)"
+#~ msgstr "Criado usuário %s (administrador: %r)"
diff --git a/po/ru.po b/po/ru.po
index 5d031ac08..bbfcfb19f 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,2132 +7,2961 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
-"PO-Revision-Date: 2011-01-31 06:53+0000\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
+"PO-Revision-Date: 2011-03-30 07:06+0000\n"
"Last-Translator: Andrey Olykainen <Unknown>\n"
"Language-Team: Russian <ru@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-05 05:36+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-03-31 05:58+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
-msgid "Filename of root CA"
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
msgstr ""
-#: nova/crypto.py:49
-msgid "Filename of private key"
-msgstr "Имя файла секретного ключа"
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr "Неожиданная ошибка при выполнении команды."
-#: nova/crypto.py:51
-msgid "Filename of root Certificate Revokation List"
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
msgstr ""
-#: nova/crypto.py:53
-msgid "Where we keep our keys"
-msgstr "Путь к ключам"
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
-#: nova/crypto.py:55
-msgid "Where we keep our root CA"
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr "Необработанное исключение"
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
msgstr ""
-#: nova/crypto.py:57
-msgid "Should we use a CA for each project?"
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
msgstr ""
-#: nova/crypto.py:61
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr ""
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr ""
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:152
#, python-format
-msgid "Subject for certificate for users, %s for project, user, timestamp"
+msgid "%(param)s property not found for image %(_image_id)s"
msgstr ""
-#: nova/crypto.py:66
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:238
#, python-format
-msgid "Subject for certificate for projects, %s for project, timestamp"
+msgid "Compute.api::lock %s"
msgstr ""
-#: nova/crypto.py:71
+#: ../nova/api/openstack/servers.py:253
#, python-format
-msgid "Subject for certificate for vpns, %s for project, timestamp"
+msgid "Compute.api::unlock %s"
msgstr ""
-#: nova/crypto.py:258
+#: ../nova/api/openstack/servers.py:267
#, python-format
-msgid "Flags path: %s"
+msgid "Compute.api::get_lock %s"
msgstr ""
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
-msgstr "Неожиданная ошибка при выполнении команды."
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr ""
-#: nova/exception.py:36
+#: ../nova/api/openstack/servers.py:292
#, python-format
-msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-msgstr ""
-"%s\n"
-"Команда: %s\n"
-"Код завершения: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-
-#: nova/exception.py:86
-msgid "Uncaught exception"
-msgstr "Необработанное исключение"
+msgid "Compute.api::pause %s"
+msgstr ""
-#: nova/fakerabbit.py:48
+#: ../nova/api/openstack/servers.py:303
#, python-format
-msgid "(%s) publish (key: %s) %s"
+msgid "Compute.api::unpause %s"
msgstr ""
-#: nova/fakerabbit.py:53
+#: ../nova/api/openstack/servers.py:314
#, python-format
-msgid "Publishing to route %s"
+msgid "compute.api::suspend %s"
msgstr ""
-#: nova/fakerabbit.py:83
+#: ../nova/api/openstack/servers.py:325
#, python-format
-msgid "Declaring queue %s"
-msgstr "Объявление очереди %s"
+msgid "compute.api::resume %s"
+msgstr ""
-#: nova/fakerabbit.py:89
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr "Неверное число аргументов."
+
+#: ../nova/twistd.py:209
#, python-format
-msgid "Declaring exchange %s"
-msgstr "Объявление точки обмена %s"
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr "pidfile %s не обнаружен. Демон не запущен?\n"
-#: nova/fakerabbit.py:95
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr ""
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
#, python-format
-msgid "Binding %s to %s with key %s"
+msgid "Serving %s"
msgstr ""
-#: nova/fakerabbit.py:120
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr ""
+
+#: ../nova/twistd.py:266
#, python-format
-msgid "Getting from %s: %s"
-msgstr "Получение из %s: %s"
+msgid "Starting %s"
+msgstr "Запускается %s"
-#: nova/rpc.py:92
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
-msgstr "AMQP сервер %s:%d недоступен. Повторная попытка через %d секунд."
+msgid "Instance %s not found"
+msgstr ""
-#: nova/rpc.py:99
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
-msgstr "Не удалось подключиться к серверу AMQP после %d попыток. Выключение."
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr ""
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
-msgstr "Переподлючено к очереди"
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
-msgstr "Не удалось получить сообщение из очереди"
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
-#: nova/rpc.py:155
+#: ../nova/virt/xenapi/volumeops.py:91
#, python-format
-msgid "Initing the Adapter Consumer for %s"
+msgid "Unable to attach volume to instance %s"
msgstr ""
-#: nova/rpc.py:170
+#: ../nova/virt/xenapi/volumeops.py:93
#, python-format
-msgid "received %s"
-msgstr "получено %s"
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr ""
-#: nova/rpc.py:183
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
#, python-format
-msgid "no method for message: %s"
-msgstr "не определен метод для сообщения: %s"
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr ""
-#: nova/rpc.py:184
+#: ../nova/virt/xenapi/volumeops.py:112
#, python-format
-msgid "No method for message: %s"
-msgstr "Не определен метод для сообщения: %s"
+msgid "Unable to locate volume %s"
+msgstr ""
-#: nova/rpc.py:245
+#: ../nova/virt/xenapi/volumeops.py:120
#, python-format
-msgid "Returning exception %s to caller"
+msgid "Unable to detach volume %s"
msgstr ""
-#: nova/rpc.py:286
+#: ../nova/virt/xenapi/volumeops.py:127
#, python-format
-msgid "unpacked context: %s"
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
msgstr ""
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
-msgstr "Выполняется асинхронный вызов..."
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr ""
-#: nova/rpc.py:308
+#: ../nova/crypto.py:46
+msgid "Filename of root CA"
+msgstr ""
+
+#: ../nova/crypto.py:49
+msgid "Filename of private key"
+msgstr "Имя файла секретного ключа"
+
+#: ../nova/crypto.py:51
+msgid "Filename of root Certificate Revokation List"
+msgstr ""
+
+#: ../nova/crypto.py:53
+msgid "Where we keep our keys"
+msgstr "Путь к ключам"
+
+#: ../nova/crypto.py:55
+msgid "Where we keep our root CA"
+msgstr ""
+
+#: ../nova/crypto.py:57
+msgid "Should we use a CA for each project?"
+msgstr ""
+
+#: ../nova/crypto.py:61
#, python-format
-msgid "MSG_ID is %s"
-msgstr "MSG_ID is %s"
+msgid "Subject for certificate for users, %s for project, user, timestamp"
+msgstr ""
-#: nova/rpc.py:356
+#: ../nova/crypto.py:66
#, python-format
-msgid "response %s"
-msgstr "ответ %s"
+msgid "Subject for certificate for projects, %s for project, timestamp"
+msgstr ""
-#: nova/rpc.py:365
+#: ../nova/crypto.py:71
#, python-format
-msgid "topic is %s"
-msgstr "тема %s"
+msgid "Subject for certificate for vpns, %s for project, timestamp"
+msgstr ""
-#: nova/rpc.py:366
+#: ../nova/crypto.py:258
#, python-format
-msgid "message %s"
-msgstr "сообщение %s"
+msgid "Flags path: %s"
+msgstr ""
-#: nova/service.py:157
+#: ../nova/scheduler/manager.py:69
#, python-format
-msgid "Starting %s node"
-msgstr "Запускается нода %s"
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr ""
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
+#: ../nova/compute/manager.py:78
+#, python-format
+msgid "check_instance_lock: decorating: |%s|"
msgstr ""
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
-msgstr "Объект сервиса в базе данных отсутствует, Повторное создание."
+#: ../nova/compute/manager.py:80
+#, python-format
+msgid ""
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
+msgstr ""
-#: nova/service.py:202
-msgid "Recovered model server connection!"
+#: ../nova/compute/manager.py:84
+#, python-format
+msgid "check_instance_lock: locked: |%s|"
msgstr ""
-#: nova/service.py:208
-msgid "model server went away"
+#: ../nova/compute/manager.py:86
+#, python-format
+msgid "check_instance_lock: admin: |%s|"
msgstr ""
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
-msgstr "Хранилище данных %s недоступно. Повторная попытка через %d секунд."
+msgid "check_instance_lock: executing: |%s|"
+msgstr ""
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Serving %s"
+msgid "check_instance_lock: not executing |%s|"
msgstr ""
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
msgstr ""
-#: nova/twistd.py:211
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
-msgstr "pidfile %s не обнаружен. Демон не запущен?\n"
+msgid "instance %s: starting..."
+msgstr ""
-#: nova/twistd.py:268
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "Starting %s"
-msgstr "Запускается %s"
+msgid "instance %s: Failed to spawn"
+msgstr ""
-#: nova/utils.py:53
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "Inner Exception: %s"
-msgstr "Вложенное исключение: %s"
+msgid "Terminating instance %s"
+msgstr ""
-#: nova/utils.py:54
+#: ../nova/compute/manager.py:255
#, python-format
-msgid "Class %s cannot be found"
-msgstr "Класс %s не найден"
+msgid "Deallocating address %s"
+msgstr ""
-#: nova/utils.py:113
+#: ../nova/compute/manager.py:268
#, python-format
-msgid "Fetching %s"
+msgid "trying to destroy already destroyed instance: %s"
msgstr ""
-#: nova/utils.py:125
+#: ../nova/compute/manager.py:282
#, python-format
-msgid "Running cmd (subprocess): %s"
+msgid "Rebooting instance %s"
msgstr ""
-#: nova/utils.py:138
+#: ../nova/compute/manager.py:287
#, python-format
-msgid "Result was %s"
-msgstr "Результат %s"
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
-#: nova/utils.py:171
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "debug in callback: %s"
+msgid "instance %s: snapshotting"
msgstr ""
-#: nova/utils.py:176
+#: ../nova/compute/manager.py:316
#, python-format
-msgid "Running %s"
-msgstr "Выполняется %s"
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
-#: nova/utils.py:207
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
-msgstr "Не удалось получить IP, используем 127.0.0.1 %s"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
+msgstr ""
-#: nova/utils.py:289
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "Invalid backend: %s"
+msgid "instance %s: setting admin password"
msgstr ""
-#: nova/utils.py:300
+#: ../nova/compute/manager.py:353
#, python-format
-msgid "backend %s"
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
msgstr ""
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
-msgstr "Слишком много неудачных попыток аутентификации."
+#: ../nova/compute/manager.py:362
+#, python-format
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
+msgstr ""
-#: nova/api/ec2/__init__.py:142
+#: ../nova/compute/manager.py:372
#, python-format
-msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
+msgid "instance %s: rescuing"
msgstr ""
-"Ключ доступа %s имеет %d неудачных попыток аутентификации и будет "
-"заблокирован на %d минут."
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "Authentication Failure: %s"
-msgstr "Ошибка аутентификации: %s"
+msgid "instance %s: unrescuing"
+msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "Authenticated Request For %s:%s)"
-msgstr "Запрос аутентификации для %s:%s)"
+msgid "instance %s: pausing"
+msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "action: %s"
-msgstr "действие: %s"
+msgid "instance %s: unpausing"
+msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/compute/manager.py:440
#, python-format
-msgid "arg: %s\t\tval: %s"
-msgstr "arg: %s\t\tval: %s"
+msgid "instance %s: retrieving diagnostics"
+msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/compute/manager.py:453
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
+msgid "instance %s: suspending"
msgstr ""
-#: nova/api/ec2/__init__.py:339
+#: ../nova/compute/manager.py:472
#, python-format
-msgid "NotFound raised: %s"
+msgid "instance %s: resuming"
msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/compute/manager.py:491
#, python-format
-msgid "ApiError raised: %s"
+msgid "instance %s: locking"
msgstr ""
-#: nova/api/ec2/__init__.py:349
+#: ../nova/compute/manager.py:503
#, python-format
-msgid "Unexpected error raised: %s"
+msgid "instance %s: unlocking"
msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
+#: ../nova/compute/manager.py:513
+#, python-format
+msgid "instance %s: getting locked state"
msgstr ""
-"Произошла неизвестная ошибка. Пожалуйста, попытайтесь повторить ваш запрос."
-#: nova/api/ec2/admin.py:84
+#: ../nova/compute/manager.py:526
#, python-format
-msgid "Creating new user: %s"
-msgstr "Создание нового пользователя: %s"
+msgid "instance %s: reset network"
+msgstr ""
-#: nova/api/ec2/admin.py:92
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
#, python-format
-msgid "Deleting user: %s"
-msgstr "Удаление пользователя: %s"
+msgid "Get console output for instance %s"
+msgstr ""
-#: nova/api/ec2/admin.py:114
+#: ../nova/compute/manager.py:543
#, python-format
-msgid "Adding role %s to user %s for project %s"
-msgstr "Добавление роли %s для пользователя %s для проекта %s"
+msgid "instance %s: getting ajax console"
+msgstr ""
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "Adding sitewide role %s to user %s"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
msgstr ""
-#: nova/api/ec2/admin.py:122
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "Removing role %s from user %s for project %s"
-msgstr "Удаление роли %s пользователя %s для проекта %s"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
+msgstr ""
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Removing sitewide role %s from user %s"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
msgstr ""
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
+#: ../nova/compute/manager.py:588
+#, python-format
+msgid "Detaching volume from unknown instance %s"
msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/scheduler/simple.py:53
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
+msgid "Host %s is not alive"
msgstr ""
-#: nova/api/ec2/admin.py:159
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:87
#, python-format
-msgid "Create project %s managed by %s"
-msgstr "Создать проект %s под управлением %s"
+msgid "Host %s not available"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
+msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "Delete project: %s"
-msgstr "Удалить проект: %s"
+msgid "Re-exporting %s volumes"
+msgstr ""
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/volume/manager.py:90
#, python-format
-msgid "Adding user %s to project %s"
-msgstr "Добавление пользователя %s к проекту %s"
+msgid "volume %s: skipping export"
+msgstr ""
-#: nova/api/ec2/admin.py:188
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Removing user %s from project %s"
-msgstr "Удаление пользователя %s с проекта %s"
+msgid "volume %s: creating"
+msgstr ""
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/volume/manager.py:108
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
msgstr ""
-#: nova/api/ec2/cloud.py:117
+#: ../nova/volume/manager.py:112
#, python-format
-msgid "Generating root CA: %s"
+msgid "volume %s: creating export"
msgstr ""
-#: nova/api/ec2/cloud.py:277
+#: ../nova/volume/manager.py:123
#, python-format
-msgid "Create key pair %s"
-msgstr "Создание пары ключей %s"
+msgid "volume %s: created successfully"
+msgstr ""
+
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
+msgstr ""
+
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
+msgstr ""
-#: nova/api/ec2/cloud.py:285
+#: ../nova/volume/manager.py:136
#, python-format
-msgid "Delete key pair %s"
-msgstr "Удаление пары ключей %s"
+msgid "volume %s: removing export"
+msgstr ""
-#: nova/api/ec2/cloud.py:357
+#: ../nova/volume/manager.py:138
#, python-format
-msgid "%s is not a valid ipProtocol"
+msgid "volume %s: deleting"
msgstr ""
-#: nova/api/ec2/cloud.py:361
-msgid "Invalid port range"
-msgstr "Неверный диапазон портов"
+#: ../nova/volume/manager.py:147
+#, python-format
+msgid "volume %s: deleted successfully"
+msgstr ""
-#: nova/api/ec2/cloud.py:392
+#: ../nova/virt/xenapi/fake.py:74
#, python-format
-msgid "Revoke security group ingress %s"
+msgid "%(text)s: _db_content => %(content)s"
msgstr ""
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
-msgid "No rule for the specified parameters."
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
msgstr ""
-#: nova/api/ec2/cloud.py:421
+#: ../nova/virt/xenapi/fake.py:306
#, python-format
-msgid "Authorize security group ingress %s"
+msgid "xenapi.fake does not have an implementation for %s"
msgstr ""
-#: nova/api/ec2/cloud.py:432
+#: ../nova/virt/xenapi/fake.py:341
#, python-format
-msgid "This rule already exists in group %s"
-msgstr "Это правило уже существует в группе %s"
+msgid "Calling %(localname)s %(impl)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:460
+#: ../nova/virt/xenapi/fake.py:346
#, python-format
-msgid "Create Security Group %s"
+msgid "Calling getter %s"
msgstr ""
-#: nova/api/ec2/cloud.py:463
+#: ../nova/virt/xenapi/fake.py:406
#, python-format
-msgid "group %s already exists"
-msgstr "группа %s уже существует"
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
+msgstr ""
+
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
+msgstr ""
-#: nova/api/ec2/cloud.py:475
+#: ../nova/tests/test_cloud.py:268
#, python-format
-msgid "Delete security group %s"
+msgid "Need to watch instance %s until it's running..."
msgstr ""
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
+msgstr ""
+
+#: ../nova/network/linux_net.py:187
#, python-format
-msgid "Get console output for instance %s"
+msgid "Starting VLAN inteface %s"
msgstr ""
-#: nova/api/ec2/cloud.py:543
+#: ../nova/network/linux_net.py:208
#, python-format
-msgid "Create volume of %s GB"
-msgstr "Создание раздела %s ГБ"
+msgid "Starting Bridge interface for %s"
+msgstr ""
-#: nova/api/ec2/cloud.py:567
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
+msgid "Hupping dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/cloud.py:579
+#: ../nova/network/linux_net.py:316
#, python-format
-msgid "Detach volume %s"
+msgid "Pid %d is stale, relaunching dnsmasq"
msgstr ""
-#: nova/api/ec2/cloud.py:686
-msgid "Allocate address"
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
+#, python-format
+msgid "killing radvd threw %s"
msgstr ""
-#: nova/api/ec2/cloud.py:691
+#: ../nova/network/linux_net.py:360
#, python-format
-msgid "Release address %s"
+msgid "Pid %d is stale, relaunching radvd"
msgstr ""
-#: nova/api/ec2/cloud.py:696
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
#, python-format
-msgid "Associate address %s to instance %s"
+msgid "Killing dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/utils.py:58
#, python-format
-msgid "Disassociate address %s"
+msgid "Inner Exception: %s"
+msgstr "Вложенное исключение: %s"
+
+#: ../nova/utils.py:59
+#, python-format
+msgid "Class %s cannot be found"
+msgstr "Класс %s не найден"
+
+#: ../nova/utils.py:118
+#, python-format
+msgid "Fetching %s"
msgstr ""
-#: nova/api/ec2/cloud.py:730
-msgid "Going to start terminating instances"
+#: ../nova/utils.py:130
+#, python-format
+msgid "Running cmd (subprocess): %s"
msgstr ""
-#: nova/api/ec2/cloud.py:738
+#: ../nova/utils.py:143 ../nova/utils.py:183
#, python-format
-msgid "Reboot instance %r"
+msgid "Result was %s"
+msgstr "Результат %s"
+
+#: ../nova/utils.py:159
+#, python-format
+msgid "Running cmd (SSH): %s"
msgstr ""
-#: nova/api/ec2/cloud.py:775
+#: ../nova/utils.py:217
#, python-format
-msgid "De-registering image %s"
+msgid "debug in callback: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:783
+#: ../nova/utils.py:222
#, python-format
-msgid "Registered image %s with id %s"
+msgid "Running %s"
+msgstr "Выполняется %s"
+
+#: ../nova/utils.py:262
+#, python-format
+msgid "Link Local address is not found.:%s"
msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/utils.py:265
#, python-format
-msgid "attribute not supported: %s"
-msgstr "аттрибут не поддерживается: %s"
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:794
+#: ../nova/utils.py:363
#, python-format
-msgid "invalid id: %s"
+msgid "Invalid backend: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:807
-msgid "user or group not specified"
-msgstr "не указан пользователь или группа"
+#: ../nova/utils.py:374
+#, python-format
+msgid "backend %s"
+msgstr ""
-#: nova/api/ec2/cloud.py:809
-msgid "only group \"all\" is supported"
+#: ../nova/fakerabbit.py:49
+#, python-format
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:811
-msgid "operation_type must be add or remove"
+#: ../nova/fakerabbit.py:54
+#, python-format
+msgid "Publishing to route %s"
msgstr ""
-#: nova/api/ec2/cloud.py:812
+#: ../nova/fakerabbit.py:84
#, python-format
-msgid "Updating image %s publicity"
+msgid "Declaring queue %s"
+msgstr "Объявление очереди %s"
+
+#: ../nova/fakerabbit.py:90
+#, python-format
+msgid "Declaring exchange %s"
+msgstr "Объявление точки обмена %s"
+
+#: ../nova/fakerabbit.py:96
+#, python-format
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
msgstr ""
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../nova/fakerabbit.py:121
#, python-format
-msgid "Failed to get metadata for ip: %s"
-msgstr "Ошибка получения метаданных для ip: %s"
+msgid "Getting from %(queue)s: %(message)s"
+msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
-msgid "Caught error: %s"
+msgid "Created VM %s..."
msgstr ""
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
+#: ../nova/virt/xenapi/vm_utils.py:138
+#, python-format
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../nova/virt/xenapi/vm_utils.py:168
#, python-format
-msgid "Compute.api::lock %s"
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
-msgid "Compute.api::unlock %s"
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../nova/virt/xenapi/vm_utils.py:187
#, python-format
-msgid "Compute.api::get_lock %s"
+msgid "VBD not found in instance %s"
msgstr ""
-#: nova/api/openstack/servers.py:224
+#: ../nova/virt/xenapi/vm_utils.py:197
#, python-format
-msgid "Compute.api::pause %s"
+msgid "Unable to unplug VBD %s"
msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../nova/virt/xenapi/vm_utils.py:209
#, python-format
-msgid "Compute.api::unpause %s"
+msgid "Unable to destroy VBD %s"
msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../nova/virt/xenapi/vm_utils.py:224
#, python-format
-msgid "compute.api::suspend %s"
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../nova/virt/xenapi/vm_utils.py:227
#, python-format
-msgid "compute.api::resume %s"
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
-msgid "User %s already exists"
-msgstr "Пользователь %s уже существует"
+msgid ""
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
+msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
-msgstr "Проект не может быть создан поскольку менеджер %s не существует"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
+msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../nova/virt/xenapi/vm_utils.py:272
#, python-format
-msgid "Project can't be created because project %s already exists"
-msgstr "Проект не может быть созан поскольку проект %s уже существует"
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
+msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
msgstr ""
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
-msgid "User \"%s\" not found"
-msgstr "Пользователь \"%s\" не существует"
+msgid "Size for image %(image)s:%(virtual_size)d"
+msgstr ""
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vm_utils.py:332
#, python-format
-msgid "Project \"%s\" not found"
-msgstr "Проект \"%s\" не найден"
+msgid "Glance image %s"
+msgstr ""
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
+#, python-format
+msgid "Copying VDI %s to /boot/guest on dom0"
msgstr ""
-#: nova/auth/ldapdriver.py:181
+#: ../nova/virt/xenapi/vm_utils.py:352
#, python-format
-msgid "LDAP object for %s doesn't exist"
-msgstr "Объект LDAP %s не существует"
+msgid "Kernel/Ramdisk VDI %s destroyed"
+msgstr ""
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
-msgstr "Проект не может быть создан поскольку пользователь %s не существует"
+msgid "Asking xapi to fetch %(url)s as %(access)s"
+msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
#, python-format
-msgid "User %s is already a member of the group %s"
-msgstr "Пользователь %s уже член группы %s"
+msgid "Looking up vdi %s for PV kernel"
+msgstr ""
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+msgid "PV Kernel in VDI:%s"
msgstr ""
-#: nova/auth/ldapdriver.py:528
+#: ../nova/virt/xenapi/vm_utils.py:405
#, python-format
-msgid "Group at dn %s doesn't exist"
+msgid "Running pygrub against %s"
msgstr ""
-#: nova/auth/manager.py:259
+#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
-msgid "Looking up user: %r"
+msgid "Found Xen kernel %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
msgstr ""
-#: nova/auth/manager.py:263
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
-msgid "Failed authorization for access key %s"
+msgid "duplicate name found: %s"
msgstr ""
-#: nova/auth/manager.py:264
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "No user found for access key %s"
+msgid "VDI %s is still available"
msgstr ""
-#: nova/auth/manager.py:270
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "Using project name = user name (%s)"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
msgstr ""
-#: nova/auth/manager.py:275
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
msgstr ""
-#: nova/auth/manager.py:277
+#: ../nova/virt/xenapi/vm_utils.py:525
#, python-format
-msgid "No project called %s could be found"
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "Re-scanning SR %s"
msgstr ""
-#: nova/auth/manager.py:283
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "User %s is not a member of project %s"
-msgstr "Пользователь %s не является членом группы %s"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
+msgstr ""
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "Invalid signature for user %s"
-msgstr "Не допустимая подпись для пользователя %s"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
+msgstr ""
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
-msgstr "Подпись не совпадает"
+#: ../nova/virt/xenapi/vm_utils.py:590
+#, python-format
+msgid "No VDIs found for VM %s"
+msgstr ""
-#: nova/auth/manager.py:374
-msgid "Must specify project"
-msgstr "Необходимо указать проект"
+#: ../nova/virt/xenapi/vm_utils.py:594
+#, python-format
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
+msgstr ""
-#: nova/auth/manager.py:408
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
-msgid "The %s role can not be found"
-msgstr "Роль %s не может быть найдена"
+msgid "Creating VBD for VDI %s ... "
+msgstr ""
-#: nova/auth/manager.py:410
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
-msgid "The %s role is global only"
+msgid "Creating VBD for VDI %s done."
msgstr ""
-#: nova/auth/manager.py:412
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
#, python-format
-msgid "Adding role %s to user %s in project %s"
-msgstr "Добавление роли %s для пользователя %s в проект %s"
+msgid "Plugging VBD %s ... "
+msgstr ""
-#: nova/auth/manager.py:438
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
#, python-format
-msgid "Removing role %s from user %s on project %s"
-msgstr "Удаление роли %s пользователя %s в проекте %s"
+msgid "Plugging VBD %s done."
+msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/virt/xenapi/vm_utils.py:661
#, python-format
-msgid "Created project %s with manager %s"
-msgstr "Создан проект %s под управлением %s"
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
+msgstr ""
-#: nova/auth/manager.py:523
+#: ../nova/virt/xenapi/vm_utils.py:664
#, python-format
-msgid "modifying project %s"
-msgstr "изменение проекта %s"
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
+msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
-msgid "Remove user %s from project %s"
-msgstr "Удалить пользователя %s из проекта %s"
+msgid "Destroying VBD for VDI %s ... "
+msgstr ""
-#: nova/auth/manager.py:581
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
-msgid "Deleting project %s"
-msgstr "Удаление проекта %s"
+msgid "Destroying VBD for VDI %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
+msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
-msgid "Created user %s (admin: %r)"
-msgstr "Создан пользователь %s (администратор: %r)"
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
+msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
-msgid "Deleting user %s"
-msgstr "Удаление пользователя %s"
+msgid "Ignoring XenAPI.Failure %s"
+msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
-msgid "Access Key change for user %s"
+msgid ""
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/virt/xenapi/vm_utils.py:747
#, python-format
-msgid "Secret Key change for user %s"
+msgid "Writing partition table %s done."
msgstr ""
-#: nova/auth/manager.py:659
+#: ../nova/tests/test_rpc.py:89
#, python-format
-msgid "Admin status set to %r for user %s"
+msgid "Nested received %(queue)s, %(value)s"
msgstr ""
-#: nova/auth/manager.py:708
+#: ../nova/tests/test_rpc.py:95
#, python-format
-msgid "No vpn data for project %s"
-msgstr "Нет vpn данных для проекта %s"
+msgid "Nested return %s"
+msgstr ""
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
+#, python-format
+msgid "Received %s"
+msgstr "Получено %s"
+
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
msgstr ""
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:133
+#, python-format
+msgid "No service for id %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:251
+#, python-format
+msgid "No service for %(host)s, %(binary)s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
msgstr ""
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/db/sqlalchemy/api.py:608
#, python-format
-msgid "Launching VPN for %s"
-msgstr "Запуск VPN для %s"
+msgid "No floating ip for address %s"
+msgstr ""
-#: nova/compute/api.py:67
+#: ../nova/db/sqlalchemy/api.py:629
#, python-format
-msgid "Instance %d was not found in get_network_topic"
+msgid "No address for instance %s"
msgstr ""
-#: nova/compute/api.py:73
+#: ../nova/db/sqlalchemy/api.py:961
#, python-format
-msgid "Instance %d has no host"
+msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""
-#: nova/compute/api.py:92
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
+msgid "No network for id %s"
msgstr ""
-#: nova/compute/api.py:94
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
-msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+msgid "No network for bridge %s"
msgstr ""
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
+#, python-format
+msgid "No network for instance %s"
msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
-msgid "Going to run %s instances..."
+msgid "Token %s does not exist"
msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
+msgid "No quota for project_id %s"
msgstr ""
-#: nova/compute/api.py:279
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
#, python-format
-msgid "Going to try and terminate %s"
+msgid "Volume %s not found"
msgstr ""
-#: nova/compute/api.py:283
+#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
-msgid "Instance %d was not found during terminate"
+msgid "No export device found for volume %s"
msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
-msgid "Instance %d is already being terminated"
+msgid "No target id found for volume %s"
msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/db/sqlalchemy/api.py:1572
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "No security group with id %s"
msgstr ""
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
+#: ../nova/db/sqlalchemy/api.py:1589
+#, python-format
+msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/db/sqlalchemy/api.py:1682
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "No secuity group rule with id %s"
msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/db/sqlalchemy/api.py:1756
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "No user for id %s"
msgstr ""
-#: nova/compute/disk.py:128
+#: ../nova/db/sqlalchemy/api.py:1772
#, python-format
-msgid "Could not attach image to loopback: %s"
+msgid "No user for access key %s"
msgstr ""
-#: nova/compute/disk.py:136
+#: ../nova/db/sqlalchemy/api.py:1834
#, python-format
-msgid "Failed to load partition: %s"
+msgid "No project with id %s"
msgstr ""
-#: nova/compute/disk.py:158
+#: ../nova/db/sqlalchemy/api.py:1979
#, python-format
-msgid "Failed to mount filesystem: %s"
-msgstr "Ошибка монтирования файловой системы: %s"
+msgid "No console pool with id %(pool_id)s"
+msgstr ""
-#: nova/compute/instance_types.py:41
+#: ../nova/db/sqlalchemy/api.py:1996
#, python-format
-msgid "Unknown instance type: %s"
+msgid ""
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/db/sqlalchemy/api.py:2035
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""
-#: nova/compute/manager.py:71
+#: ../nova/db/sqlalchemy/api.py:2057
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "on instance %s"
msgstr ""
-#: nova/compute/manager.py:75
+#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
-msgid "check_instance_lock: locked: |%s|"
+msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""
-#: nova/compute/manager.py:77
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
-msgid "check_instance_lock: admin: |%s|"
+msgid "No zone with id %(zone_id)s"
msgstr ""
-#: nova/compute/manager.py:82
+#: ../nova/virt/libvirt_conn.py:160
#, python-format
-msgid "check_instance_lock: executing: |%s|"
+msgid "Checking state of %s"
msgstr ""
-#: nova/compute/manager.py:86
+#: ../nova/virt/libvirt_conn.py:165
#, python-format
-msgid "check_instance_lock: not executing |%s|"
+msgid "Current state of %(name)s was %(state)s."
msgstr ""
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
+#: ../nova/virt/libvirt_conn.py:183
+#, python-format
+msgid "Connecting to libvirt: %s"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
msgstr ""
-#: nova/compute/manager.py:158
+#: ../nova/virt/libvirt_conn.py:258
#, python-format
-msgid "instance %s: starting..."
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""
-#: nova/compute/manager.py:197
+#: ../nova/virt/libvirt_conn.py:283
#, python-format
-msgid "instance %s: Failed to spawn"
+msgid "Invalid device path %s"
msgstr ""
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/virt/libvirt_conn.py:313
#, python-format
-msgid "Terminating instance %s"
+msgid "No disk at %s"
+msgstr "Нет диска в %s"
+
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
msgstr ""
-#: nova/compute/manager.py:217
+#: ../nova/virt/libvirt_conn.py:336
#, python-format
-msgid "Disassociating address %s"
+msgid "instance %s: rebooted"
msgstr ""
-#: nova/compute/manager.py:230
+#: ../nova/virt/libvirt_conn.py:339
#, python-format
-msgid "Deallocating address %s"
+msgid "_wait_for_reboot failed: %s"
msgstr ""
-#: nova/compute/manager.py:243
+#: ../nova/virt/libvirt_conn.py:382
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
+msgid "instance %s: rescued"
msgstr ""
-#: nova/compute/manager.py:257
+#: ../nova/virt/libvirt_conn.py:385
#, python-format
-msgid "Rebooting instance %s"
+msgid "_wait_for_rescue failed: %s"
msgstr ""
-#: nova/compute/manager.py:260
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+msgid "instance %s: is running"
msgstr ""
-#: nova/compute/manager.py:286
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "instance %s: snapshotting"
+msgid "instance %s: booted"
msgstr ""
-#: nova/compute/manager.py:289
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "instance %s: failed to boot"
msgstr ""
-#: nova/compute/manager.py:301
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "instance %s: rescuing"
+msgid "virsh said: %r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
msgstr ""
-#: nova/compute/manager.py:316
+#: ../nova/virt/libvirt_conn.py:448
#, python-format
-msgid "instance %s: unrescuing"
+msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/virt/libvirt_conn.py:456
#, python-format
-msgid "instance %s: pausing"
+msgid "Contents of file %(fpath)s: %(contents)r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
msgstr ""
-#: nova/compute/manager.py:352
+#: ../nova/virt/libvirt_conn.py:563
#, python-format
-msgid "instance %s: unpausing"
+msgid "instance %s: Creating image"
msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/virt/libvirt_conn.py:646
#, python-format
-msgid "instance %s: retrieving diagnostics"
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/virt/libvirt_conn.py:649
#, python-format
-msgid "instance %s: suspending"
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:401
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
#, python-format
-msgid "instance %s: resuming"
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
msgstr ""
-#: nova/compute/manager.py:420
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
#, python-format
-msgid "instance %s: locking"
+msgid "instance %s: starting toXML method"
msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/virt/libvirt_conn.py:732
#, python-format
-msgid "instance %s: unlocking"
+msgid "instance %s: finished toXML method"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
msgstr ""
-#: nova/compute/manager.py:442
+#: ../nova/virt/libvirt_conn.py:1225
#, python-format
-msgid "instance %s: getting locked state"
+msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""
-#: nova/compute/manager.py:462
+#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
-msgid "instance %s: attaching volume %s to %s"
+msgid "Failed to get metadata for ip: %s"
+msgstr "Ошибка получения метаданных для ip: %s"
+
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/network/api.py:39
#, python-format
-msgid "instance %s: attach failed %s, removing"
+msgid "Quota exceeeded for %s, tried to allocate address"
msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
+msgstr ""
+
+#: ../nova/tests/test_volume.py:162
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
+msgid "Target %s allocated"
msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/virt/images.py:70
#, python-format
-msgid "Detaching volume from unknown instance %s"
+msgid "Finished retreving %(url)s -- placed in %(path)s"
+msgstr ""
+
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
+msgstr ""
+
+#: ../nova/console/manager.py:70
+msgid "Adding console"
msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/console/manager.py:90
#, python-format
-msgid "updating %s..."
-msgstr "обновление %s..."
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
-msgstr "неожиданная ошибка во время обновления"
+#: ../nova/api/direct.py:149
+msgid "not available"
+msgstr ""
-#: nova/compute/monitor.py:355
+#: ../nova/api/ec2/cloud.py:62
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
+msgid "The key_pair %s already exists"
msgstr ""
-#: nova/compute/monitor.py:377
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
+msgid "Generating root CA: %s"
msgstr ""
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
+#: ../nova/api/ec2/cloud.py:303
+#, python-format
+msgid "Create key pair %s"
+msgstr "Создание пары ключей %s"
+
+#: ../nova/api/ec2/cloud.py:311
+#, python-format
+msgid "Delete key pair %s"
+msgstr "Удаление пары ключей %s"
+
+#: ../nova/api/ec2/cloud.py:386
+#, python-format
+msgid "%s is not a valid ipProtocol"
msgstr ""
-#: nova/compute/monitor.py:427
+#: ../nova/api/ec2/cloud.py:390
+msgid "Invalid port range"
+msgstr "Неверный диапазон портов"
+
+#: ../nova/api/ec2/cloud.py:421
#, python-format
-msgid "Found instance: %s"
+msgid "Revoke security group ingress %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
msgstr ""
-#: nova/db/sqlalchemy/api.py:132
-#, python-format
-msgid "No service for id %s"
+#: ../nova/api/ec2/cloud.py:443
+msgid "No rule for the specified parameters."
msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../nova/api/ec2/cloud.py:450
#, python-format
-msgid "No service for %s, %s"
+msgid "Authorize security group ingress %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../nova/api/ec2/cloud.py:464
#, python-format
-msgid "No floating ip for address %s"
+msgid "This rule already exists in group %s"
+msgstr "Это правило уже существует в группе %s"
+
+#: ../nova/api/ec2/cloud.py:492
+#, python-format
+msgid "Create Security Group %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../nova/api/ec2/cloud.py:495
+#, python-format
+msgid "group %s already exists"
+msgstr "группа %s уже существует"
+
+#: ../nova/api/ec2/cloud.py:507
#, python-format
-msgid "No instance for id %s"
+msgid "Delete security group %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../nova/api/ec2/cloud.py:584
#, python-format
-msgid "Instance %s not found"
+msgid "Create volume of %s GB"
+msgstr "Создание раздела %s ГБ"
+
+#: ../nova/api/ec2/cloud.py:612
+#, python-format
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../nova/api/ec2/cloud.py:629
#, python-format
-msgid "no keypair for user %s, name %s"
+msgid "Detach volume %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#: ../nova/api/ec2/cloud.py:761
+msgid "Allocate address"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:766
#, python-format
-msgid "No network for id %s"
+msgid "Release address %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1036
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "No network for bridge %s"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../nova/api/ec2/cloud.py:780
#, python-format
-msgid "No network for instance %s"
+msgid "Disassociate address %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:807
+msgid "Going to start terminating instances"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../nova/api/ec2/cloud.py:815
#, python-format
-msgid "Token %s does not exist"
+msgid "Reboot instance %r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1205
+#: ../nova/api/ec2/cloud.py:867
#, python-format
-msgid "No quota for project_id %s"
+msgid "De-registering image %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1356
+#: ../nova/api/ec2/cloud.py:875
#, python-format
-msgid "No volume for id %s"
+msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1401
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
-msgid "Volume %s not found"
+msgid "attribute not supported: %s"
+msgstr "аттрибут не поддерживается: %s"
+
+#: ../nova/api/ec2/cloud.py:890
+#, python-format
+msgid "invalid id: %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:903
+msgid "user or group not specified"
+msgstr "не указан пользователь или группа"
+
+#: ../nova/api/ec2/cloud.py:905
+msgid "only group \"all\" is supported"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:907
+msgid "operation_type must be add or remove"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1413
+#: ../nova/api/ec2/cloud.py:908
#, python-format
-msgid "No export device found for volume %s"
+msgid "Updating image %s publicity"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1426
+#: ../bin/nova-api.py:52
#, python-format
-msgid "No target id found for volume %s"
+msgid "Using paste.deploy config at: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../bin/nova-api.py:57
#, python-format
-msgid "No security group with id %s"
+msgid "No paste configuration for app: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../bin/nova-api.py:59
#, python-format
-msgid "No security group named %s for project: %s"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../bin/nova-api.py:64
#, python-format
-msgid "No secuity group rule with id %s"
+msgid "Running %s API"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../bin/nova-api.py:69
#, python-format
-msgid "No user for id %s"
+msgid "No known API applications configured in %s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1666
+#: ../bin/nova-api.py:83
#, python-format
-msgid "No user for access key %s"
+msgid "Starting nova-api node (version %s)"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#: ../bin/nova-api.py:89
#, python-format
-msgid "No project with id %s"
+msgid "No paste configuration found for: %s"
msgstr ""
-#: nova/image/glance.py:78
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
+msgid "Argument %(key)s value %(value)s is too short."
msgstr ""
-#: nova/image/glance.py:97
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""
-#: nova/image/s3.py:82
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "Image %s could not be found"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""
-#: nova/network/api.py:39
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
+msgid "Argument %s is required."
msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
+#, python-format
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
msgstr ""
-#: nova/network/linux_net.py:176
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "Starting VLAN inteface %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-#: nova/network/linux_net.py:186
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "Starting Bridge interface for %s"
+msgid "Attempted to create non-unique name %s"
msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "Hupping dnsmasq threw %s"
+msgid "instance %(name)s: not enough free memory"
msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
+msgid "Starting VM %s..."
msgstr ""
-#: nova/network/linux_net.py:334
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "Killing dnsmasq threw %s"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""
-#: nova/network/manager.py:135
-msgid "setting network host"
+#: ../nova/virt/xenapi/vmops.py:162
+#, python-format
+msgid "Invalid value for onset_files: '%s'"
msgstr ""
-#: nova/network/manager.py:190
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "Leasing IP %s"
+msgid "Injecting file path: '%s'"
msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid "Instance %s: booted"
msgstr ""
-#: nova/network/manager.py:197
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
+msgid "Instance not present %s"
msgstr ""
-#: nova/network/manager.py:205
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid "Starting snapshot for VM %s"
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "IP %s released that isn't associated"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid "Finished snapshot and upload for VM %s"
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/virt/xenapi/vmops.py:356
#, python-format
-msgid "IP %s released that was not leased"
+msgid "VM %(vm)s already halted, skipping shutdown..."
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/virt/xenapi/vmops.py:564
#, python-format
-msgid "Unknown S3 value type %r"
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
msgstr ""
-#: nova/objectstore/handler.py:137
-msgid "Authenticated request"
+#: ../nova/virt/xenapi/vmops.py:569
+#, python-format
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/objectstore/handler.py:182
-msgid "List of buckets requested"
+#: ../nova/virt/xenapi/vmops.py:760
+#, python-format
+msgid "OpenSSL error: %s"
msgstr ""
-#: nova/objectstore/handler.py:209
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "List keys for bucket %s"
+msgid "Running instances: %s"
msgstr ""
-#: nova/objectstore/handler.py:217
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "Unauthorized attempt to access bucket %s"
+msgid "After terminating instances: %s"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
msgstr ""
-#: nova/objectstore/handler.py:235
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "Creating bucket %s"
+msgid "Launching VPN for %s"
+msgstr "Запуск VPN для %s"
+
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
msgstr ""
-#: nova/objectstore/handler.py:245
+#: ../nova/image/s3.py:99
#, python-format
-msgid "Deleting bucket %s"
+msgid "Image %s could not be found"
msgstr ""
-#: nova/objectstore/handler.py:249
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr "Слишком много неудачных попыток аутентификации."
+
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "Unauthorized attempt to delete bucket %s"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
msgstr ""
-#: nova/objectstore/handler.py:271
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "Getting object: %s / %s"
-msgstr "Получение объекта: %s / %s"
+msgid "Authentication Failure: %s"
+msgstr "Ошибка аутентификации: %s"
-#: nova/objectstore/handler.py:274
+#: ../nova/api/ec2/__init__.py:182
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "Putting object: %s / %s"
-msgstr "Вставка объекта: %s / %s"
+msgid "action: %s"
+msgstr "действие: %s"
-#: nova/objectstore/handler.py:295
+#: ../nova/api/ec2/__init__.py:209
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""
-#: nova/objectstore/handler.py:314
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "Deleting object: %s / %s"
-msgstr "Удаление объекта: %s / %s"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
+msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Not authorized to upload image: invalid directory %s"
+msgid "InstanceNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:401
+#: ../nova/api/ec2/__init__.py:320
#, python-format
-msgid "Not authorized to upload image: unauthorized bucket %s"
+msgid "VolumeNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:406
+#: ../nova/api/ec2/__init__.py:326
#, python-format
-msgid "Starting image upload: %s"
+msgid "NotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:420
+#: ../nova/api/ec2/__init__.py:329
#, python-format
-msgid "Not authorized to update attributes of image %s"
+msgid "ApiError raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:428
+#: ../nova/api/ec2/__init__.py:338
#, python-format
-msgid "Toggling publicity flag of image %s %r"
+msgid "Unexpected error raised: %s"
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
msgstr ""
+"Произошла неизвестная ошибка. Пожалуйста, попытайтесь повторить ваш запрос."
-#: nova/objectstore/handler.py:433
+#: ../nova/auth/dbdriver.py:84
#, python-format
-msgid "Updating user fields on image %s"
+msgid "User %s already exists"
+msgstr "Пользователь %s уже существует"
+
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
+#, python-format
+msgid "Project can't be created because manager %s doesn't exist"
+msgstr "Проект не может быть создан поскольку менеджер %s не существует"
+
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
+#, python-format
+msgid "Project can't be created because user %s doesn't exist"
+msgstr "Проект не может быть создан поскольку пользователь %s не существует"
+
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
+#, python-format
+msgid "Project can't be created because project %s already exists"
+msgstr "Проект не может быть созан поскольку проект %s уже существует"
+
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
+#, python-format
+msgid "Project can't be modified because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:447
+#: ../nova/auth/dbdriver.py:245
#, python-format
-msgid "Unauthorized attempt to delete image %s"
+msgid "User \"%s\" not found"
+msgstr "Пользователь \"%s\" не существует"
+
+#: ../nova/auth/dbdriver.py:248
+#, python-format
+msgid "Project \"%s\" not found"
+msgstr "Проект \"%s\" не найден"
+
+#: ../nova/virt/xenapi_conn.py:129
+msgid ""
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
msgstr ""
-#: nova/objectstore/handler.py:452
+#: ../nova/virt/xenapi_conn.py:311
#, python-format
-msgid "Deleted image: %s"
-msgstr "Удаленное изображение: %s"
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
+msgstr ""
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
+#: ../nova/virt/xenapi_conn.py:317
+#, python-format
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
msgstr ""
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
+#, python-format
+msgid "Got exception: %s"
msgstr ""
-#: nova/scheduler/manager.py:69
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "updating %s..."
+msgstr "обновление %s..."
+
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
+msgstr "неожиданная ошибка во время обновления"
+
+#: ../nova/compute/monitor.py:356
+#, python-format
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
+#: ../nova/compute/monitor.py:379
+#, python-format
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
msgstr ""
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
+#: ../nova/compute/monitor.py:429
+#, python-format
+msgid "Found instance: %s"
msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
+#: ../nova/volume/san.py:67
+#, python-format
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-#: nova/tests/test_cloud.py:210
+#: ../nova/api/ec2/apirequest.py:100
#, python-format
-msgid "Need to watch instance %s until it's running..."
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""
-#: nova/tests/test_compute.py:104
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Running instances: %s"
+msgid "Caught error: %s"
+msgstr ""
+
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
msgstr ""
-#: nova/tests/test_compute.py:110
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
+msgstr ""
+
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "After terminating instances: %s"
+msgid "Re-wrote %s"
msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
+msgstr ""
+
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
+msgstr ""
+
+#: ../nova/console/xvp.py:141
#, python-format
-msgid "Nested received %s, %s"
+msgid "Error starting xvp: %s"
+msgstr ""
+
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
+msgstr ""
+
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
+msgstr ""
+
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
+msgstr ""
+
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
+msgstr ""
+
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
+msgstr ""
+
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../bin/nova-manage.py:448
+msgid "IP address"
+msgstr ""
+
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
+msgstr ""
+
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
-msgid "Nested return %s"
+msgid "Failed to load partition: %s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/virt/disk.py:91
#, python-format
-msgid "Received %s"
-msgstr "Получено %s"
+msgid "Failed to mount filesystem: %s"
+msgstr "Ошибка монтирования файловой системы: %s"
-#: nova/tests/test_volume.py:162
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Target %s allocated"
+msgid "nbd device %s did not show up"
msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
+#: ../nova/virt/disk.py:128
+#, python-format
+msgid "Could not attach image to loopback: %s"
+msgstr ""
+
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
msgstr ""
-#: nova/virt/fake.py:210
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "Instance %s Not Found"
+msgid "%(filename)s, line %(line_info)d"
msgstr ""
-#: nova/virt/hyperv.py:118
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr "Запускается VM %s "
-#: nova/virt/hyperv.py:150
+#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr "Запущен VM %s "
-#: nova/virt/hyperv.py:152
+#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
-#, python-format
-msgid "Created VM %s..."
-msgstr ""
-
-#: nova/virt/hyperv.py:188
+#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:198
+#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""
-#: nova/virt/hyperv.py:227
+#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr "Создан диск для %s"
-#: nova/virt/hyperv.py:253
+#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:272
+#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "Created switch port %s on switch %s"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "Del: disk %s vm %s"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "duplicate name found: %s"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "Successfully changed vm state of %s to %s"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/compute/api.py:71
#, python-format
-msgid "Failed to change vm state of %s to %s"
+msgid "Instance %d was not found in get_network_topic"
msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Finished retreving %s -- placed in %s"
+msgid "Instance %d has no host"
msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Connecting to libvirt: %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
+#: ../nova/compute/api.py:99
+#, python-format
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""
-#: nova/virt/libvirt_conn.py:229
-#, python-format
-msgid "instance %s: deleting instance files %s"
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
msgstr ""
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/compute/api.py:160
#, python-format
-msgid "No disk at %s"
-msgstr "Нет диска в %s"
-
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+msgid "Going to run %s instances..."
msgstr ""
-#: nova/virt/libvirt_conn.py:294
+#: ../nova/compute/api.py:187
#, python-format
-msgid "instance %s: rebooted"
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:297
+#: ../nova/compute/api.py:292
#, python-format
-msgid "_wait_for_reboot failed: %s"
+msgid "Going to try to terminate %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:340
+#: ../nova/compute/api.py:296
#, python-format
-msgid "instance %s: rescued"
+msgid "Instance %d was not found during terminate"
msgstr ""
-#: nova/virt/libvirt_conn.py:343
+#: ../nova/compute/api.py:301
#, python-format
-msgid "_wait_for_rescue failed: %s"
+msgid "Instance %d is already being terminated"
msgstr ""
-#: nova/virt/libvirt_conn.py:370
+#: ../nova/compute/api.py:481
#, python-format
-msgid "instance %s: is running"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
msgstr ""
-#: nova/virt/libvirt_conn.py:381
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
+msgstr ""
+
+#: ../nova/rpc.py:98
#, python-format
-msgid "instance %s: booted"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
msgstr ""
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
+#: ../nova/rpc.py:103
#, python-format
-msgid "instance %s: failed to boot"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgstr "Не удалось подключиться к серверу AMQP после %d попыток. Выключение."
+
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr "Переподлючено к очереди"
+
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr "Не удалось получить сообщение из очереди"
+
+#: ../nova/rpc.py:159
+#, python-format
+msgid "Initing the Adapter Consumer for %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:395
+#: ../nova/rpc.py:178
#, python-format
-msgid "virsh said: %r"
+msgid "received %s"
+msgstr "получено %s"
+
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
+#, python-format
+msgid "no method for message: %s"
+msgstr "не определен метод для сообщения: %s"
+
+#: ../nova/rpc.py:192
+#, python-format
+msgid "No method for message: %s"
+msgstr "Не определен метод для сообщения: %s"
+
+#: ../nova/rpc.py:253
+#, python-format
+msgid "Returning exception %s to caller"
msgstr ""
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
+#: ../nova/rpc.py:294
+#, python-format
+msgid "unpacked context: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:407
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
+msgstr "Выполняется асинхронный вызов..."
+
+#: ../nova/rpc.py:316
#, python-format
-msgid "data: %r, fpath: %r"
+msgid "MSG_ID is %s"
+msgstr "MSG_ID is %s"
+
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
msgstr ""
-#: nova/virt/libvirt_conn.py:415
+#: ../nova/rpc.py:364
+#, python-format
+msgid "response %s"
+msgstr "ответ %s"
+
+#: ../nova/rpc.py:373
+#, python-format
+msgid "topic is %s"
+msgstr "тема %s"
+
+#: ../nova/rpc.py:374
+#, python-format
+msgid "message %s"
+msgstr "сообщение %s"
+
+#: ../nova/volume/driver.py:78
#, python-format
-msgid "Contents of file %s: %r"
+msgid "Recovering from a failed execute. Try number %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:449
+#: ../nova/volume/driver.py:87
#, python-format
-msgid "instance %s: Creating image"
+msgid "volume group %s doesn't exist"
msgstr ""
-#: nova/virt/libvirt_conn.py:505
+#: ../nova/volume/driver.py:220
#, python-format
-msgid "instance %s: injecting key into image %s"
+msgid "FAKE AOE: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:508
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
#, python-format
-msgid "instance %s: injecting net into image %s"
+msgid "FAKE ISCSI: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:516
+#: ../nova/volume/driver.py:359
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
+msgid "rbd has no pool %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
+#: ../nova/volume/driver.py:414
#, python-format
-msgid "instance %s: starting toXML method"
+msgid "Sheepdog is not working: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
msgstr ""
-#: nova/virt/libvirt_conn.py:589
+#: ../nova/wsgi.py:68
#, python-format
-msgid "instance %s: finished toXML method"
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
+msgstr ""
+
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
+
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
msgstr ""
-#: nova/virt/xenapi_conn.py:113
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:123
+#, python-format
msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
+msgstr ""
+
+#: ../nova/virt/fake.py:239
+#, python-format
+msgid "Instance %s Not Found"
msgstr ""
-#: nova/virt/xenapi_conn.py:263
+#: ../nova/network/manager.py:153
#, python-format
-msgid "Task [%s] %s status: success %s"
+msgid "Dissassociated %s stale fixed ip(s)"
+msgstr ""
+
+#: ../nova/network/manager.py:157
+msgid "setting network host"
msgstr ""
-#: nova/virt/xenapi_conn.py:271
+#: ../nova/network/manager.py:212
#, python-format
-msgid "Task [%s] %s status: %s %s"
+msgid "Leasing IP %s"
msgstr ""
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
+#: ../nova/network/manager.py:216
#, python-format
-msgid "Got exception: %s"
+msgid "IP %s leased that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:72
+#: ../nova/network/manager.py:220
#, python-format
-msgid "%s: _db_content => %s"
-msgstr "%s: _db_content => %s"
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
+msgstr ""
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
+#: ../nova/network/manager.py:228
+#, python-format
+msgid "IP %s leased that was already deallocated"
msgstr ""
-#: nova/virt/xenapi/fake.py:249
+#: ../nova/network/manager.py:233
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
+msgid "Releasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:283
+#: ../nova/network/manager.py:237
#, python-format
-msgid "Calling %s %s"
-msgstr "Звонок %s %s"
+msgid "IP %s released that isn't associated"
+msgstr ""
-#: nova/virt/xenapi/fake.py:288
+#: ../nova/network/manager.py:241
#, python-format
-msgid "Calling getter %s"
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:340
+#: ../nova/network/manager.py:244
#, python-format
+msgid "IP %s released that was not leased"
+msgstr ""
+
+#: ../nova/network/manager.py:519
msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:40
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Found non-unique network for bridge %s"
+msgid "Introducing %s..."
msgstr ""
-#: nova/virt/xenapi/network_utils.py:43
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Found no network for bridge %s"
+msgid "Introduced %(label)s as %(sr_ref)s."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:127
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Created VM %s as %s."
+msgid "Unable to find SR from VBD %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:147
+#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
+msgid "Forgetting SR %s ... "
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:149
+#: ../nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:165
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "VBD not found in instance %s"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:175
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Unable to unplug VBD %s"
+msgid "Forgetting SR %s done."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:187
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Unable to destroy VBD %s"
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:202
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "Creating VIF for VM %s, network %s."
+msgid "Unable to introduce VDI on SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:205
+#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
+msgid "Unable to get record of VDI %s on"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:216
+#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
+msgid "Unable to introduce VDI for SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:229
+#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Created snapshot %s from VM %s."
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:243
+#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
+msgid "Mountpoint cannot be translated: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:261
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "Asking xapi to fetch %s as %s"
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:279
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "Looking up vdi %s for PV kernel"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:290
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:318
+#: ../nova/objectstore/handler.py:106
#, python-format
-msgid "VDI %s is still available"
+msgid "Unknown S3 value type %r"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:137
+msgid "Authenticated request"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:331
+#: ../nova/objectstore/handler.py:182
+msgid "List of buckets requested"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:209
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgid "List keys for bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:333
+#: ../nova/objectstore/handler.py:217
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgid "Unauthorized attempt to access bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:390
+#: ../nova/objectstore/handler.py:235
#, python-format
-msgid "VHD %s has parent %s"
+msgid "Creating bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:407
+#: ../nova/objectstore/handler.py:245
#, python-format
-msgid "Re-scanning SR %s"
+msgid "Deleting bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:431
+#: ../nova/objectstore/handler.py:249
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+msgid "Unauthorized attempt to delete bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:448
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "No VDIs found for VM %s"
+msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:452
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:62
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Attempted to create non-unique name %s"
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:99
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "Starting VM %s..."
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:101
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "Spawning VM %s created %s."
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:112
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "Instance %s: booted"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:137
+#: ../nova/objectstore/handler.py:396
#, python-format
-msgid "Instance not present %s"
+msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:166
+#: ../nova/objectstore/handler.py:404
#, python-format
-msgid "Starting snapshot for VM %s"
+msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:174
+#: ../nova/objectstore/handler.py:409
#, python-format
-msgid "Unable to Snapshot %s: %s"
+msgid "Starting image upload: %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:184
+#: ../nova/objectstore/handler.py:423
#, python-format
-msgid "Finished snapshot and upload for VM %s"
+msgid "Not authorized to update attributes of image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:252
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "suspend: instance not present %s"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""
-#: nova/virt/xenapi/vmops.py:262
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
-msgid "resume: instance not present %s"
+msgid "Updating user fields on image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:271
+#: ../nova/objectstore/handler.py:450
#, python-format
-msgid "Instance not found %s"
+msgid "Unauthorized attempt to delete image %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:57
+#: ../nova/objectstore/handler.py:455
#, python-format
-msgid "Introducing %s..."
+msgid "Deleted image: %s"
+msgstr "Удаленное изображение: %s"
+
+#: ../nova/auth/manager.py:259
+#, python-format
+msgid "Looking up user: %r"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:74
+#: ../nova/auth/manager.py:263
#, python-format
-msgid "Introduced %s as %s."
+msgid "Failed authorization for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
+#: ../nova/auth/manager.py:264
+#, python-format
+msgid "No user found for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:90
+#: ../nova/auth/manager.py:270
#, python-format
-msgid "Unable to find SR from VBD %s"
+msgid "Using project name = user name (%s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:96
+#: ../nova/auth/manager.py:277
#, python-format
-msgid "Forgetting SR %s ... "
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:101
+#: ../nova/auth/manager.py:279
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
+msgid "No project called %s could be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:107
+#: ../nova/auth/manager.py:287
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:111
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "Forgetting SR %s done."
+msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:113
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
+#, python-format
+msgid "Invalid signature for user %s"
+msgstr "Не допустимая подпись для пользователя %s"
+
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
+msgstr "Подпись не совпадает"
+
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
+msgstr "Необходимо указать проект"
+
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
+msgid "The %s role can not be found"
+msgstr "Роль %s не может быть найдена"
+
+#: ../nova/auth/manager.py:416
+#, python-format
+msgid "The %s role is global only"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:123
+#: ../nova/auth/manager.py:420
#, python-format
-msgid "Unable to introduce VDI on SR %s"
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:128
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Unable to get record of VDI %s on"
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:146
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Unable to introduce VDI for SR %s"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:175
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Unable to obtain target information %s, %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:197
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Mountpoint cannot be translated: %s"
+msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:51
+#: ../nova/auth/manager.py:533
#, python-format
-msgid "Attach_volume: %s, %s, %s"
+msgid "modifying project %s"
+msgstr "изменение проекта %s"
+
+#: ../nova/auth/manager.py:545
+#, python-format
+msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:69
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
+msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:81
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Unable to use SR %s for instance %s"
+msgid "Deleting project %s"
+msgstr "Удаление проекта %s"
+
+#: ../nova/auth/manager.py:650
+#, python-format
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:93
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Unable to attach volume to instance %s"
+msgid "Deleting user %s"
+msgstr "Удаление пользователя %s"
+
+#: ../nova/auth/manager.py:669
+#, python-format
+msgid "Access Key change for user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:95
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Mountpoint %s attached to instance %s"
+msgid "Secret Key change for user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:106
+#: ../nova/auth/manager.py:673
#, python-format
-msgid "Detach_volume: %s, %s"
+msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:113
+#: ../nova/auth/manager.py:722
#, python-format
-msgid "Unable to locate volume %s"
+msgid "No vpn data for project %s"
+msgstr "Нет vpn данных для проекта %s"
+
+#: ../nova/service.py:161
+#, python-format
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
+msgstr ""
+
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
+msgstr ""
+
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr "Объект сервиса в базе данных отсутствует, Повторное создание."
+
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:121
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr ""
+
+#: ../nova/auth/ldapdriver.py:174
#, python-format
-msgid "Unable to detach volume %s"
+msgid "LDAP user %s already exists"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:128
+#: ../nova/auth/ldapdriver.py:205
+#, python-format
+msgid "LDAP object for %s doesn't exist"
+msgstr "Объект LDAP %s не существует"
+
+#: ../nova/auth/ldapdriver.py:348
#, python-format
-msgid "Mountpoint %s detached from instance %s"
+msgid "User %s doesn't exist"
msgstr ""
-#: nova/volume/api.py:44
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
+msgid "Group can't be created because group %s already exists"
msgstr ""
-#: nova/volume/api.py:46
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
+msgid "Group can't be created because user %s doesn't exist"
msgstr ""
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
+#: ../nova/auth/ldapdriver.py:495
+#, python-format
+msgid "User %s can't be searched in group because the user doesn't exist"
msgstr ""
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
+#: ../nova/auth/ldapdriver.py:507
+#, python-format
+msgid "User %s can't be added to the group because the user doesn't exist"
msgstr ""
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
+#, python-format
+msgid "The group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:76
+#: ../nova/auth/ldapdriver.py:513
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
msgstr ""
-#: nova/volume/driver.py:85
+#: ../nova/auth/ldapdriver.py:524
#, python-format
-msgid "volume group %s doesn't exist"
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
msgstr ""
-#: nova/volume/driver.py:210
+#: ../nova/auth/ldapdriver.py:528
#, python-format
-msgid "FAKE AOE: %s"
+msgid "User %s is not a member of the group"
msgstr ""
-#: nova/volume/driver.py:315
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "FAKE ISCSI: %s"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
msgstr ""
-#: nova/volume/manager.py:85
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "Re-exporting %s volumes"
+msgid "User %s can't be removed from all because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:93
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "volume %s: creating"
+msgid "Group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:102
+#: ../nova/virt/xenapi/network_utils.py:40
#, python-format
-msgid "volume %s: creating lv of size %sG"
+msgid "Found non-unique network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:106
+#: ../nova/virt/xenapi/network_utils.py:43
#, python-format
-msgid "volume %s: creating export"
+msgid "Found no network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:113
+#: ../nova/api/ec2/admin.py:97
#, python-format
-msgid "volume %s: created successfully"
+msgid "Creating new user: %s"
+msgstr "Создание нового пользователя: %s"
+
+#: ../nova/api/ec2/admin.py:105
+#, python-format
+msgid "Deleting user: %s"
+msgstr "Удаление пользователя: %s"
+
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
msgstr ""
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
+#: ../nova/api/ec2/admin.py:131
+#, python-format
+msgid "Adding sitewide role %(role)s to user %(user)s"
msgstr ""
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
+#: ../nova/api/ec2/admin.py:137
+#, python-format
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
msgstr ""
-#: nova/volume/manager.py:124
+#: ../nova/api/ec2/admin.py:141
#, python-format
-msgid "volume %s: removing export"
+msgid "Removing sitewide role %(role)s from user %(user)s"
msgstr ""
-#: nova/volume/manager.py:126
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:159
#, python-format
-msgid "volume %s: deleting"
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
msgstr ""
-#: nova/volume/manager.py:129
+#: ../nova/api/ec2/admin.py:177
#, python-format
-msgid "volume %s: deleted successfully"
+msgid "Create project %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:190
+#, python-format
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:200
+#, python-format
+msgid "Delete project: %s"
+msgstr "Удалить проект: %s"
+
+#: ../nova/api/ec2/admin.py:214
+#, python-format
+msgid "Adding user %(user)s to project %(project)s"
msgstr ""
+
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
+msgstr ""
+
+#, python-format
+#~ msgid "arg: %s\t\tval: %s"
+#~ msgstr "arg: %s\t\tval: %s"
+
+#, python-format
+#~ msgid "Adding role %s to user %s for project %s"
+#~ msgstr "Добавление роли %s для пользователя %s для проекта %s"
+
+#, python-format
+#~ msgid "Removing role %s from user %s for project %s"
+#~ msgstr "Удаление роли %s пользователя %s для проекта %s"
+
+#, python-format
+#~ msgid "Create project %s managed by %s"
+#~ msgstr "Создать проект %s под управлением %s"
+
+#, python-format
+#~ msgid "Removing user %s from project %s"
+#~ msgstr "Удаление пользователя %s с проекта %s"
+
+#, python-format
+#~ msgid "Adding user %s to project %s"
+#~ msgstr "Добавление пользователя %s к проекту %s"
+
+#, python-format
+#~ msgid "User %s is already a member of the group %s"
+#~ msgstr "Пользователь %s уже член группы %s"
+
+#, python-format
+#~ msgid "User %s is not a member of project %s"
+#~ msgstr "Пользователь %s не является членом группы %s"
+
+#, python-format
+#~ msgid "Created project %s with manager %s"
+#~ msgstr "Создан проект %s под управлением %s"
+
+#, python-format
+#~ msgid "Removing role %s from user %s on project %s"
+#~ msgstr "Удаление роли %s пользователя %s в проекте %s"
+
+#, python-format
+#~ msgid "Remove user %s from project %s"
+#~ msgstr "Удалить пользователя %s из проекта %s"
+
+#, python-format
+#~ msgid "Created user %s (admin: %r)"
+#~ msgstr "Создан пользователь %s (администратор: %r)"
+
+#, python-format
+#~ msgid "Adding role %s to user %s in project %s"
+#~ msgstr "Добавление роли %s для пользователя %s в проект %s"
+
+#, python-format
+#~ msgid "Getting object: %s / %s"
+#~ msgstr "Получение объекта: %s / %s"
+
+#, python-format
+#~ msgid "Deleting object: %s / %s"
+#~ msgstr "Удаление объекта: %s / %s"
+
+#, python-format
+#~ msgid "%s: _db_content => %s"
+#~ msgstr "%s: _db_content => %s"
+
+#, python-format
+#~ msgid "Calling %s %s"
+#~ msgstr "Звонок %s %s"
+
+#, python-format
+#~ msgid ""
+#~ "%s\n"
+#~ "Command: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+#~ msgstr ""
+#~ "%s\n"
+#~ "Команда: %s\n"
+#~ "Код завершения: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+
+#, python-format
+#~ msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+#~ msgstr "AMQP сервер %s:%d недоступен. Повторная попытка через %d секунд."
+
+#, python-format
+#~ msgid "Putting object: %s / %s"
+#~ msgstr "Вставка объекта: %s / %s"
+
+#, python-format
+#~ msgid "Starting %s node"
+#~ msgstr "Запускается нода %s"
+
+#, python-format
+#~ msgid "Data store %s is unreachable. Trying again in %d seconds."
+#~ msgstr "Хранилище данных %s недоступно. Повторная попытка через %d секунд."
+
+#, python-format
+#~ msgid "Couldn't get IP, using 127.0.0.1 %s"
+#~ msgstr "Не удалось получить IP, используем 127.0.0.1 %s"
+
+#, python-format
+#~ msgid "Getting from %s: %s"
+#~ msgstr "Получение из %s: %s"
+
+#, python-format
+#~ msgid ""
+#~ "Access key %s has had %d failed authentications and will be locked out for "
+#~ "%d minutes."
+#~ msgstr ""
+#~ "Ключ доступа %s имеет %d неудачных попыток аутентификации и будет "
+#~ "заблокирован на %d минут."
+
+#, python-format
+#~ msgid "Authenticated Request For %s:%s)"
+#~ msgstr "Запрос аутентификации для %s:%s)"
diff --git a/po/uk.po b/po/uk.po
index f3e217690..d28860c9b 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,2129 +7,2876 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
"PO-Revision-Date: 2011-02-03 22:02+0000\n"
"Last-Translator: Wladimir Rossinski <Unknown>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-05 05:36+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2011-03-19 06:19+0000\n"
+"X-Generator: Launchpad (build 12559)\n"
-#: nova/crypto.py:46
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr ""
+
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr "Неочікувана помилка при виконанні команди."
+
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
+
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
+
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr "Необроблене виключення"
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr ""
+
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
+msgstr ""
+
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr ""
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr ""
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:152
+#, python-format
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:238
+#, python-format
+msgid "Compute.api::lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:253
+#, python-format
+msgid "Compute.api::unlock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:267
+#, python-format
+msgid "Compute.api::get_lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:292
+#, python-format
+msgid "Compute.api::pause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:303
+#, python-format
+msgid "Compute.api::unpause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:314
+#, python-format
+msgid "compute.api::suspend %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:325
+#, python-format
+msgid "compute.api::resume %s"
+msgstr ""
+
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr ""
+
+#: ../nova/twistd.py:209
+#, python-format
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr ""
+
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr ""
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr "Обслуговування %s"
+
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr ""
+
+#: ../nova/twistd.py:266
+#, python-format
+msgid "Starting %s"
+msgstr "Запускається %s"
+
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
+#, python-format
+msgid "Instance %s not found"
+msgstr ""
+
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
+#, python-format
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:91
+#, python-format
+msgid "Unable to attach volume to instance %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr ""
+
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
+#, python-format
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:112
+#, python-format
+msgid "Unable to locate volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:120
+#, python-format
+msgid "Unable to detach volume %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:127
+#, python-format
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr ""
+
+#: ../nova/crypto.py:46
msgid "Filename of root CA"
msgstr ""
-#: nova/crypto.py:49
+#: ../nova/crypto.py:49
msgid "Filename of private key"
msgstr "Ім'я файлу секретного ключа"
-#: nova/crypto.py:51
+#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
msgstr ""
-#: nova/crypto.py:53
+#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr "Шлях до збережених ключів"
-#: nova/crypto.py:55
+#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr ""
-#: nova/crypto.py:57
+#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr ""
-#: nova/crypto.py:61
+#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr ""
-#: nova/crypto.py:66
+#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:71
+#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr ""
-#: nova/crypto.py:258
+#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr ""
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
-msgstr "Неочікувана помилка при виконанні команди."
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr ""
-#: nova/exception.py:36
+#: ../nova/compute/manager.py:78
#, python-format
-msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-msgstr ""
-"%s\n"
-"Команда: %s\n"
-"Код завершення: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-
-#: nova/exception.py:86
-msgid "Uncaught exception"
-msgstr "Необроблене виключення"
+msgid "check_instance_lock: decorating: |%s|"
+msgstr ""
-#: nova/fakerabbit.py:48
+#: ../nova/compute/manager.py:80
#, python-format
-msgid "(%s) publish (key: %s) %s"
+msgid ""
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
msgstr ""
-#: nova/fakerabbit.py:53
+#: ../nova/compute/manager.py:84
#, python-format
-msgid "Publishing to route %s"
+msgid "check_instance_lock: locked: |%s|"
msgstr ""
-#: nova/fakerabbit.py:83
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "Declaring queue %s"
-msgstr "Оголошення черги %s"
+msgid "check_instance_lock: admin: |%s|"
+msgstr ""
-#: nova/fakerabbit.py:89
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Declaring exchange %s"
-msgstr "Оголошення точки обміну %s"
+msgid "check_instance_lock: executing: |%s|"
+msgstr ""
-#: nova/fakerabbit.py:95
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Binding %s to %s with key %s"
+msgid "check_instance_lock: not executing |%s|"
+msgstr ""
+
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
msgstr ""
-#: nova/fakerabbit.py:120
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "Getting from %s: %s"
-msgstr "Отримання з %s: %s"
+msgid "instance %s: starting..."
+msgstr ""
-#: nova/rpc.py:92
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
-msgstr "AMQP сервер %s:%d недоступний. Спроба під'єднання через %d секунд."
+msgid "instance %s: Failed to spawn"
+msgstr ""
-#: nova/rpc.py:99
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
-msgstr "Не вдалось під'єднатися до серверу AMQP після %d спроб. Вимкнення."
+msgid "Terminating instance %s"
+msgstr ""
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
-msgstr "Оновлено з'єднання до черги"
+#: ../nova/compute/manager.py:255
+#, python-format
+msgid "Deallocating address %s"
+msgstr ""
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
+#: ../nova/compute/manager.py:268
+#, python-format
+msgid "trying to destroy already destroyed instance: %s"
msgstr ""
-#: nova/rpc.py:155
+#: ../nova/compute/manager.py:282
#, python-format
-msgid "Initing the Adapter Consumer for %s"
+msgid "Rebooting instance %s"
msgstr ""
-#: nova/rpc.py:170
+#: ../nova/compute/manager.py:287
#, python-format
-msgid "received %s"
-msgstr "отримано %s"
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
-#: nova/rpc.py:183
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "no method for message: %s"
-msgstr "без порядку для повідомлень: %s"
+msgid "instance %s: snapshotting"
+msgstr ""
-#: nova/rpc.py:184
+#: ../nova/compute/manager.py:316
#, python-format
-msgid "No method for message: %s"
-msgstr "Без порядку для повідомлень: %s"
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
-#: nova/rpc.py:245
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "Returning exception %s to caller"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
msgstr ""
-#: nova/rpc.py:286
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "unpacked context: %s"
+msgid "instance %s: setting admin password"
msgstr ""
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
-msgstr "Створення асинхронного виклику..."
+#: ../nova/compute/manager.py:353
+#, python-format
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
+msgstr ""
-#: nova/rpc.py:308
+#: ../nova/compute/manager.py:362
#, python-format
-msgid "MSG_ID is %s"
-msgstr "MSG_ID %s"
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
+msgstr ""
-#: nova/rpc.py:356
+#: ../nova/compute/manager.py:372
#, python-format
-msgid "response %s"
-msgstr "відповідь %s"
+msgid "instance %s: rescuing"
+msgstr ""
-#: nova/rpc.py:365
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "topic is %s"
-msgstr "заголовок %s"
+msgid "instance %s: unrescuing"
+msgstr ""
-#: nova/rpc.py:366
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "message %s"
-msgstr "повідомлення %s"
+msgid "instance %s: pausing"
+msgstr ""
-#: nova/service.py:157
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "Starting %s node"
+msgid "instance %s: unpausing"
msgstr ""
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
+#: ../nova/compute/manager.py:440
+#, python-format
+msgid "instance %s: retrieving diagnostics"
msgstr ""
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
+#: ../nova/compute/manager.py:453
+#, python-format
+msgid "instance %s: suspending"
msgstr ""
-#: nova/service.py:202
-msgid "Recovered model server connection!"
+#: ../nova/compute/manager.py:472
+#, python-format
+msgid "instance %s: resuming"
msgstr ""
-#: nova/service.py:208
-msgid "model server went away"
+#: ../nova/compute/manager.py:491
+#, python-format
+msgid "instance %s: locking"
msgstr ""
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/compute/manager.py:503
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
+msgid "instance %s: unlocking"
msgstr ""
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/compute/manager.py:513
#, python-format
-msgid "Serving %s"
-msgstr "Обслуговування %s"
+msgid "instance %s: getting locked state"
+msgstr ""
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
+#: ../nova/compute/manager.py:526
+#, python-format
+msgid "instance %s: reset network"
msgstr ""
-#: nova/twistd.py:211
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
+msgid "Get console output for instance %s"
msgstr ""
-#: nova/twistd.py:268
+#: ../nova/compute/manager.py:543
#, python-format
-msgid "Starting %s"
-msgstr "Запускається %s"
+msgid "instance %s: getting ajax console"
+msgstr ""
-#: nova/utils.py:53
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "Inner Exception: %s"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
msgstr ""
-#: nova/utils.py:54
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "Class %s cannot be found"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
msgstr ""
-#: nova/utils.py:113
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Fetching %s"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
msgstr ""
-#: nova/utils.py:125
+#: ../nova/compute/manager.py:588
#, python-format
-msgid "Running cmd (subprocess): %s"
+msgid "Detaching volume from unknown instance %s"
msgstr ""
-#: nova/utils.py:138
+#: ../nova/scheduler/simple.py:53
#, python-format
-msgid "Result was %s"
+msgid "Host %s is not alive"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
msgstr ""
-#: nova/utils.py:171
+#: ../nova/scheduler/simple.py:87
#, python-format
-msgid "debug in callback: %s"
+msgid "Host %s not available"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
msgstr ""
-#: nova/utils.py:176
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
+msgstr ""
+
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "Running %s"
-msgstr "Запускається %s"
+msgid "Re-exporting %s volumes"
+msgstr ""
-#: nova/utils.py:207
+#: ../nova/volume/manager.py:90
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
-msgstr "Не вдалось отримати IP, використовуючи 127.0.0.1 %s"
+msgid "volume %s: skipping export"
+msgstr ""
-#: nova/utils.py:289
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Invalid backend: %s"
+msgid "volume %s: creating"
msgstr ""
-#: nova/utils.py:300
+#: ../nova/volume/manager.py:108
#, python-format
-msgid "backend %s"
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
msgstr ""
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
-msgstr "Занадто багато невдалих аутентифікацій."
+#: ../nova/volume/manager.py:112
+#, python-format
+msgid "volume %s: creating export"
+msgstr ""
-#: nova/api/ec2/__init__.py:142
+#: ../nova/volume/manager.py:123
#, python-format
-msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
+msgid "volume %s: created successfully"
+msgstr ""
+
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
+msgstr ""
+
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
msgstr ""
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#: ../nova/volume/manager.py:136
#, python-format
-msgid "Authentication Failure: %s"
+msgid "volume %s: removing export"
msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/volume/manager.py:138
#, python-format
-msgid "Authenticated Request For %s:%s)"
+msgid "volume %s: deleting"
msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/volume/manager.py:147
#, python-format
-msgid "action: %s"
+msgid "volume %s: deleted successfully"
msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/virt/xenapi/fake.py:74
#, python-format
-msgid "arg: %s\t\tval: %s"
+msgid "%(text)s: _db_content => %(content)s"
msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:306
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
+msgid "xenapi.fake does not have an implementation for %s"
msgstr ""
-#: nova/api/ec2/__init__.py:339
+#: ../nova/virt/xenapi/fake.py:341
#, python-format
-msgid "NotFound raised: %s"
+msgid "Calling %(localname)s %(impl)s"
msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/virt/xenapi/fake.py:346
#, python-format
-msgid "ApiError raised: %s"
+msgid "Calling getter %s"
msgstr ""
-#: nova/api/ec2/__init__.py:349
+#: ../nova/virt/xenapi/fake.py:406
#, python-format
-msgid "Unexpected error raised: %s"
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
msgstr ""
-#: nova/api/ec2/admin.py:84
+#: ../nova/tests/test_cloud.py:268
#, python-format
-msgid "Creating new user: %s"
+msgid "Need to watch instance %s until it's running..."
msgstr ""
-#: nova/api/ec2/admin.py:92
-#, python-format
-msgid "Deleting user: %s"
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
msgstr ""
-#: nova/api/ec2/admin.py:114
+#: ../nova/network/linux_net.py:187
#, python-format
-msgid "Adding role %s to user %s for project %s"
+msgid "Starting VLAN inteface %s"
msgstr ""
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/network/linux_net.py:208
#, python-format
-msgid "Adding sitewide role %s to user %s"
+msgid "Starting Bridge interface for %s"
msgstr ""
-#: nova/api/ec2/admin.py:122
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
#, python-format
-msgid "Removing role %s from user %s for project %s"
+msgid "Hupping dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/network/linux_net.py:316
#, python-format
-msgid "Removing sitewide role %s from user %s"
+msgid "Pid %d is stale, relaunching dnsmasq"
msgstr ""
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
+#, python-format
+msgid "killing radvd threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/network/linux_net.py:360
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
+msgid "Pid %d is stale, relaunching radvd"
msgstr ""
-#: nova/api/ec2/admin.py:159
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
#, python-format
-msgid "Create project %s managed by %s"
+msgid "Killing dnsmasq threw %s"
msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/utils.py:58
#, python-format
-msgid "Delete project: %s"
-msgstr "Вилучити проект: %s"
+msgid "Inner Exception: %s"
+msgstr ""
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/utils.py:59
#, python-format
-msgid "Adding user %s to project %s"
-msgstr "Долучення користувача %s до проекту %s"
+msgid "Class %s cannot be found"
+msgstr ""
-#: nova/api/ec2/admin.py:188
+#: ../nova/utils.py:118
#, python-format
-msgid "Removing user %s from project %s"
-msgstr "Вилучення користувача %s з проекту %s"
+msgid "Fetching %s"
+msgstr ""
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/utils.py:130
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
+msgid "Running cmd (subprocess): %s"
msgstr ""
-#: nova/api/ec2/cloud.py:117
+#: ../nova/utils.py:143 ../nova/utils.py:183
#, python-format
-msgid "Generating root CA: %s"
+msgid "Result was %s"
msgstr ""
-#: nova/api/ec2/cloud.py:277
+#: ../nova/utils.py:159
#, python-format
-msgid "Create key pair %s"
+msgid "Running cmd (SSH): %s"
msgstr ""
-#: nova/api/ec2/cloud.py:285
+#: ../nova/utils.py:217
#, python-format
-msgid "Delete key pair %s"
+msgid "debug in callback: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:357
+#: ../nova/utils.py:222
#, python-format
-msgid "%s is not a valid ipProtocol"
-msgstr "%s не допустимий ipProtocol"
-
-#: nova/api/ec2/cloud.py:361
-msgid "Invalid port range"
-msgstr "Невірний діапазон портів"
+msgid "Running %s"
+msgstr "Запускається %s"
-#: nova/api/ec2/cloud.py:392
+#: ../nova/utils.py:262
#, python-format
-msgid "Revoke security group ingress %s"
+msgid "Link Local address is not found.:%s"
msgstr ""
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
-msgid "No rule for the specified parameters."
+#: ../nova/utils.py:265
+#, python-format
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
msgstr ""
-#: nova/api/ec2/cloud.py:421
+#: ../nova/utils.py:363
#, python-format
-msgid "Authorize security group ingress %s"
+msgid "Invalid backend: %s"
msgstr ""
-#: nova/api/ec2/cloud.py:432
+#: ../nova/utils.py:374
#, python-format
-msgid "This rule already exists in group %s"
-msgstr "Це правило вже існує в групі %s"
+msgid "backend %s"
+msgstr ""
-#: nova/api/ec2/cloud.py:460
+#: ../nova/fakerabbit.py:49
#, python-format
-msgid "Create Security Group %s"
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:463
+#: ../nova/fakerabbit.py:54
#, python-format
-msgid "group %s already exists"
+msgid "Publishing to route %s"
msgstr ""
-#: nova/api/ec2/cloud.py:475
+#: ../nova/fakerabbit.py:84
#, python-format
-msgid "Delete security group %s"
-msgstr "Вилучити групу безпеки %s"
+msgid "Declaring queue %s"
+msgstr "Оголошення черги %s"
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
+#: ../nova/fakerabbit.py:90
#, python-format
-msgid "Get console output for instance %s"
-msgstr ""
+msgid "Declaring exchange %s"
+msgstr "Оголошення точки обміну %s"
-#: nova/api/ec2/cloud.py:543
+#: ../nova/fakerabbit.py:96
#, python-format
-msgid "Create volume of %s GB"
-msgstr "Створити розділ на %s ГБ"
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:567
+#: ../nova/fakerabbit.py:121
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
+msgid "Getting from %(queue)s: %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:579
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
-msgid "Detach volume %s"
-msgstr "Від'єднати том %s"
+msgid "Created VM %s..."
+msgstr ""
-#: nova/api/ec2/cloud.py:686
-msgid "Allocate address"
+#: ../nova/virt/xenapi/vm_utils.py:138
+#, python-format
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:691
+#: ../nova/virt/xenapi/vm_utils.py:168
#, python-format
-msgid "Release address %s"
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
msgstr ""
-#: nova/api/ec2/cloud.py:696
+#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
-msgid "Associate address %s to instance %s"
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/virt/xenapi/vm_utils.py:187
#, python-format
-msgid "Disassociate address %s"
+msgid "VBD not found in instance %s"
msgstr ""
-#: nova/api/ec2/cloud.py:730
-msgid "Going to start terminating instances"
+#: ../nova/virt/xenapi/vm_utils.py:197
+#, python-format
+msgid "Unable to unplug VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:738
+#: ../nova/virt/xenapi/vm_utils.py:209
#, python-format
-msgid "Reboot instance %r"
+msgid "Unable to destroy VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:775
+#: ../nova/virt/xenapi/vm_utils.py:224
#, python-format
-msgid "De-registering image %s"
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:783
+#: ../nova/virt/xenapi/vm_utils.py:227
#, python-format
-msgid "Registered image %s with id %s"
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
-msgid "attribute not supported: %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:794
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "invalid id: %s"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
msgstr ""
-#: nova/api/ec2/cloud.py:807
-msgid "user or group not specified"
+#: ../nova/virt/xenapi/vm_utils.py:272
+#, python-format
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:809
-msgid "only group \"all\" is supported"
-msgstr "лише група \"всі\" підтримується"
+#: ../nova/virt/xenapi/vm_utils.py:286
+#, python-format
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:811
-msgid "operation_type must be add or remove"
+#: ../nova/virt/xenapi/vm_utils.py:327
+#, python-format
+msgid "Size for image %(image)s:%(virtual_size)d"
msgstr ""
-#: nova/api/ec2/cloud.py:812
+#: ../nova/virt/xenapi/vm_utils.py:332
#, python-format
-msgid "Updating image %s publicity"
+msgid "Glance image %s"
msgstr ""
-#: nova/api/ec2/metadatarequesthandler.py:75
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
#, python-format
-msgid "Failed to get metadata for ip: %s"
+msgid "Copying VDI %s to /boot/guest on dom0"
msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../nova/virt/xenapi/vm_utils.py:352
#, python-format
-msgid "Caught error: %s"
+msgid "Kernel/Ramdisk VDI %s destroyed"
msgstr ""
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
+#: ../nova/virt/xenapi/vm_utils.py:361
+#, python-format
+msgid "Asking xapi to fetch %(url)s as %(access)s"
msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
#, python-format
-msgid "Compute.api::lock %s"
+msgid "Looking up vdi %s for PV kernel"
msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid "Compute.api::unlock %s"
+msgid "PV Kernel in VDI:%s"
msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../nova/virt/xenapi/vm_utils.py:405
#, python-format
-msgid "Compute.api::get_lock %s"
+msgid "Running pygrub against %s"
msgstr ""
-#: nova/api/openstack/servers.py:224
+#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
-msgid "Compute.api::pause %s"
+msgid "Found Xen kernel %s"
msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
-msgid "Compute.api::unpause %s"
+msgid "duplicate name found: %s"
msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "compute.api::suspend %s"
+msgid "VDI %s is still available"
msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "compute.api::resume %s"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "User %s already exists"
-msgstr "Користувач %s вже існує"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../nova/virt/xenapi/vm_utils.py:525
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "Project can't be created because project %s already exists"
+msgid "Re-scanning SR %s"
msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
msgstr ""
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "User \"%s\" not found"
-msgstr "Користувач \"%s\" не знайдено"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
+msgstr ""
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vm_utils.py:590
#, python-format
-msgid "Project \"%s\" not found"
-msgstr "Проект \"%s\" не знайдено"
+msgid "No VDIs found for VM %s"
+msgstr ""
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
+#: ../nova/virt/xenapi/vm_utils.py:594
+#, python-format
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
msgstr ""
-#: nova/auth/ldapdriver.py:181
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
-msgid "LDAP object for %s doesn't exist"
+msgid "Creating VBD for VDI %s ... "
msgstr ""
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
+msgid "Creating VBD for VDI %s done."
msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
#, python-format
-msgid "User %s is already a member of the group %s"
+msgid "Plugging VBD %s ... "
msgstr ""
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
#, python-format
-msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+msgid "Plugging VBD %s done."
msgstr ""
-#: nova/auth/ldapdriver.py:528
+#: ../nova/virt/xenapi/vm_utils.py:661
#, python-format
-msgid "Group at dn %s doesn't exist"
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
msgstr ""
-#: nova/auth/manager.py:259
+#: ../nova/virt/xenapi/vm_utils.py:664
#, python-format
-msgid "Looking up user: %r"
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
msgstr ""
-#: nova/auth/manager.py:263
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
-msgid "Failed authorization for access key %s"
+msgid "Destroying VBD for VDI %s ... "
msgstr ""
-#: nova/auth/manager.py:264
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
-msgid "No user found for access key %s"
+msgid "Destroying VBD for VDI %s done."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
msgstr ""
-#: nova/auth/manager.py:270
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
-msgid "Using project name = user name (%s)"
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
msgstr ""
-#: nova/auth/manager.py:275
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
+msgid "Ignoring XenAPI.Failure %s"
msgstr ""
-#: nova/auth/manager.py:277
+#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
-msgid "No project called %s could be found"
+msgid ""
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/virt/xenapi/vm_utils.py:747
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "Writing partition table %s done."
msgstr ""
-#: nova/auth/manager.py:283
+#: ../nova/tests/test_rpc.py:89
#, python-format
-msgid "User %s is not a member of project %s"
+msgid "Nested received %(queue)s, %(value)s"
msgstr ""
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/tests/test_rpc.py:95
#, python-format
-msgid "Invalid signature for user %s"
+msgid "Nested return %s"
msgstr ""
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
+#, python-format
+msgid "Received %s"
msgstr ""
-#: nova/auth/manager.py:374
-msgid "Must specify project"
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
msgstr ""
-#: nova/auth/manager.py:408
+#: ../nova/db/sqlalchemy/api.py:133
#, python-format
-msgid "The %s role can not be found"
+msgid "No service for id %s"
msgstr ""
-#: nova/auth/manager.py:410
+#: ../nova/db/sqlalchemy/api.py:251
#, python-format
-msgid "The %s role is global only"
+msgid "No service for %(host)s, %(binary)s"
msgstr ""
-#: nova/auth/manager.py:412
-#, python-format
-msgid "Adding role %s to user %s in project %s"
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
msgstr ""
-#: nova/auth/manager.py:438
+#: ../nova/db/sqlalchemy/api.py:608
#, python-format
-msgid "Removing role %s from user %s on project %s"
+msgid "No floating ip for address %s"
msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/db/sqlalchemy/api.py:629
#, python-format
-msgid "Created project %s with manager %s"
+msgid "No address for instance %s"
msgstr ""
-#: nova/auth/manager.py:523
+#: ../nova/db/sqlalchemy/api.py:961
#, python-format
-msgid "modifying project %s"
+msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
#, python-format
-msgid "Remove user %s from project %s"
+msgid "No network for id %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
msgstr ""
-#: nova/auth/manager.py:581
+#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
-msgid "Deleting project %s"
+msgid "No network for bridge %s"
msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
#, python-format
-msgid "Created user %s (admin: %r)"
+msgid "No network for instance %s"
msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
-msgid "Deleting user %s"
+msgid "Token %s does not exist"
msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
-msgid "Access Key change for user %s"
+msgid "No quota for project_id %s"
msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
#, python-format
-msgid "Secret Key change for user %s"
+msgid "Volume %s not found"
msgstr ""
-#: nova/auth/manager.py:659
+#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
-msgid "Admin status set to %r for user %s"
+msgid "No export device found for volume %s"
msgstr ""
-#: nova/auth/manager.py:708
+#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
-msgid "No vpn data for project %s"
+msgid "No target id found for volume %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/db/sqlalchemy/api.py:1572
+#, python-format
+msgid "No security group with id %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:1589
+#, python-format
+msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:1682
+#, python-format
+msgid "No secuity group rule with id %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/db/sqlalchemy/api.py:1756
#, python-format
-msgid "Launching VPN for %s"
+msgid "No user for id %s"
msgstr ""
-#: nova/compute/api.py:67
+#: ../nova/db/sqlalchemy/api.py:1772
#, python-format
-msgid "Instance %d was not found in get_network_topic"
+msgid "No user for access key %s"
msgstr ""
-#: nova/compute/api.py:73
+#: ../nova/db/sqlalchemy/api.py:1834
#, python-format
-msgid "Instance %d has no host"
+msgid "No project with id %s"
msgstr ""
-#: nova/compute/api.py:92
+#: ../nova/db/sqlalchemy/api.py:1979
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
+msgid "No console pool with id %(pool_id)s"
msgstr ""
-#: nova/compute/api.py:94
+#: ../nova/db/sqlalchemy/api.py:1996
#, python-format
msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
msgstr ""
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
+#: ../nova/db/sqlalchemy/api.py:2035
+#, python-format
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/db/sqlalchemy/api.py:2057
#, python-format
-msgid "Going to run %s instances..."
+msgid "on instance %s"
msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
+msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""
-#: nova/compute/api.py:279
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
-msgid "Going to try and terminate %s"
+msgid "No zone with id %(zone_id)s"
msgstr ""
-#: nova/compute/api.py:283
+#: ../nova/virt/libvirt_conn.py:160
#, python-format
-msgid "Instance %d was not found during terminate"
+msgid "Checking state of %s"
msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/virt/libvirt_conn.py:165
#, python-format
-msgid "Instance %d is already being terminated"
+msgid "Current state of %(name)s was %(state)s."
msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/virt/libvirt_conn.py:183
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "Connecting to libvirt: %s"
msgstr ""
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/virt/libvirt_conn.py:258
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/virt/libvirt_conn.py:283
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "Invalid device path %s"
msgstr ""
-#: nova/compute/disk.py:128
+#: ../nova/virt/libvirt_conn.py:313
#, python-format
-msgid "Could not attach image to loopback: %s"
+msgid "No disk at %s"
msgstr ""
-#: nova/compute/disk.py:136
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:336
#, python-format
-msgid "Failed to load partition: %s"
+msgid "instance %s: rebooted"
msgstr ""
-#: nova/compute/disk.py:158
+#: ../nova/virt/libvirt_conn.py:339
#, python-format
-msgid "Failed to mount filesystem: %s"
+msgid "_wait_for_reboot failed: %s"
msgstr ""
-#: nova/compute/instance_types.py:41
+#: ../nova/virt/libvirt_conn.py:382
#, python-format
-msgid "Unknown instance type: %s"
+msgid "instance %s: rescued"
msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/virt/libvirt_conn.py:385
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
+msgid "_wait_for_rescue failed: %s"
msgstr ""
-#: nova/compute/manager.py:71
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "instance %s: is running"
msgstr ""
-#: nova/compute/manager.py:75
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "check_instance_lock: locked: |%s|"
+msgid "instance %s: booted"
msgstr ""
-#: nova/compute/manager.py:77
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid "check_instance_lock: admin: |%s|"
+msgid "instance %s: failed to boot"
msgstr ""
-#: nova/compute/manager.py:82
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "check_instance_lock: executing: |%s|"
+msgid "virsh said: %r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
msgstr ""
-#: nova/compute/manager.py:86
+#: ../nova/virt/libvirt_conn.py:448
#, python-format
-msgid "check_instance_lock: not executing |%s|"
+msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
+#: ../nova/virt/libvirt_conn.py:456
+#, python-format
+msgid "Contents of file %(fpath)s: %(contents)r"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
msgstr ""
-#: nova/compute/manager.py:158
+#: ../nova/virt/libvirt_conn.py:563
#, python-format
-msgid "instance %s: starting..."
+msgid "instance %s: Creating image"
msgstr ""
-#: nova/compute/manager.py:197
+#: ../nova/virt/libvirt_conn.py:646
#, python-format
-msgid "instance %s: Failed to spawn"
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
+#: ../nova/virt/libvirt_conn.py:649
#, python-format
-msgid "Terminating instance %s"
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:217
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
#, python-format
-msgid "Disassociating address %s"
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
msgstr ""
-#: nova/compute/manager.py:230
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
#, python-format
-msgid "Deallocating address %s"
+msgid "instance %s: starting toXML method"
msgstr ""
-#: nova/compute/manager.py:243
+#: ../nova/virt/libvirt_conn.py:732
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
+msgid "instance %s: finished toXML method"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
msgstr ""
-#: nova/compute/manager.py:257
+#: ../nova/virt/libvirt_conn.py:1225
#, python-format
-msgid "Rebooting instance %s"
+msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""
-#: nova/compute/manager.py:260
+#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Failed to get metadata for ip: %s"
+msgstr ""
+
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
msgstr ""
-#: nova/compute/manager.py:286
+#: ../nova/network/api.py:39
#, python-format
-msgid "instance %s: snapshotting"
+msgid "Quota exceeeded for %s, tried to allocate address"
+msgstr ""
+
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
msgstr ""
-#: nova/compute/manager.py:289
+#: ../nova/tests/test_volume.py:162
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Target %s allocated"
msgstr ""
-#: nova/compute/manager.py:301
+#: ../nova/virt/images.py:70
#, python-format
-msgid "instance %s: rescuing"
+msgid "Finished retreving %(url)s -- placed in %(path)s"
msgstr ""
-#: nova/compute/manager.py:316
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
+msgstr ""
+
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
#, python-format
-msgid "instance %s: unrescuing"
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
+
+#: ../nova/api/direct.py:149
+msgid "not available"
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/api/ec2/cloud.py:62
#, python-format
-msgid "instance %s: pausing"
+msgid "The key_pair %s already exists"
msgstr ""
-#: nova/compute/manager.py:352
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
-msgid "instance %s: unpausing"
+msgid "Generating root CA: %s"
msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/api/ec2/cloud.py:303
#, python-format
-msgid "instance %s: retrieving diagnostics"
+msgid "Create key pair %s"
msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/api/ec2/cloud.py:311
#, python-format
-msgid "instance %s: suspending"
+msgid "Delete key pair %s"
msgstr ""
-#: nova/compute/manager.py:401
+#: ../nova/api/ec2/cloud.py:386
#, python-format
-msgid "instance %s: resuming"
+msgid "%s is not a valid ipProtocol"
+msgstr "%s не допустимий ipProtocol"
+
+#: ../nova/api/ec2/cloud.py:390
+msgid "Invalid port range"
+msgstr "Невірний діапазон портів"
+
+#: ../nova/api/ec2/cloud.py:421
+#, python-format
+msgid "Revoke security group ingress %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
msgstr ""
-#: nova/compute/manager.py:420
+#: ../nova/api/ec2/cloud.py:443
+msgid "No rule for the specified parameters."
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:450
#, python-format
-msgid "instance %s: locking"
+msgid "Authorize security group ingress %s"
msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/api/ec2/cloud.py:464
#, python-format
-msgid "instance %s: unlocking"
+msgid "This rule already exists in group %s"
+msgstr "Це правило вже існує в групі %s"
+
+#: ../nova/api/ec2/cloud.py:492
+#, python-format
+msgid "Create Security Group %s"
msgstr ""
-#: nova/compute/manager.py:442
+#: ../nova/api/ec2/cloud.py:495
#, python-format
-msgid "instance %s: getting locked state"
+msgid "group %s already exists"
msgstr ""
-#: nova/compute/manager.py:462
+#: ../nova/api/ec2/cloud.py:507
#, python-format
-msgid "instance %s: attaching volume %s to %s"
+msgid "Delete security group %s"
+msgstr "Вилучити групу безпеки %s"
+
+#: ../nova/api/ec2/cloud.py:584
+#, python-format
+msgid "Create volume of %s GB"
+msgstr "Створити розділ на %s ГБ"
+
+#: ../nova/api/ec2/cloud.py:612
+#, python-format
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/api/ec2/cloud.py:629
#, python-format
-msgid "instance %s: attach failed %s, removing"
+msgid "Detach volume %s"
+msgstr "Від'єднати том %s"
+
+#: ../nova/api/ec2/cloud.py:761
+msgid "Allocate address"
msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/api/ec2/cloud.py:766
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
+msgid "Release address %s"
msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "Detaching volume from unknown instance %s"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/api/ec2/cloud.py:780
#, python-format
-msgid "updating %s..."
+msgid "Disassociate address %s"
msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
+#: ../nova/api/ec2/cloud.py:807
+msgid "Going to start terminating instances"
msgstr ""
-#: nova/compute/monitor.py:355
+#: ../nova/api/ec2/cloud.py:815
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
+msgid "Reboot instance %r"
msgstr ""
-#: nova/compute/monitor.py:377
+#: ../nova/api/ec2/cloud.py:867
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
+msgid "De-registering image %s"
msgstr ""
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
+#: ../nova/api/ec2/cloud.py:875
+#, python-format
+msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""
-#: nova/compute/monitor.py:427
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
-msgid "Found instance: %s"
+msgid "attribute not supported: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
+#: ../nova/api/ec2/cloud.py:890
+#, python-format
+msgid "invalid id: %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:903
+msgid "user or group not specified"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:905
+msgid "only group \"all\" is supported"
+msgstr "лише група \"всі\" підтримується"
+
+#: ../nova/api/ec2/cloud.py:907
+msgid "operation_type must be add or remove"
msgstr ""
-#: nova/db/sqlalchemy/api.py:132
+#: ../nova/api/ec2/cloud.py:908
#, python-format
-msgid "No service for id %s"
+msgid "Updating image %s publicity"
msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../bin/nova-api.py:52
#, python-format
-msgid "No service for %s, %s"
+msgid "Using paste.deploy config at: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../bin/nova-api.py:57
#, python-format
-msgid "No floating ip for address %s"
+msgid "No paste configuration for app: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../bin/nova-api.py:59
#, python-format
-msgid "No instance for id %s"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../bin/nova-api.py:64
#, python-format
-msgid "Instance %s not found"
+msgid "Running %s API"
msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../bin/nova-api.py:69
#, python-format
-msgid "no keypair for user %s, name %s"
+msgid "No known API applications configured in %s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#: ../bin/nova-api.py:83
#, python-format
-msgid "No network for id %s"
+msgid "Starting nova-api node (version %s)"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1036
+#: ../bin/nova-api.py:89
#, python-format
-msgid "No network for bridge %s"
+msgid "No paste configuration found for: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "No network for instance %s"
+msgid "Argument %(key)s value %(value)s is too short."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "Token %s does not exist"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1205
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "No quota for project_id %s"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1356
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "No volume for id %s"
+msgid "Argument %s is required."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1401
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "Volume %s not found"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1413
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "No export device found for volume %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1426
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "No target id found for volume %s"
+msgid "Attempted to create non-unique name %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "No security group with id %s"
+msgid "instance %(name)s: not enough free memory"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "No security group named %s for project: %s"
+msgid "Starting VM %s..."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "No secuity group rule with id %s"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "No user for id %s"
+msgid "Invalid value for onset_files: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1666
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "No user for access key %s"
+msgid "Injecting file path: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "No project with id %s"
+msgid "Instance %s: booted"
msgstr ""
-#: nova/image/glance.py:78
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
+msgid "Instance not present %s"
msgstr ""
-#: nova/image/glance.py:97
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid "Starting snapshot for VM %s"
msgstr ""
-#: nova/image/s3.py:82
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "Image %s could not be found"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""
-#: nova/network/api.py:39
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
+msgid "Finished snapshot and upload for VM %s"
msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../nova/virt/xenapi/vmops.py:356
+#, python-format
+msgid "VM %(vm)s already halted, skipping shutdown..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
+msgstr ""
+
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
msgstr ""
-#: nova/network/linux_net.py:176
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Starting VLAN inteface %s"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:186
+#: ../nova/virt/xenapi/vmops.py:564
#, python-format
-msgid "Starting Bridge interface for %s"
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "Hupping dnsmasq threw %s"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/virt/xenapi/vmops.py:760
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
+msgid "OpenSSL error: %s"
msgstr ""
-#: nova/network/linux_net.py:334
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "Killing dnsmasq threw %s"
+msgid "Running instances: %s"
msgstr ""
-#: nova/network/manager.py:135
-msgid "setting network host"
+#: ../nova/tests/test_compute.py:154
+#, python-format
+msgid "After terminating instances: %s"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
msgstr ""
-#: nova/network/manager.py:190
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "Leasing IP %s"
+msgid "Launching VPN for %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/image/s3.py:99
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid "Image %s could not be found"
msgstr ""
-#: nova/network/manager.py:197
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr "Занадто багато невдалих аутентифікацій."
+
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
msgstr ""
-#: nova/network/manager.py:205
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid "Authentication Failure: %s"
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/api/ec2/__init__.py:182
#, python-format
-msgid "IP %s released that isn't associated"
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid "action: %s"
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/api/ec2/__init__.py:209
#, python-format
-msgid "IP %s released that was not leased"
+msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/api/ec2/__init__.py:314
#, python-format
-msgid "Unknown S3 value type %r"
+msgid "InstanceNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:137
-msgid "Authenticated request"
+#: ../nova/api/ec2/__init__.py:320
+#, python-format
+msgid "VolumeNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:182
-msgid "List of buckets requested"
+#: ../nova/api/ec2/__init__.py:326
+#, python-format
+msgid "NotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:209
+#: ../nova/api/ec2/__init__.py:329
#, python-format
-msgid "List keys for bucket %s"
+msgid "ApiError raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:217
+#: ../nova/api/ec2/__init__.py:338
#, python-format
-msgid "Unauthorized attempt to access bucket %s"
+msgid "Unexpected error raised: %s"
+msgstr ""
+
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
msgstr ""
-#: nova/objectstore/handler.py:235
+#: ../nova/auth/dbdriver.py:84
#, python-format
-msgid "Creating bucket %s"
+msgid "User %s already exists"
+msgstr "Користувач %s вже існує"
+
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
+#, python-format
+msgid "Project can't be created because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:245
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
-msgid "Deleting bucket %s"
+msgid "Project can't be created because user %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:249
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
-msgid "Unauthorized attempt to delete bucket %s"
+msgid "Project can't be created because project %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:271
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Getting object: %s / %s"
+msgid "Project can't be modified because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/auth/dbdriver.py:245
+#, python-format
+msgid "User \"%s\" not found"
+msgstr "Користувач \"%s\" не знайдено"
+
+#: ../nova/auth/dbdriver.py:248
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "Project \"%s\" not found"
+msgstr "Проект \"%s\" не знайдено"
+
+#: ../nova/virt/xenapi_conn.py:129
+msgid ""
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/virt/xenapi_conn.py:311
#, python-format
-msgid "Putting object: %s / %s"
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
msgstr ""
-#: nova/objectstore/handler.py:314
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Deleting object: %s / %s"
+msgid "Got exception: %s"
msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Not authorized to upload image: invalid directory %s"
+msgid "updating %s..."
msgstr ""
-#: nova/objectstore/handler.py:401
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
+msgstr ""
+
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Not authorized to upload image: unauthorized bucket %s"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:406
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Starting image upload: %s"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:420
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
+msgstr ""
+
+#: ../nova/compute/monitor.py:429
#, python-format
-msgid "Not authorized to update attributes of image %s"
+msgid "Found instance: %s"
msgstr ""
-#: nova/objectstore/handler.py:428
+#: ../nova/volume/san.py:67
#, python-format
-msgid "Toggling publicity flag of image %s %r"
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-#: nova/objectstore/handler.py:433
+#: ../nova/api/ec2/apirequest.py:100
#, python-format
-msgid "Updating user fields on image %s"
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""
-#: nova/objectstore/handler.py:447
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Unauthorized attempt to delete image %s"
+msgid "Caught error: %s"
+msgstr ""
+
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
msgstr ""
-#: nova/objectstore/handler.py:452
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
+msgstr ""
+
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Deleted image: %s"
+msgid "Re-wrote %s"
msgstr ""
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
msgstr ""
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
msgstr ""
-#: nova/scheduler/manager.py:69
+#: ../nova/console/xvp.py:141
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "Error starting xvp: %s"
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
msgstr ""
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
msgstr ""
-#: nova/tests/test_cloud.py:210
-#, python-format
-msgid "Need to watch instance %s until it's running..."
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
msgstr ""
-#: nova/tests/test_compute.py:104
-#, python-format
-msgid "Running instances: %s"
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
msgstr ""
-#: nova/tests/test_compute.py:110
-#, python-format
-msgid "After terminating instances: %s"
+#: ../bin/nova-manage.py:448
+msgid "IP address"
+msgstr ""
+
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
+msgstr ""
+
+#: ../bin/nova-manage.py:451
+msgid "host"
msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
-msgid "Nested received %s, %s"
+msgid "Failed to load partition: %s"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../nova/virt/disk.py:91
#, python-format
-msgid "Nested return %s"
+msgid "Failed to mount filesystem: %s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Received %s"
+msgid "nbd device %s did not show up"
msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "Target %s allocated"
+msgid "Could not attach image to loopback: %s"
msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
msgstr ""
-#: nova/virt/fake.py:210
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "Instance %s Not Found"
+msgid "%(filename)s, line %(line_info)d"
msgstr ""
-#: nova/virt/hyperv.py:118
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr ""
-#: nova/virt/hyperv.py:152
+#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
-#, python-format
-msgid "Created VM %s..."
-msgstr ""
-
-#: nova/virt/hyperv.py:188
+#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:198
+#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""
-#: nova/virt/hyperv.py:227
+#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:272
+#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "Created switch port %s on switch %s"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "Del: disk %s vm %s"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "duplicate name found: %s"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "Successfully changed vm state of %s to %s"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/compute/api.py:71
#, python-format
-msgid "Failed to change vm state of %s to %s"
+msgid "Instance %d was not found in get_network_topic"
msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Finished retreving %s -- placed in %s"
+msgid "Instance %d has no host"
msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Connecting to libvirt: %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
+#: ../nova/compute/api.py:99
+#, python-format
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""
-#: nova/virt/libvirt_conn.py:229
-#, python-format
-msgid "instance %s: deleting instance files %s"
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
msgstr ""
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/compute/api.py:160
#, python-format
-msgid "No disk at %s"
+msgid "Going to run %s instances..."
msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+#: ../nova/compute/api.py:187
+#, python-format
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:294
+#: ../nova/compute/api.py:292
#, python-format
-msgid "instance %s: rebooted"
+msgid "Going to try to terminate %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:297
+#: ../nova/compute/api.py:296
#, python-format
-msgid "_wait_for_reboot failed: %s"
+msgid "Instance %d was not found during terminate"
msgstr ""
-#: nova/virt/libvirt_conn.py:340
+#: ../nova/compute/api.py:301
#, python-format
-msgid "instance %s: rescued"
+msgid "Instance %d is already being terminated"
msgstr ""
-#: nova/virt/libvirt_conn.py:343
+#: ../nova/compute/api.py:481
#, python-format
-msgid "_wait_for_rescue failed: %s"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgstr ""
+
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
msgstr ""
-#: nova/virt/libvirt_conn.py:370
+#: ../nova/rpc.py:98
#, python-format
-msgid "instance %s: is running"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
msgstr ""
-#: nova/virt/libvirt_conn.py:381
+#: ../nova/rpc.py:103
#, python-format
-msgid "instance %s: booted"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgstr "Не вдалось під'єднатися до серверу AMQP після %d спроб. Вимкнення."
+
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr "Оновлено з'єднання до черги"
+
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
msgstr ""
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
+#: ../nova/rpc.py:159
#, python-format
-msgid "instance %s: failed to boot"
+msgid "Initing the Adapter Consumer for %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:395
+#: ../nova/rpc.py:178
#, python-format
-msgid "virsh said: %r"
+msgid "received %s"
+msgstr "отримано %s"
+
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
+#, python-format
+msgid "no method for message: %s"
+msgstr "без порядку для повідомлень: %s"
+
+#: ../nova/rpc.py:192
+#, python-format
+msgid "No method for message: %s"
+msgstr "Без порядку для повідомлень: %s"
+
+#: ../nova/rpc.py:253
+#, python-format
+msgid "Returning exception %s to caller"
msgstr ""
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
+#: ../nova/rpc.py:294
+#, python-format
+msgid "unpacked context: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:407
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
+msgstr "Створення асинхронного виклику..."
+
+#: ../nova/rpc.py:316
#, python-format
-msgid "data: %r, fpath: %r"
+msgid "MSG_ID is %s"
+msgstr "MSG_ID %s"
+
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
msgstr ""
-#: nova/virt/libvirt_conn.py:415
+#: ../nova/rpc.py:364
#, python-format
-msgid "Contents of file %s: %r"
+msgid "response %s"
+msgstr "відповідь %s"
+
+#: ../nova/rpc.py:373
+#, python-format
+msgid "topic is %s"
+msgstr "заголовок %s"
+
+#: ../nova/rpc.py:374
+#, python-format
+msgid "message %s"
+msgstr "повідомлення %s"
+
+#: ../nova/volume/driver.py:78
+#, python-format
+msgid "Recovering from a failed execute. Try number %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:449
+#: ../nova/volume/driver.py:87
#, python-format
-msgid "instance %s: Creating image"
+msgid "volume group %s doesn't exist"
msgstr ""
-#: nova/virt/libvirt_conn.py:505
+#: ../nova/volume/driver.py:220
#, python-format
-msgid "instance %s: injecting key into image %s"
+msgid "FAKE AOE: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
msgstr ""
-#: nova/virt/libvirt_conn.py:508
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
#, python-format
-msgid "instance %s: injecting net into image %s"
+msgid "FAKE ISCSI: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:516
+#: ../nova/volume/driver.py:359
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
+msgid "rbd has no pool %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
+#: ../nova/volume/driver.py:414
#, python-format
-msgid "instance %s: starting toXML method"
+msgid "Sheepdog is not working: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:589
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
+msgstr ""
+
+#: ../nova/wsgi.py:68
#, python-format
-msgid "instance %s: finished toXML method"
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
msgstr ""
-#: nova/virt/xenapi_conn.py:113
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
+
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:123
+#, python-format
msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
+msgstr ""
+
+#: ../nova/virt/fake.py:239
+#, python-format
+msgid "Instance %s Not Found"
msgstr ""
-#: nova/virt/xenapi_conn.py:263
+#: ../nova/network/manager.py:153
#, python-format
-msgid "Task [%s] %s status: success %s"
+msgid "Dissassociated %s stale fixed ip(s)"
msgstr ""
-#: nova/virt/xenapi_conn.py:271
+#: ../nova/network/manager.py:157
+msgid "setting network host"
+msgstr ""
+
+#: ../nova/network/manager.py:212
#, python-format
-msgid "Task [%s] %s status: %s %s"
+msgid "Leasing IP %s"
msgstr ""
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
+#: ../nova/network/manager.py:216
#, python-format
-msgid "Got exception: %s"
+msgid "IP %s leased that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:72
+#: ../nova/network/manager.py:220
#, python-format
-msgid "%s: _db_content => %s"
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
+#: ../nova/network/manager.py:228
+#, python-format
+msgid "IP %s leased that was already deallocated"
msgstr ""
-#: nova/virt/xenapi/fake.py:249
+#: ../nova/network/manager.py:233
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
+msgid "Releasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:283
+#: ../nova/network/manager.py:237
#, python-format
-msgid "Calling %s %s"
+msgid "IP %s released that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:288
+#: ../nova/network/manager.py:241
#, python-format
-msgid "Calling getter %s"
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:340
+#: ../nova/network/manager.py:244
#, python-format
+msgid "IP %s released that was not leased"
+msgstr ""
+
+#: ../nova/network/manager.py:519
msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:40
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Found non-unique network for bridge %s"
+msgid "Introducing %s..."
msgstr ""
-#: nova/virt/xenapi/network_utils.py:43
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Found no network for bridge %s"
+msgid "Introduced %(label)s as %(sr_ref)s."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:127
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Created VM %s as %s."
+msgid "Unable to find SR from VBD %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:147
+#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
+msgid "Forgetting SR %s ... "
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:149
+#: ../nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:165
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "VBD not found in instance %s"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:175
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Unable to unplug VBD %s"
+msgid "Forgetting SR %s done."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:187
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Unable to destroy VBD %s"
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:202
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "Creating VIF for VM %s, network %s."
+msgid "Unable to introduce VDI on SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:205
+#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
+msgid "Unable to get record of VDI %s on"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:216
+#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
+msgid "Unable to introduce VDI for SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:229
+#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Created snapshot %s from VM %s."
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:243
+#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
+msgid "Mountpoint cannot be translated: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:261
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "Asking xapi to fetch %s as %s"
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:279
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "Looking up vdi %s for PV kernel"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:290
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:318
+#: ../nova/objectstore/handler.py:106
#, python-format
-msgid "VDI %s is still available"
+msgid "Unknown S3 value type %r"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:137
+msgid "Authenticated request"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:182
+msgid "List of buckets requested"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:331
+#: ../nova/objectstore/handler.py:209
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgid "List keys for bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:333
+#: ../nova/objectstore/handler.py:217
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgid "Unauthorized attempt to access bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:390
+#: ../nova/objectstore/handler.py:235
#, python-format
-msgid "VHD %s has parent %s"
+msgid "Creating bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:407
+#: ../nova/objectstore/handler.py:245
#, python-format
-msgid "Re-scanning SR %s"
+msgid "Deleting bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:431
+#: ../nova/objectstore/handler.py:249
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+msgid "Unauthorized attempt to delete bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:448
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "No VDIs found for VM %s"
+msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:452
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:62
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Attempted to create non-unique name %s"
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:99
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "Starting VM %s..."
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:101
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "Spawning VM %s created %s."
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:112
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "Instance %s: booted"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:137
+#: ../nova/objectstore/handler.py:396
#, python-format
-msgid "Instance not present %s"
+msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:166
+#: ../nova/objectstore/handler.py:404
#, python-format
-msgid "Starting snapshot for VM %s"
+msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:174
+#: ../nova/objectstore/handler.py:409
#, python-format
-msgid "Unable to Snapshot %s: %s"
+msgid "Starting image upload: %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:184
+#: ../nova/objectstore/handler.py:423
#, python-format
-msgid "Finished snapshot and upload for VM %s"
+msgid "Not authorized to update attributes of image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:252
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "suspend: instance not present %s"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""
-#: nova/virt/xenapi/vmops.py:262
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
-msgid "resume: instance not present %s"
+msgid "Updating user fields on image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:271
+#: ../nova/objectstore/handler.py:450
#, python-format
-msgid "Instance not found %s"
+msgid "Unauthorized attempt to delete image %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:57
+#: ../nova/objectstore/handler.py:455
#, python-format
-msgid "Introducing %s..."
+msgid "Deleted image: %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:74
+#: ../nova/auth/manager.py:259
#, python-format
-msgid "Introduced %s as %s."
+msgid "Looking up user: %r"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
+#: ../nova/auth/manager.py:263
+#, python-format
+msgid "Failed authorization for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:90
+#: ../nova/auth/manager.py:264
#, python-format
-msgid "Unable to find SR from VBD %s"
+msgid "No user found for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:96
+#: ../nova/auth/manager.py:270
#, python-format
-msgid "Forgetting SR %s ... "
+msgid "Using project name = user name (%s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:101
+#: ../nova/auth/manager.py:277
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:107
+#: ../nova/auth/manager.py:279
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
+msgid "No project called %s could be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:111
+#: ../nova/auth/manager.py:287
#, python-format
-msgid "Forgetting SR %s done."
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:113
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
+msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:123
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
-msgid "Unable to introduce VDI on SR %s"
+msgid "Invalid signature for user %s"
+msgstr ""
+
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
+msgstr ""
+
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:128
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "Unable to get record of VDI %s on"
+msgid "The %s role can not be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:146
+#: ../nova/auth/manager.py:416
#, python-format
-msgid "Unable to introduce VDI for SR %s"
+msgid "The %s role is global only"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:175
+#: ../nova/auth/manager.py:420
#, python-format
-msgid "Unable to obtain target information %s, %s"
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:197
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Mountpoint cannot be translated: %s"
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:51
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Attach_volume: %s, %s, %s"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:69
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:81
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Unable to use SR %s for instance %s"
+msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:93
+#: ../nova/auth/manager.py:533
#, python-format
-msgid "Unable to attach volume to instance %s"
+msgid "modifying project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:95
+#: ../nova/auth/manager.py:545
#, python-format
-msgid "Mountpoint %s attached to instance %s"
+msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:106
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Detach_volume: %s, %s"
+msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:113
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Unable to locate volume %s"
+msgid "Deleting project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:121
+#: ../nova/auth/manager.py:650
#, python-format
-msgid "Unable to detach volume %s"
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:128
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Mountpoint %s detached from instance %s"
+msgid "Deleting user %s"
msgstr ""
-#: nova/volume/api.py:44
+#: ../nova/auth/manager.py:669
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
+msgid "Access Key change for user %s"
msgstr ""
-#: nova/volume/api.py:46
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
+msgid "Secret Key change for user %s"
msgstr ""
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
+#: ../nova/auth/manager.py:673
+#, python-format
+msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
+#: ../nova/auth/manager.py:722
+#, python-format
+msgid "No vpn data for project %s"
msgstr ""
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
+#: ../nova/service.py:161
+#, python-format
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
msgstr ""
-#: nova/volume/driver.py:76
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
+msgstr ""
+
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
+msgstr ""
+
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
+msgstr ""
+
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr ""
+
+#: ../nova/auth/ldapdriver.py:174
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
+msgid "LDAP user %s already exists"
msgstr ""
-#: nova/volume/driver.py:85
+#: ../nova/auth/ldapdriver.py:205
#, python-format
-msgid "volume group %s doesn't exist"
+msgid "LDAP object for %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:210
+#: ../nova/auth/ldapdriver.py:348
#, python-format
-msgid "FAKE AOE: %s"
+msgid "User %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:315
+#: ../nova/auth/ldapdriver.py:472
#, python-format
-msgid "FAKE ISCSI: %s"
+msgid "Group can't be created because group %s already exists"
msgstr ""
-#: nova/volume/manager.py:85
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Re-exporting %s volumes"
+msgid "Group can't be created because user %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:93
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "volume %s: creating"
+msgid "User %s can't be searched in group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:102
+#: ../nova/auth/ldapdriver.py:507
#, python-format
-msgid "volume %s: creating lv of size %sG"
+msgid "User %s can't be added to the group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:106
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
#, python-format
-msgid "volume %s: creating export"
+msgid "The group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:113
+#: ../nova/auth/ldapdriver.py:513
#, python-format
-msgid "volume %s: created successfully"
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
msgstr ""
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
+#: ../nova/auth/ldapdriver.py:524
+#, python-format
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
+#: ../nova/auth/ldapdriver.py:528
+#, python-format
+msgid "User %s is not a member of the group"
msgstr ""
-#: nova/volume/manager.py:124
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "volume %s: removing export"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
msgstr ""
-#: nova/volume/manager.py:126
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "volume %s: deleting"
+msgid "User %s can't be removed from all because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:129
+#: ../nova/auth/ldapdriver.py:564
#, python-format
-msgid "volume %s: deleted successfully"
+msgid "Group at dn %s doesn't exist"
+msgstr ""
+
+#: ../nova/virt/xenapi/network_utils.py:40
+#, python-format
+msgid "Found non-unique network for bridge %s"
+msgstr ""
+
+#: ../nova/virt/xenapi/network_utils.py:43
+#, python-format
+msgid "Found no network for bridge %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:97
+#, python-format
+msgid "Creating new user: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:105
+#, python-format
+msgid "Deleting user: %s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:131
+#, python-format
+msgid "Adding sitewide role %(role)s to user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:137
+#, python-format
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:141
+#, python-format
+msgid "Removing sitewide role %(role)s from user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:159
+#, python-format
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
msgstr ""
+
+#: ../nova/api/ec2/admin.py:177
+#, python-format
+msgid "Create project %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:190
+#, python-format
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:200
+#, python-format
+msgid "Delete project: %s"
+msgstr "Вилучити проект: %s"
+
+#: ../nova/api/ec2/admin.py:214
+#, python-format
+msgid "Adding user %(user)s to project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
+msgstr ""
+
+#, python-format
+#~ msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+#~ msgstr "AMQP сервер %s:%d недоступний. Спроба під'єднання через %d секунд."
+
+#, python-format
+#~ msgid "Couldn't get IP, using 127.0.0.1 %s"
+#~ msgstr "Не вдалось отримати IP, використовуючи 127.0.0.1 %s"
+
+#, python-format
+#~ msgid "Removing user %s from project %s"
+#~ msgstr "Вилучення користувача %s з проекту %s"
+
+#, python-format
+#~ msgid "Adding user %s to project %s"
+#~ msgstr "Долучення користувача %s до проекту %s"
+
+#, python-format
+#~ msgid ""
+#~ "%s\n"
+#~ "Command: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+#~ msgstr ""
+#~ "%s\n"
+#~ "Команда: %s\n"
+#~ "Код завершення: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+
+#, python-format
+#~ msgid "Getting from %s: %s"
+#~ msgstr "Отримання з %s: %s"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index a39383497..9690356f5 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,2129 +7,2934 @@ msgid ""
msgstr ""
"Project-Id-Version: nova\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-10 11:25-0800\n"
-"PO-Revision-Date: 2011-02-14 02:26+0000\n"
-"Last-Translator: Winston Dillon <Unknown>\n"
+"POT-Creation-Date: 2011-02-21 10:03-0500\n"
+"PO-Revision-Date: 2011-04-07 05:01+0000\n"
+"Last-Translator: ben <Unknown>\n"
"Language-Team: Chinese (Simplified) <zh_CN@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-02-15 05:12+0000\n"
-"X-Generator: Launchpad (build 12351)\n"
+"X-Launchpad-Export-Date: 2011-04-08 05:28+0000\n"
+"X-Generator: Launchpad (build 12735)\n"
-#: nova/twistd.py:268
+#: ../nova/twistd.py:266
#, python-format
msgid "Starting %s"
-msgstr "正在启动 %s"
+msgstr "启动 %s 中"
-#: nova/crypto.py:46
+#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
+#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
+#: ../nova/scheduler/simple.py:122
+msgid "No hosts found"
+msgstr "未找到主机"
+
+#: ../nova/exception.py:33
+msgid "Unexpected error while running command."
+msgstr "运行命令时出现错误"
+
+#: ../nova/exception.py:36
+#, python-format
+msgid ""
+"%(description)s\n"
+"Command: %(cmd)s\n"
+"Exit code: %(exit_code)s\n"
+"Stdout: %(stdout)r\n"
+"Stderr: %(stderr)r"
+msgstr ""
+
+#: ../nova/exception.py:107
+msgid "DB exception wrapped"
+msgstr ""
+
+#. exc_type, exc_value, exc_traceback = sys.exc_info()
+#: ../nova/exception.py:120
+msgid "Uncaught exception"
+msgstr "未捕获异常"
+
+#: ../nova/volume/api.py:45
+#, python-format
+msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
+msgstr ""
+
+#: ../nova/volume/api.py:47
+#, python-format
+msgid "Volume quota exceeded. You cannot create a volume of size %sG"
+msgstr "卷磁盘配额已耗尽,不能创建 %sG 大小的卷"
+
+#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
+msgid "Volume status must be available"
+msgstr "卷组状态必须可获取"
+
+#: ../nova/volume/api.py:98
+msgid "Volume is already attached"
+msgstr "卷已挂载"
+
+#: ../nova/volume/api.py:104
+msgid "Volume is already detached"
+msgstr "卷已卸载"
+
+#: ../nova/api/openstack/servers.py:72
+msgid "Failed to read private ip"
+msgstr "获取内网IP失败"
+
+#: ../nova/api/openstack/servers.py:79
+msgid "Failed to read public ip(s)"
+msgstr "获取外网IP失败"
+
+#: ../nova/api/openstack/servers.py:152
+#, python-format
+msgid "%(param)s property not found for image %(_image_id)s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:168
+msgid "No keypairs defined"
+msgstr "未定义密钥对"
+
+#: ../nova/api/openstack/servers.py:238
+#, python-format
+msgid "Compute.api::lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:253
+#, python-format
+msgid "Compute.api::unlock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:267
+#, python-format
+msgid "Compute.api::get_lock %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:281
+#, python-format
+msgid "Compute.api::reset_network %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:292
+#, python-format
+msgid "Compute.api::pause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:303
+#, python-format
+msgid "Compute.api::unpause %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:314
+#, python-format
+msgid "compute.api::suspend %s"
+msgstr ""
+
+#: ../nova/api/openstack/servers.py:325
+#, python-format
+msgid "compute.api::resume %s"
+msgstr ""
+
+#: ../nova/twistd.py:157
+msgid "Wrong number of arguments."
+msgstr "错误参数个数。"
+
+#: ../nova/twistd.py:209
+#, python-format
+msgid "pidfile %s does not exist. Daemon not running?\n"
+msgstr "pidfile %s 不存在,守护进程是否运行?\n"
+
+#: ../nova/twistd.py:221
+msgid "No such process"
+msgstr "没有该进程"
+
+#: ../nova/twistd.py:230 ../nova/service.py:224
+#, python-format
+msgid "Serving %s"
+msgstr "正在为 %s 服务"
+
+#: ../nova/twistd.py:262 ../nova/service.py:225
+msgid "Full set of FLAGS:"
+msgstr "FLAGS全集:"
+
+#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
+#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
+#: ../nova/api/ec2/__init__.py:317
+#, python-format
+msgid "Instance %s not found"
+msgstr ""
+
+#. NOTE: No Resource Pool concept so far
+#: ../nova/virt/xenapi/volumeops.py:51
+#, python-format
+msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:69
+#, python-format
+msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:80
+#, python-format
+msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/volumeops.py:91
+#, python-format
+msgid "Unable to attach volume to instance %s"
+msgstr "无法挂载卷到虚拟机 %s"
+
+#: ../nova/virt/xenapi/volumeops.py:93
+#, python-format
+msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
+msgstr "挂载点 %(mountpoint)s 挂载到虚拟机 %(instance_name)s"
+
+#. Detach VBD from VM
+#: ../nova/virt/xenapi/volumeops.py:104
+#, python-format
+msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
+msgstr "卸载_volume: %(instance_name)s, %(mountpoint)s"
+
+#: ../nova/virt/xenapi/volumeops.py:112
+#, python-format
+msgid "Unable to locate volume %s"
+msgstr "无法找到 %s 卷"
+
+#: ../nova/virt/xenapi/volumeops.py:120
+#, python-format
+msgid "Unable to detach volume %s"
+msgstr "无法卸载 %s 卷"
+
+#: ../nova/virt/xenapi/volumeops.py:127
+#, python-format
+msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
+msgstr "挂载点 %(mountpoint)s 从虚拟机 %(instance_name)s 卸载"
+
+#: ../nova/compute/instance_types.py:41
+#, python-format
+msgid "Unknown instance type: %s"
+msgstr "未知的虚拟机类型:%s"
+
+#: ../nova/crypto.py:46
msgid "Filename of root CA"
msgstr "根证书文件名"
-#: nova/crypto.py:49
+#: ../nova/crypto.py:49
msgid "Filename of private key"
msgstr "私钥文件名"
-#: nova/crypto.py:51
+#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
msgstr ""
-#: nova/crypto.py:53
+#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr "保存密钥的位置"
-#: nova/crypto.py:55
+#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr "保存根证书的位置"
-#: nova/crypto.py:57
+#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr "是否所有项目都是用证书授权(CA)?"
-#: nova/crypto.py:61
+#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr "用户证书的标题,%s依次分别为项目,用户,时间戳"
-#: nova/crypto.py:66
+#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr "项目证书的标题,%s依次分别为项目,时间戳"
-#: nova/crypto.py:71
+#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr "VPN证书的标题,%s依次分别为项目,时间戳"
-#: nova/crypto.py:258
+#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr "Flag所在路径:%s"
-#: nova/exception.py:33
-msgid "Unexpected error while running command."
-msgstr "运行命令时出现了意外错误。"
+#: ../nova/scheduler/manager.py:69
+#, python-format
+msgid "Casting to %(topic)s %(host)s for %(method)s"
+msgstr ""
-#: nova/exception.py:36
+#: ../nova/compute/manager.py:78
+#, python-format
+msgid "check_instance_lock: decorating: |%s|"
+msgstr ""
+
+#: ../nova/compute/manager.py:80
#, python-format
msgid ""
-"%s\n"
-"Command: %s\n"
-"Exit code: %s\n"
-"Stdout: %r\n"
-"Stderr: %r"
-msgstr ""
-"%s\n"
-"命令:%s\n"
-"退出代码:%s\n"
-"标准输出(stdout):%r\n"
-"标准错误(stderr):%r"
-
-#: nova/exception.py:86
-msgid "Uncaught exception"
-msgstr "未捕获异常"
+"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
+msgstr ""
-#: nova/fakerabbit.py:48
+#: ../nova/compute/manager.py:84
#, python-format
-msgid "(%s) publish (key: %s) %s"
-msgstr "(%s)发布(键值:%s)%s"
+msgid "check_instance_lock: locked: |%s|"
+msgstr ""
-#: nova/fakerabbit.py:53
+#: ../nova/compute/manager.py:86
#, python-format
-msgid "Publishing to route %s"
-msgstr "发布并路由到 %s"
+msgid "check_instance_lock: admin: |%s|"
+msgstr ""
-#: nova/fakerabbit.py:83
+#: ../nova/compute/manager.py:91
#, python-format
-msgid "Declaring queue %s"
-msgstr "正在声明队列%s"
+msgid "check_instance_lock: executing: |%s|"
+msgstr ""
-#: nova/fakerabbit.py:89
+#: ../nova/compute/manager.py:95
#, python-format
-msgid "Declaring exchange %s"
-msgstr "正在声明交换(exchange)%s"
+msgid "check_instance_lock: not executing |%s|"
+msgstr ""
-#: nova/fakerabbit.py:95
+#: ../nova/compute/manager.py:179
+msgid "Instance has already been created"
+msgstr "虚拟机已经创建"
+
+#: ../nova/compute/manager.py:180
#, python-format
-msgid "Binding %s to %s with key %s"
-msgstr "将%s绑定到%s(以%s键值)"
+msgid "instance %s: starting..."
+msgstr "虚拟机 %s :启动"
-#: nova/fakerabbit.py:120
+#. pylint: disable=W0702
+#: ../nova/compute/manager.py:219
#, python-format
-msgid "Getting from %s: %s"
-msgstr "从%s获得如下内容:%s"
+msgid "instance %s: Failed to spawn"
+msgstr ""
-#: nova/rpc.py:92
+#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
-msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
-msgstr "位于%s:%d的AMQP服务器不可用。%d秒后重试。"
+msgid "Terminating instance %s"
+msgstr ""
-#: nova/rpc.py:99
+#: ../nova/compute/manager.py:255
#, python-format
-msgid "Unable to connect to AMQP server after %d tries. Shutting down."
-msgstr "已尝试%d次,均无法连接到AMQP服务器。关闭中。"
+msgid "Deallocating address %s"
+msgstr ""
-#: nova/rpc.py:118
-msgid "Reconnected to queue"
-msgstr "重新与队列建立连接"
+#: ../nova/compute/manager.py:268
+#, python-format
+msgid "trying to destroy already destroyed instance: %s"
+msgstr ""
-#: nova/rpc.py:125
-msgid "Failed to fetch message from queue"
-msgstr "从队列获取数据失败"
+#: ../nova/compute/manager.py:282
+#, python-format
+msgid "Rebooting instance %s"
+msgstr "重启虚拟机 %s"
-#: nova/rpc.py:155
+#: ../nova/compute/manager.py:287
#, python-format
-msgid "Initing the Adapter Consumer for %s"
+msgid ""
+"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
msgstr ""
-#: nova/rpc.py:170
+#: ../nova/compute/manager.py:311
#, python-format
-msgid "received %s"
-msgstr "已接收 %s"
+msgid "instance %s: snapshotting"
+msgstr ""
-#: nova/rpc.py:183
+#: ../nova/compute/manager.py:316
#, python-format
-msgid "no method for message: %s"
-msgstr "没有适用于消息%s的方法"
+msgid ""
+"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
+"expected: %(running)s)"
+msgstr ""
-#: nova/rpc.py:184
+#: ../nova/compute/manager.py:332
#, python-format
-msgid "No method for message: %s"
-msgstr "没有适用于消息%s的方法"
+msgid ""
+"trying to reset the password on a non-running instance: %(instance_id)s "
+"(state: %(instance_state)s expected: %(expected_state)s)"
+msgstr ""
-#: nova/rpc.py:245
+#: ../nova/compute/manager.py:335
#, python-format
-msgid "Returning exception %s to caller"
-msgstr "返回%s异常给调用者"
+msgid "instance %s: setting admin password"
+msgstr "虚拟机 %s:设置管理员密码"
-#: nova/rpc.py:286
+#: ../nova/compute/manager.py:353
#, python-format
-msgid "unpacked context: %s"
+msgid ""
+"trying to inject a file into a non-running instance: %(instance_id)s (state: "
+"%(instance_state)s expected: %(expected_state)s)"
msgstr ""
-#: nova/rpc.py:305
-msgid "Making asynchronous call..."
-msgstr "产生异步调用中……"
+#: ../nova/compute/manager.py:362
+#, python-format
+msgid "instance %(nm)s: injecting file to %(plain_path)s"
+msgstr ""
-#: nova/rpc.py:308
+#: ../nova/compute/manager.py:372
#, python-format
-msgid "MSG_ID is %s"
-msgstr "消息ID(MSG_ID)是 %s"
+msgid "instance %s: rescuing"
+msgstr ""
-#: nova/rpc.py:356
+#: ../nova/compute/manager.py:387
#, python-format
-msgid "response %s"
-msgstr "回复 %s"
+msgid "instance %s: unrescuing"
+msgstr ""
-#: nova/rpc.py:365
+#: ../nova/compute/manager.py:406
#, python-format
-msgid "topic is %s"
-msgstr "话题是 %s"
+msgid "instance %s: pausing"
+msgstr ""
-#: nova/rpc.py:366
+#: ../nova/compute/manager.py:423
#, python-format
-msgid "message %s"
-msgstr "消息 %s"
+msgid "instance %s: unpausing"
+msgstr ""
-#: nova/service.py:157
+#: ../nova/compute/manager.py:440
#, python-format
-msgid "Starting %s node"
-msgstr "启动%s节点"
+msgid "instance %s: retrieving diagnostics"
+msgstr ""
-#: nova/service.py:169
-msgid "Service killed that has no database entry"
-msgstr "因无数据库记录,服务已被中止"
+#: ../nova/compute/manager.py:453
+#, python-format
+msgid "instance %s: suspending"
+msgstr "虚拟机 %s:挂起"
-#: nova/service.py:190
-msgid "The service database object disappeared, Recreating it."
+#: ../nova/compute/manager.py:472
+#, python-format
+msgid "instance %s: resuming"
msgstr ""
-#: nova/service.py:202
-msgid "Recovered model server connection!"
-msgstr "与模型服务器(model server)的连接已恢复!"
+#: ../nova/compute/manager.py:491
+#, python-format
+msgid "instance %s: locking"
+msgstr ""
-#: nova/service.py:208
-msgid "model server went away"
-msgstr "失去与模型服务器的连接"
+#: ../nova/compute/manager.py:503
+#, python-format
+msgid "instance %s: unlocking"
+msgstr ""
-#: nova/service.py:217 nova/db/sqlalchemy/__init__.py:43
+#: ../nova/compute/manager.py:513
#, python-format
-msgid "Data store %s is unreachable. Trying again in %d seconds."
-msgstr "数据储存服务%s不可用。%d秒之后继续尝试。"
+msgid "instance %s: getting locked state"
+msgstr ""
-#: nova/service.py:232 nova/twistd.py:232
+#: ../nova/compute/manager.py:526
#, python-format
-msgid "Serving %s"
-msgstr "正在为%s服务"
+msgid "instance %s: reset network"
+msgstr ""
-#: nova/service.py:234 nova/twistd.py:264
-msgid "Full set of FLAGS:"
-msgstr "FLAGS全集:"
+#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
+#, python-format
+msgid "Get console output for instance %s"
+msgstr "获取虚拟机 %s 控制台输出"
-#: nova/twistd.py:211
+#: ../nova/compute/manager.py:543
#, python-format
-msgid "pidfile %s does not exist. Daemon not running?\n"
-msgstr "pidfile %s不存在。后台服务没有运行?\n"
+msgid "instance %s: getting ajax console"
+msgstr "虚拟机 %s :获取ajax控制台"
-#: nova/utils.py:53
+#: ../nova/compute/manager.py:553
#, python-format
-msgid "Inner Exception: %s"
-msgstr "内层异常:%s"
+msgid ""
+"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
+msgstr ""
-#: nova/utils.py:54
+#. pylint: disable=W0702
+#. NOTE(vish): The inline callback eats the exception info so we
+#. log the traceback here and reraise the same
+#. ecxception below.
+#: ../nova/compute/manager.py:569
#, python-format
-msgid "Class %s cannot be found"
-msgstr "无法找到%s类"
+msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
+msgstr ""
-#: nova/utils.py:113
+#: ../nova/compute/manager.py:585
#, python-format
-msgid "Fetching %s"
-msgstr "正在抓取%s"
+msgid ""
+"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
+"%(instance_id)s"
+msgstr ""
-#: nova/utils.py:125
+#: ../nova/compute/manager.py:588
#, python-format
-msgid "Running cmd (subprocess): %s"
-msgstr "正在运行(在子进程中)运行命令:%s"
+msgid "Detaching volume from unknown instance %s"
+msgstr ""
-#: nova/utils.py:138
+#: ../nova/scheduler/simple.py:53
#, python-format
-msgid "Result was %s"
-msgstr "运行结果为 %s"
+msgid "Host %s is not alive"
+msgstr ""
-#: nova/utils.py:171
+#: ../nova/scheduler/simple.py:65
+msgid "All hosts have too many cores"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:87
#, python-format
-msgid "debug in callback: %s"
-msgstr "回调中debug:%s"
+msgid "Host %s not available"
+msgstr ""
-#: nova/utils.py:176
+#: ../nova/scheduler/simple.py:99
+msgid "All hosts have too many gigabytes"
+msgstr ""
+
+#: ../nova/scheduler/simple.py:119
+msgid "All hosts have too many networks"
+msgstr ""
+
+#: ../nova/volume/manager.py:85
#, python-format
-msgid "Running %s"
-msgstr "正在运行 %s"
+msgid "Re-exporting %s volumes"
+msgstr ""
-#: nova/utils.py:207
+#: ../nova/volume/manager.py:90
#, python-format
-msgid "Couldn't get IP, using 127.0.0.1 %s"
-msgstr "不能获取IP,将使用 127.0.0.1 %s"
+msgid "volume %s: skipping export"
+msgstr ""
-#: nova/utils.py:289
+#: ../nova/volume/manager.py:96
#, python-format
-msgid "Invalid backend: %s"
-msgstr "无效的后台:%s"
+msgid "volume %s: creating"
+msgstr ""
-#: nova/utils.py:300
+#: ../nova/volume/manager.py:108
#, python-format
-msgid "backend %s"
-msgstr "后台 %s"
+msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
+msgstr ""
-#: nova/api/ec2/__init__.py:133
-msgid "Too many failed authentications."
-msgstr "较多失败的认证"
+#: ../nova/volume/manager.py:112
+#, python-format
+msgid "volume %s: creating export"
+msgstr ""
-#: nova/api/ec2/__init__.py:142
+#: ../nova/volume/manager.py:123
#, python-format
-msgid ""
-"Access key %s has had %d failed authentications and will be locked out for "
-"%d minutes."
-msgstr "访问键 %s时,存在%d个失败的认证,将于%d分钟后解锁"
+msgid "volume %s: created successfully"
+msgstr ""
+
+#: ../nova/volume/manager.py:131
+msgid "Volume is still attached"
+msgstr ""
+
+#: ../nova/volume/manager.py:133
+msgid "Volume is not local to this node"
+msgstr ""
-#: nova/api/ec2/__init__.py:179 nova/objectstore/handler.py:140
+#: ../nova/volume/manager.py:136
#, python-format
-msgid "Authentication Failure: %s"
-msgstr "认证失败:%s"
+msgid "volume %s: removing export"
+msgstr ""
-#: nova/api/ec2/__init__.py:190
+#: ../nova/volume/manager.py:138
#, python-format
-msgid "Authenticated Request For %s:%s)"
-msgstr "为%s:%s申请认证"
+msgid "volume %s: deleting"
+msgstr ""
-#: nova/api/ec2/__init__.py:227
+#: ../nova/volume/manager.py:147
#, python-format
-msgid "action: %s"
-msgstr "执行: %s"
+msgid "volume %s: deleted successfully"
+msgstr ""
-#: nova/api/ec2/__init__.py:229
+#: ../nova/virt/xenapi/fake.py:74
#, python-format
-msgid "arg: %s\t\tval: %s"
-msgstr "键为: %s\t\t值为: %s"
+msgid "%(text)s: _db_content => %(content)s"
+msgstr ""
+
+#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
+#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
+msgid "Raising NotImplemented"
+msgstr ""
-#: nova/api/ec2/__init__.py:301
+#: ../nova/virt/xenapi/fake.py:306
#, python-format
-msgid "Unauthorized request for controller=%s and action=%s"
-msgstr "对控制器=%s及动作=%s未经授权"
+msgid "xenapi.fake does not have an implementation for %s"
+msgstr ""
-#: nova/api/ec2/__init__.py:339
+#: ../nova/virt/xenapi/fake.py:341
#, python-format
-msgid "NotFound raised: %s"
-msgstr "引起没有找到的错误: %s"
+msgid "Calling %(localname)s %(impl)s"
+msgstr ""
-#: nova/api/ec2/__init__.py:342
+#: ../nova/virt/xenapi/fake.py:346
#, python-format
-msgid "ApiError raised: %s"
-msgstr "引发了Api错误: %s"
+msgid "Calling getter %s"
+msgstr ""
-#: nova/api/ec2/__init__.py:349
+#: ../nova/virt/xenapi/fake.py:406
#, python-format
-msgid "Unexpected error raised: %s"
-msgstr "引发了意外的错误:%s"
+msgid ""
+"xenapi.fake does not have an implementation for %s or it has been called "
+"with the wrong number of arguments"
+msgstr ""
-#: nova/api/ec2/__init__.py:354
-msgid "An unknown error has occurred. Please try your request again."
-msgstr "发生了一个未知的错误. 请重试你的请求."
+#: ../nova/tests/test_cloud.py:256
+msgid "Can't test instances without a real virtual env."
+msgstr ""
-#: nova/api/ec2/admin.py:84
+#: ../nova/tests/test_cloud.py:268
#, python-format
-msgid "Creating new user: %s"
-msgstr "创建新用户: %s"
+msgid "Need to watch instance %s until it's running..."
+msgstr ""
-#: nova/api/ec2/admin.py:92
-#, python-format
-msgid "Deleting user: %s"
-msgstr "删除用户: %s"
+#: ../nova/virt/connection.py:73
+msgid "Failed to open connection to the hypervisor"
+msgstr ""
-#: nova/api/ec2/admin.py:114
+#: ../nova/network/linux_net.py:187
#, python-format
-msgid "Adding role %s to user %s for project %s"
-msgstr "正将%s角色赋予用户%s(在工程%s中)"
+msgid "Starting VLAN inteface %s"
+msgstr ""
-#: nova/api/ec2/admin.py:117 nova/auth/manager.py:415
+#: ../nova/network/linux_net.py:208
#, python-format
-msgid "Adding sitewide role %s to user %s"
-msgstr "增加站点范围的 %s角色给用户 %s"
+msgid "Starting Bridge interface for %s"
+msgstr ""
-#: nova/api/ec2/admin.py:122
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:314
#, python-format
-msgid "Removing role %s from user %s for project %s"
-msgstr "正将角色%s从用户%s在工程%s中移除"
+msgid "Hupping dnsmasq threw %s"
+msgstr ""
-#: nova/api/ec2/admin.py:125 nova/auth/manager.py:441
+#: ../nova/network/linux_net.py:316
#, python-format
-msgid "Removing sitewide role %s from user %s"
+msgid "Pid %d is stale, relaunching dnsmasq"
msgstr ""
-#: nova/api/ec2/admin.py:129 nova/api/ec2/admin.py:192
-msgid "operation must be add or remove"
-msgstr "操作必须为增加或删除"
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:358
+#, python-format
+msgid "killing radvd threw %s"
+msgstr ""
-#: nova/api/ec2/admin.py:142
+#: ../nova/network/linux_net.py:360
#, python-format
-msgid "Getting x509 for user: %s on project: %s"
-msgstr "为用户 %s从工程%s中获取 x509"
+msgid "Pid %d is stale, relaunching radvd"
+msgstr ""
-#: nova/api/ec2/admin.py:159
+#. pylint: disable=W0703
+#: ../nova/network/linux_net.py:449
#, python-format
-msgid "Create project %s managed by %s"
-msgstr "创建工程%s,此工程由%s管理"
+msgid "Killing dnsmasq threw %s"
+msgstr ""
-#: nova/api/ec2/admin.py:170
+#: ../nova/utils.py:58
#, python-format
-msgid "Delete project: %s"
-msgstr "删除工程%s"
+msgid "Inner Exception: %s"
+msgstr "内层异常:%s"
-#: nova/api/ec2/admin.py:184 nova/auth/manager.py:533
+#: ../nova/utils.py:59
#, python-format
-msgid "Adding user %s to project %s"
-msgstr "增加用户%s到%s工程"
+msgid "Class %s cannot be found"
+msgstr "无法找到 %s 类"
-#: nova/api/ec2/admin.py:188
+#: ../nova/utils.py:118
#, python-format
-msgid "Removing user %s from project %s"
-msgstr "正将用户%s从工程%s中移除"
+msgid "Fetching %s"
+msgstr "正在抓取 %s"
-#: nova/api/ec2/apirequest.py:95
+#: ../nova/utils.py:130
#, python-format
-msgid "Unsupported API request: controller = %s,action = %s"
-msgstr "不支持的API请求: 控制器 = %s,执行 = %s"
+msgid "Running cmd (subprocess): %s"
+msgstr "正在运行(在子进程中)运行命令:%s"
-#: nova/api/ec2/cloud.py:117
+#: ../nova/utils.py:143 ../nova/utils.py:183
#, python-format
-msgid "Generating root CA: %s"
-msgstr "生成根证书: %s"
+msgid "Result was %s"
+msgstr "运行结果为 %s"
-#: nova/api/ec2/cloud.py:277
+#: ../nova/utils.py:159
#, python-format
-msgid "Create key pair %s"
-msgstr "创建键值对 %s"
+msgid "Running cmd (SSH): %s"
+msgstr ""
-#: nova/api/ec2/cloud.py:285
+#: ../nova/utils.py:217
#, python-format
-msgid "Delete key pair %s"
-msgstr "删除键值对 %s"
+msgid "debug in callback: %s"
+msgstr "回调中debug:%s"
-#: nova/api/ec2/cloud.py:357
+#: ../nova/utils.py:222
#, python-format
-msgid "%s is not a valid ipProtocol"
-msgstr "%s是无效的IP协议"
+msgid "Running %s"
+msgstr "正在运行 %s"
-#: nova/api/ec2/cloud.py:361
-msgid "Invalid port range"
-msgstr "端口范围无效"
+#: ../nova/utils.py:262
+#, python-format
+msgid "Link Local address is not found.:%s"
+msgstr ""
-#: nova/api/ec2/cloud.py:392
+#: ../nova/utils.py:265
#, python-format
-msgid "Revoke security group ingress %s"
-msgstr "撤销输入安全组 %s"
+msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:401 nova/api/ec2/cloud.py:414
-msgid "No rule for the specified parameters."
-msgstr "对给定的参数无特定规则。"
+#: ../nova/utils.py:363
+#, python-format
+msgid "Invalid backend: %s"
+msgstr "无效的后台:%s"
-#: nova/api/ec2/cloud.py:421
+#: ../nova/utils.py:374
#, python-format
-msgid "Authorize security group ingress %s"
-msgstr "验证输入安全组 %s"
+msgid "backend %s"
+msgstr "后台 %s"
-#: nova/api/ec2/cloud.py:432
+#: ../nova/fakerabbit.py:49
#, python-format
-msgid "This rule already exists in group %s"
-msgstr "这条规则已经存在安全组%s中。"
+msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
+msgstr ""
-#: nova/api/ec2/cloud.py:460
+#: ../nova/fakerabbit.py:54
#, python-format
-msgid "Create Security Group %s"
-msgstr "创建安全组%s"
+msgid "Publishing to route %s"
+msgstr "发布并路由到 %s"
-#: nova/api/ec2/cloud.py:463
+#: ../nova/fakerabbit.py:84
#, python-format
-msgid "group %s already exists"
-msgstr "安全组%s已经存在"
+msgid "Declaring queue %s"
+msgstr "正在声明队列 %s"
-#: nova/api/ec2/cloud.py:475
+#: ../nova/fakerabbit.py:90
#, python-format
-msgid "Delete security group %s"
-msgstr "删除安全组 %s"
+msgid "Declaring exchange %s"
+msgstr "正在声明交换(exchange) %s"
-#: nova/api/ec2/cloud.py:483 nova/compute/manager.py:452
+#: ../nova/fakerabbit.py:96
#, python-format
-msgid "Get console output for instance %s"
+msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
msgstr ""
-#: nova/api/ec2/cloud.py:543
+#: ../nova/fakerabbit.py:121
#, python-format
-msgid "Create volume of %s GB"
+msgid "Getting from %(queue)s: %(message)s"
msgstr ""
-#: nova/api/ec2/cloud.py:567
+#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
-msgid "Attach volume %s to instacne %s at %s"
+msgid "Created VM %s..."
msgstr ""
-#: nova/api/ec2/cloud.py:579
+#: ../nova/virt/xenapi/vm_utils.py:138
#, python-format
-msgid "Detach volume %s"
+msgid "Created VM %(instance_name)s as %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:686
-msgid "Allocate address"
+#: ../nova/virt/xenapi/vm_utils.py:168
+#, python-format
+msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
msgstr ""
-#: nova/api/ec2/cloud.py:691
+#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
-msgid "Release address %s"
+msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:696
+#: ../nova/virt/xenapi/vm_utils.py:187
#, python-format
-msgid "Associate address %s to instance %s"
+msgid "VBD not found in instance %s"
msgstr ""
-#: nova/api/ec2/cloud.py:703
+#: ../nova/virt/xenapi/vm_utils.py:197
#, python-format
-msgid "Disassociate address %s"
+msgid "Unable to unplug VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:730
-msgid "Going to start terminating instances"
+#: ../nova/virt/xenapi/vm_utils.py:209
+#, python-format
+msgid "Unable to destroy VBD %s"
msgstr ""
-#: nova/api/ec2/cloud.py:738
+#: ../nova/virt/xenapi/vm_utils.py:224
#, python-format
-msgid "Reboot instance %r"
+msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:775
+#: ../nova/virt/xenapi/vm_utils.py:227
#, python-format
-msgid "De-registering image %s"
+msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:783
+#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
-msgid "Registered image %s with id %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
+"%(sr_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:789 nova/api/ec2/cloud.py:804
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
-msgid "attribute not supported: %s"
+msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
msgstr ""
-#: nova/api/ec2/cloud.py:794
+#: ../nova/virt/xenapi/vm_utils.py:272
#, python-format
-msgid "invalid id: %s"
+msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
msgstr ""
-#: nova/api/ec2/cloud.py:807
-msgid "user or group not specified"
+#: ../nova/virt/xenapi/vm_utils.py:286
+#, python-format
+msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
msgstr ""
-#: nova/api/ec2/cloud.py:809
-msgid "only group \"all\" is supported"
+#: ../nova/virt/xenapi/vm_utils.py:327
+#, python-format
+msgid "Size for image %(image)s:%(virtual_size)d"
msgstr ""
-#: nova/api/ec2/cloud.py:811
-msgid "operation_type must be add or remove"
+#: ../nova/virt/xenapi/vm_utils.py:332
+#, python-format
+msgid "Glance image %s"
msgstr ""
-#: nova/api/ec2/cloud.py:812
+#. we need to invoke a plugin for copying VDI's
+#. content into proper path
+#: ../nova/virt/xenapi/vm_utils.py:342
#, python-format
-msgid "Updating image %s publicity"
+msgid "Copying VDI %s to /boot/guest on dom0"
msgstr ""
-#: nova/api/ec2/metadatarequesthandler.py:75
+#: ../nova/virt/xenapi/vm_utils.py:352
#, python-format
-msgid "Failed to get metadata for ip: %s"
+msgid "Kernel/Ramdisk VDI %s destroyed"
msgstr ""
-#: nova/api/openstack/__init__.py:70
+#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
-msgid "Caught error: %s"
+msgid "Asking xapi to fetch %(url)s as %(access)s"
msgstr ""
-#: nova/api/openstack/__init__.py:86
-msgid "Including admin operations in API."
+#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
+#, python-format
+msgid "Looking up vdi %s for PV kernel"
msgstr ""
-#: nova/api/openstack/servers.py:184
+#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
-msgid "Compute.api::lock %s"
+msgid "PV Kernel in VDI:%s"
msgstr ""
-#: nova/api/openstack/servers.py:199
+#: ../nova/virt/xenapi/vm_utils.py:405
#, python-format
-msgid "Compute.api::unlock %s"
+msgid "Running pygrub against %s"
msgstr ""
-#: nova/api/openstack/servers.py:213
+#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
-msgid "Compute.api::get_lock %s"
+msgid "Found Xen kernel %s"
msgstr ""
-#: nova/api/openstack/servers.py:224
-#, python-format
-msgid "Compute.api::pause %s"
+#: ../nova/virt/xenapi/vm_utils.py:413
+msgid "No Xen kernel found. Booting HVM."
msgstr ""
-#: nova/api/openstack/servers.py:235
+#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
-msgid "Compute.api::unpause %s"
+msgid "duplicate name found: %s"
msgstr ""
-#: nova/api/openstack/servers.py:246
+#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
-msgid "compute.api::suspend %s"
+msgid "VDI %s is still available"
msgstr ""
-#: nova/api/openstack/servers.py:257
+#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
-msgid "compute.api::resume %s"
+msgid "(VM_UTILS) xenserver vm state -> |%s|"
msgstr ""
-#: nova/auth/dbdriver.py:84
+#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
-msgid "User %s already exists"
+msgid "(VM_UTILS) xenapi power_state -> |%s|"
msgstr ""
-#: nova/auth/dbdriver.py:106 nova/auth/ldapdriver.py:207
+#: ../nova/virt/xenapi/vm_utils.py:525
#, python-format
-msgid "Project can't be created because manager %s doesn't exist"
+msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
msgstr ""
-#: nova/auth/dbdriver.py:135 nova/auth/ldapdriver.py:204
+#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
-msgid "Project can't be created because project %s already exists"
+msgid "Re-scanning SR %s"
msgstr ""
-#: nova/auth/dbdriver.py:157 nova/auth/ldapdriver.py:241
+#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
-msgid "Project can't be modified because manager %s doesn't exist"
+msgid ""
+"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
msgstr ""
-#: nova/auth/dbdriver.py:245
+#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
-msgid "User \"%s\" not found"
+msgid ""
+"Parent %(parent_uuid)s doesn't match original parent "
+"%(original_parent_uuid)s, waiting for coalesce..."
msgstr ""
-#: nova/auth/dbdriver.py:248
+#: ../nova/virt/xenapi/vm_utils.py:590
#, python-format
-msgid "Project \"%s\" not found"
+msgid "No VDIs found for VM %s"
msgstr ""
-#: nova/auth/fakeldap.py:33
-msgid "Attempted to instantiate singleton"
+#: ../nova/virt/xenapi/vm_utils.py:594
+#, python-format
+msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
msgstr ""
-#: nova/auth/ldapdriver.py:181
+#: ../nova/virt/xenapi/vm_utils.py:653
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
-msgid "LDAP object for %s doesn't exist"
+msgid "Creating VBD for VDI %s ... "
msgstr ""
-#: nova/auth/ldapdriver.py:218
+#: ../nova/virt/xenapi/vm_utils.py:655
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
-msgid "Project can't be created because user %s doesn't exist"
+msgid "Creating VBD for VDI %s done."
msgstr ""
-#: nova/auth/ldapdriver.py:478
+#: ../nova/virt/xenapi/vm_utils.py:657
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
#, python-format
-msgid "User %s is already a member of the group %s"
+msgid "Plugging VBD %s ... "
msgstr ""
-#: nova/auth/ldapdriver.py:507
+#: ../nova/virt/xenapi/vm_utils.py:659
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
#, python-format
-msgid ""
-"Attempted to remove the last member of a group. Deleting the group at %s "
-"instead."
+msgid "Plugging VBD %s done."
msgstr ""
-#: nova/auth/ldapdriver.py:528
+#: ../nova/virt/xenapi/vm_utils.py:661
#, python-format
-msgid "Group at dn %s doesn't exist"
+msgid "VBD %(vbd)s plugged as %(orig_dev)s"
msgstr ""
-#: nova/auth/manager.py:259
+#: ../nova/virt/xenapi/vm_utils.py:664
#, python-format
-msgid "Looking up user: %r"
+msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
msgstr ""
-#: nova/auth/manager.py:263
+#: ../nova/virt/xenapi/vm_utils.py:668
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
-msgid "Failed authorization for access key %s"
+msgid "Destroying VBD for VDI %s ... "
msgstr ""
-#: nova/auth/manager.py:264
+#: ../nova/virt/xenapi/vm_utils.py:671
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
-msgid "No user found for access key %s"
+msgid "Destroying VBD for VDI %s done."
msgstr ""
-#: nova/auth/manager.py:270
+#: ../nova/virt/xenapi/vm_utils.py:683
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
+msgid "VBD.unplug successful first time."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:688
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
+msgid "VBD.unplug rejected: retrying..."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:692
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
+msgid "VBD.unplug successful eventually."
+msgstr ""
+
+#: ../nova/virt/xenapi/vm_utils.py:695
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
-msgid "Using project name = user name (%s)"
+msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
msgstr ""
-#: nova/auth/manager.py:275
+#: ../nova/virt/xenapi/vm_utils.py:704
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
-msgid "failed authorization: no project named %s (user=%s)"
+msgid "Ignoring XenAPI.Failure %s"
msgstr ""
-#: nova/auth/manager.py:277
+#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
-msgid "No project called %s could be found"
+msgid ""
+"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""
-#: nova/auth/manager.py:281
+#: ../nova/virt/xenapi/vm_utils.py:747
#, python-format
-msgid "Failed authorization: user %s not admin and not member of project %s"
+msgid "Writing partition table %s done."
msgstr ""
-#: nova/auth/manager.py:283
+#: ../nova/tests/test_rpc.py:89
#, python-format
-msgid "User %s is not a member of project %s"
+msgid "Nested received %(queue)s, %(value)s"
msgstr ""
-#: nova/auth/manager.py:292 nova/auth/manager.py:303
+#: ../nova/tests/test_rpc.py:95
#, python-format
-msgid "Invalid signature for user %s"
+msgid "Nested return %s"
msgstr ""
-#: nova/auth/manager.py:293 nova/auth/manager.py:304
-msgid "Signature does not match"
+#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
+#, python-format
+msgid "Received %s"
msgstr ""
-#: nova/auth/manager.py:374
-msgid "Must specify project"
+#: ../nova/db/sqlalchemy/api.py:44
+msgid "Use of empty request context is deprecated"
msgstr ""
-#: nova/auth/manager.py:408
+#: ../nova/db/sqlalchemy/api.py:133
#, python-format
-msgid "The %s role can not be found"
+msgid "No service for id %s"
msgstr ""
-#: nova/auth/manager.py:410
+#: ../nova/db/sqlalchemy/api.py:251
#, python-format
-msgid "The %s role is global only"
+msgid "No service for %(host)s, %(binary)s"
msgstr ""
-#: nova/auth/manager.py:412
-#, python-format
-msgid "Adding role %s to user %s in project %s"
+#: ../nova/db/sqlalchemy/api.py:592
+msgid "No fixed ips defined"
msgstr ""
-#: nova/auth/manager.py:438
+#: ../nova/db/sqlalchemy/api.py:608
#, python-format
-msgid "Removing role %s from user %s on project %s"
+msgid "No floating ip for address %s"
msgstr ""
-#: nova/auth/manager.py:505
+#: ../nova/db/sqlalchemy/api.py:629
#, python-format
-msgid "Created project %s with manager %s"
+msgid "No address for instance %s"
msgstr ""
-#: nova/auth/manager.py:523
+#: ../nova/db/sqlalchemy/api.py:961
#, python-format
-msgid "modifying project %s"
+msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""
-#: nova/auth/manager.py:553
+#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
#, python-format
-msgid "Remove user %s from project %s"
+msgid "No network for id %s"
msgstr ""
-#: nova/auth/manager.py:581
+#: ../nova/db/sqlalchemy/api.py:1086
+msgid "No networks defined"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
-msgid "Deleting project %s"
+msgid "No network for bridge %s"
msgstr ""
-#: nova/auth/manager.py:637
+#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
#, python-format
-msgid "Created user %s (admin: %r)"
+msgid "No network for instance %s"
msgstr ""
-#: nova/auth/manager.py:645
+#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
-msgid "Deleting user %s"
+msgid "Token %s does not exist"
msgstr ""
-#: nova/auth/manager.py:655
+#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
-msgid "Access Key change for user %s"
+msgid "No quota for project_id %s"
msgstr ""
-#: nova/auth/manager.py:657
+#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
+#: ../nova/api/ec2/__init__.py:323
#, python-format
-msgid "Secret Key change for user %s"
+msgid "Volume %s not found"
msgstr ""
-#: nova/auth/manager.py:659
+#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
-msgid "Admin status set to %r for user %s"
+msgid "No export device found for volume %s"
msgstr ""
-#: nova/auth/manager.py:708
+#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
-msgid "No vpn data for project %s"
+msgid "No target id found for volume %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:45
-msgid "Template for script to run on cloudpipe instance boot"
+#: ../nova/db/sqlalchemy/api.py:1572
+#, python-format
+msgid "No security group with id %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:48
-msgid "Network to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:1589
+#, python-format
+msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:51
-msgid "Netmask to push into openvpn config"
+#: ../nova/db/sqlalchemy/api.py:1682
+#, python-format
+msgid "No secuity group rule with id %s"
msgstr ""
-#: nova/cloudpipe/pipelib.py:97
+#: ../nova/db/sqlalchemy/api.py:1756
#, python-format
-msgid "Launching VPN for %s"
+msgid "No user for id %s"
msgstr ""
-#: nova/compute/api.py:67
+#: ../nova/db/sqlalchemy/api.py:1772
#, python-format
-msgid "Instance %d was not found in get_network_topic"
+msgid "No user for access key %s"
msgstr ""
-#: nova/compute/api.py:73
+#: ../nova/db/sqlalchemy/api.py:1834
#, python-format
-msgid "Instance %d has no host"
+msgid "No project with id %s"
msgstr ""
-#: nova/compute/api.py:92
+#: ../nova/db/sqlalchemy/api.py:1979
#, python-format
-msgid "Quota exceeeded for %s, tried to run %s instances"
+msgid "No console pool with id %(pool_id)s"
msgstr ""
-#: nova/compute/api.py:94
+#: ../nova/db/sqlalchemy/api.py:1996
#, python-format
msgid ""
-"Instance quota exceeded. You can only run %s more instances of this type."
+"No console pool of type %(console_type)s for compute host %(compute_host)s "
+"on proxy host %(host)s"
msgstr ""
-#: nova/compute/api.py:109
-msgid "Creating a raw instance"
+#: ../nova/db/sqlalchemy/api.py:2035
+#, python-format
+msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""
-#: nova/compute/api.py:156
+#: ../nova/db/sqlalchemy/api.py:2057
#, python-format
-msgid "Going to run %s instances..."
+msgid "on instance %s"
msgstr ""
-#: nova/compute/api.py:180
+#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
-msgid "Casting to scheduler for %s/%s's instance %s"
+msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""
-#: nova/compute/api.py:279
+#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
-msgid "Going to try and terminate %s"
+msgid "No zone with id %(zone_id)s"
msgstr ""
-#: nova/compute/api.py:283
+#: ../nova/virt/libvirt_conn.py:160
#, python-format
-msgid "Instance %d was not found during terminate"
+msgid "Checking state of %s"
msgstr ""
-#: nova/compute/api.py:288
+#: ../nova/virt/libvirt_conn.py:165
#, python-format
-msgid "Instance %d is already being terminated"
+msgid "Current state of %(name)s was %(state)s."
msgstr ""
-#: nova/compute/api.py:450
+#: ../nova/virt/libvirt_conn.py:183
#, python-format
-msgid "Invalid device specified: %s. Example device: /dev/vdb"
+msgid "Connecting to libvirt: %s"
msgstr ""
-#: nova/compute/api.py:465
-msgid "Volume isn't attached to anything!"
+#: ../nova/virt/libvirt_conn.py:196
+msgid "Connection to libvirt broke"
msgstr ""
-#: nova/compute/disk.py:71
+#: ../nova/virt/libvirt_conn.py:258
#, python-format
-msgid "Input partition size not evenly divisible by sector size: %d / %d"
+msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""
-#: nova/compute/disk.py:75
+#: ../nova/virt/libvirt_conn.py:283
#, python-format
-msgid "Bytes for local storage not evenly divisible by sector size: %d / %d"
+msgid "Invalid device path %s"
msgstr ""
-#: nova/compute/disk.py:128
+#: ../nova/virt/libvirt_conn.py:313
#, python-format
-msgid "Could not attach image to loopback: %s"
+msgid "No disk at %s"
msgstr ""
-#: nova/compute/disk.py:136
-#, python-format
-msgid "Failed to load partition: %s"
+#: ../nova/virt/libvirt_conn.py:320
+msgid "Instance snapshotting is not supported for libvirtat this time"
msgstr ""
-#: nova/compute/disk.py:158
+#: ../nova/virt/libvirt_conn.py:336
#, python-format
-msgid "Failed to mount filesystem: %s"
+msgid "instance %s: rebooted"
msgstr ""
-#: nova/compute/instance_types.py:41
+#: ../nova/virt/libvirt_conn.py:339
#, python-format
-msgid "Unknown instance type: %s"
+msgid "_wait_for_reboot failed: %s"
msgstr ""
-#: nova/compute/manager.py:69
+#: ../nova/virt/libvirt_conn.py:382
#, python-format
-msgid "check_instance_lock: decorating: |%s|"
+msgid "instance %s: rescued"
msgstr ""
-#: nova/compute/manager.py:71
+#: ../nova/virt/libvirt_conn.py:385
#, python-format
-msgid "check_instance_lock: arguments: |%s| |%s| |%s|"
+msgid "_wait_for_rescue failed: %s"
msgstr ""
-#: nova/compute/manager.py:75
+#: ../nova/virt/libvirt_conn.py:411
#, python-format
-msgid "check_instance_lock: locked: |%s|"
+msgid "instance %s: is running"
msgstr ""
-#: nova/compute/manager.py:77
+#: ../nova/virt/libvirt_conn.py:422
#, python-format
-msgid "check_instance_lock: admin: |%s|"
+msgid "instance %s: booted"
msgstr ""
-#: nova/compute/manager.py:82
+#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
-msgid "check_instance_lock: executing: |%s|"
+msgid "instance %s: failed to boot"
msgstr ""
-#: nova/compute/manager.py:86
+#: ../nova/virt/libvirt_conn.py:436
#, python-format
-msgid "check_instance_lock: not executing |%s|"
+msgid "virsh said: %r"
msgstr ""
-#: nova/compute/manager.py:157
-msgid "Instance has already been created"
+#: ../nova/virt/libvirt_conn.py:440
+msgid "cool, it's a device"
msgstr ""
-#: nova/compute/manager.py:158
+#: ../nova/virt/libvirt_conn.py:448
#, python-format
-msgid "instance %s: starting..."
+msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""
-#: nova/compute/manager.py:197
+#: ../nova/virt/libvirt_conn.py:456
#, python-format
-msgid "instance %s: Failed to spawn"
+msgid "Contents of file %(fpath)s: %(contents)r"
msgstr ""
-#: nova/compute/manager.py:211 nova/tests/test_cloud.py:228
-#, python-format
-msgid "Terminating instance %s"
+#: ../nova/virt/libvirt_conn.py:489
+msgid "Unable to find an open port"
msgstr ""
-#: nova/compute/manager.py:217
+#: ../nova/virt/libvirt_conn.py:563
#, python-format
-msgid "Disassociating address %s"
+msgid "instance %s: Creating image"
msgstr ""
-#: nova/compute/manager.py:230
+#: ../nova/virt/libvirt_conn.py:646
#, python-format
-msgid "Deallocating address %s"
+msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:243
+#: ../nova/virt/libvirt_conn.py:649
#, python-format
-msgid "trying to destroy already destroyed instance: %s"
+msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""
-#: nova/compute/manager.py:257
+#. This could be a windows image, or a vmdk format disk
+#: ../nova/virt/libvirt_conn.py:657
#, python-format
-msgid "Rebooting instance %s"
+msgid ""
+"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
+"(%(e)s)"
msgstr ""
-#: nova/compute/manager.py:260
+#. TODO(termie): cache?
+#: ../nova/virt/libvirt_conn.py:665
#, python-format
-msgid "trying to reboot a non-running instance: %s (state: %s excepted: %s)"
+msgid "instance %s: starting toXML method"
msgstr ""
-#: nova/compute/manager.py:286
+#: ../nova/virt/libvirt_conn.py:732
#, python-format
-msgid "instance %s: snapshotting"
+msgid "instance %s: finished toXML method"
msgstr ""
-#: nova/compute/manager.py:289
+#: ../nova/virt/libvirt_conn.py:751
+msgid "diagnostics are not supported for libvirt"
+msgstr ""
+
+#: ../nova/virt/libvirt_conn.py:1225
#, python-format
-msgid ""
-"trying to snapshot a non-running instance: %s (state: %s excepted: %s)"
+msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""
-#: nova/compute/manager.py:301
+#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
-msgid "instance %s: rescuing"
+msgid "Failed to get metadata for ip: %s"
msgstr ""
-#: nova/compute/manager.py:316
+#: ../nova/auth/fakeldap.py:33
+msgid "Attempted to instantiate singleton"
+msgstr ""
+
+#: ../nova/network/api.py:39
#, python-format
-msgid "instance %s: unrescuing"
+msgid "Quota exceeeded for %s, tried to allocate address"
+msgstr ""
+
+#: ../nova/network/api.py:42
+msgid "Address quota exceeded. You cannot allocate any more addresses"
msgstr ""
-#: nova/compute/manager.py:335
+#: ../nova/tests/test_volume.py:162
#, python-format
-msgid "instance %s: pausing"
+msgid "Target %s allocated"
msgstr ""
-#: nova/compute/manager.py:352
+#: ../nova/virt/images.py:70
#, python-format
-msgid "instance %s: unpausing"
+msgid "Finished retreving %(url)s -- placed in %(path)s"
msgstr ""
-#: nova/compute/manager.py:369
+#: ../nova/scheduler/driver.py:66
+msgid "Must implement a fallback schedule"
+msgstr ""
+
+#: ../nova/console/manager.py:70
+msgid "Adding console"
+msgstr ""
+
+#: ../nova/console/manager.py:90
#, python-format
-msgid "instance %s: retrieving diagnostics"
+msgid "Tried to remove non-existant console %(console_id)s."
+msgstr ""
+
+#: ../nova/api/direct.py:149
+msgid "not available"
msgstr ""
-#: nova/compute/manager.py:382
+#: ../nova/api/ec2/cloud.py:62
#, python-format
-msgid "instance %s: suspending"
+msgid "The key_pair %s already exists"
msgstr ""
-#: nova/compute/manager.py:401
+#. TODO(vish): Do this with M2Crypto instead
+#: ../nova/api/ec2/cloud.py:118
#, python-format
-msgid "instance %s: resuming"
+msgid "Generating root CA: %s"
+msgstr "生成根证书: %s"
+
+#: ../nova/api/ec2/cloud.py:303
+#, python-format
+msgid "Create key pair %s"
+msgstr "创建键值对 %s"
+
+#: ../nova/api/ec2/cloud.py:311
+#, python-format
+msgid "Delete key pair %s"
+msgstr "删除键值对 %s"
+
+#: ../nova/api/ec2/cloud.py:386
+#, python-format
+msgid "%s is not a valid ipProtocol"
+msgstr "%s 是无效的IP协议"
+
+#: ../nova/api/ec2/cloud.py:390
+msgid "Invalid port range"
+msgstr "端口范围无效"
+
+#: ../nova/api/ec2/cloud.py:421
+#, python-format
+msgid "Revoke security group ingress %s"
+msgstr "撤销输入安全组 %s"
+
+#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
+msgid "Not enough parameters to build a valid rule."
msgstr ""
-#: nova/compute/manager.py:420
+#: ../nova/api/ec2/cloud.py:443
+msgid "No rule for the specified parameters."
+msgstr "对给定的参数无特定规则。"
+
+#: ../nova/api/ec2/cloud.py:450
#, python-format
-msgid "instance %s: locking"
+msgid "Authorize security group ingress %s"
+msgstr "验证输入安全组 %s"
+
+#: ../nova/api/ec2/cloud.py:464
+#, python-format
+msgid "This rule already exists in group %s"
+msgstr "这条规则已经存在安全组 %s 中。"
+
+#: ../nova/api/ec2/cloud.py:492
+#, python-format
+msgid "Create Security Group %s"
+msgstr "创建安全组 %s"
+
+#: ../nova/api/ec2/cloud.py:495
+#, python-format
+msgid "group %s already exists"
+msgstr "安全组 %s 已经存在"
+
+#: ../nova/api/ec2/cloud.py:507
+#, python-format
+msgid "Delete security group %s"
+msgstr "删除安全组 %s"
+
+#: ../nova/api/ec2/cloud.py:584
+#, python-format
+msgid "Create volume of %s GB"
msgstr ""
-#: nova/compute/manager.py:432
+#: ../nova/api/ec2/cloud.py:612
#, python-format
-msgid "instance %s: unlocking"
+msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""
-#: nova/compute/manager.py:442
+#: ../nova/api/ec2/cloud.py:629
#, python-format
-msgid "instance %s: getting locked state"
+msgid "Detach volume %s"
msgstr ""
-#: nova/compute/manager.py:462
+#: ../nova/api/ec2/cloud.py:761
+msgid "Allocate address"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:766
#, python-format
-msgid "instance %s: attaching volume %s to %s"
+msgid "Release address %s"
msgstr ""
-#: nova/compute/manager.py:478
+#: ../nova/api/ec2/cloud.py:771
#, python-format
-msgid "instance %s: attach failed %s, removing"
+msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""
-#: nova/compute/manager.py:493
+#: ../nova/api/ec2/cloud.py:780
#, python-format
-msgid "Detach volume %s from mountpoint %s on instance %s"
+msgid "Disassociate address %s"
+msgstr ""
+
+#: ../nova/api/ec2/cloud.py:807
+msgid "Going to start terminating instances"
msgstr ""
-#: nova/compute/manager.py:497
+#: ../nova/api/ec2/cloud.py:815
#, python-format
-msgid "Detaching volume from unknown instance %s"
+msgid "Reboot instance %r"
msgstr ""
-#: nova/compute/monitor.py:259
+#: ../nova/api/ec2/cloud.py:867
#, python-format
-msgid "updating %s..."
+msgid "De-registering image %s"
msgstr ""
-#: nova/compute/monitor.py:289
-msgid "unexpected error during update"
+#: ../nova/api/ec2/cloud.py:875
+#, python-format
+msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""
-#: nova/compute/monitor.py:355
+#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
-msgid "Cannot get blockstats for \"%s\" on \"%s\""
+msgid "attribute not supported: %s"
msgstr ""
-#: nova/compute/monitor.py:377
+#: ../nova/api/ec2/cloud.py:890
#, python-format
-msgid "Cannot get ifstats for \"%s\" on \"%s\""
+msgid "invalid id: %s"
msgstr ""
-#: nova/compute/monitor.py:412
-msgid "unexpected exception getting connection"
+#: ../nova/api/ec2/cloud.py:903
+msgid "user or group not specified"
msgstr ""
-#: nova/compute/monitor.py:427
-#, python-format
-msgid "Found instance: %s"
+#: ../nova/api/ec2/cloud.py:905
+msgid "only group \"all\" is supported"
msgstr ""
-#: nova/db/sqlalchemy/api.py:43
-msgid "Use of empty request context is deprecated"
+#: ../nova/api/ec2/cloud.py:907
+msgid "operation_type must be add or remove"
msgstr ""
-#: nova/db/sqlalchemy/api.py:132
+#: ../nova/api/ec2/cloud.py:908
#, python-format
-msgid "No service for id %s"
+msgid "Updating image %s publicity"
msgstr ""
-#: nova/db/sqlalchemy/api.py:229
+#: ../bin/nova-api.py:52
#, python-format
-msgid "No service for %s, %s"
+msgid "Using paste.deploy config at: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:574
+#: ../bin/nova-api.py:57
#, python-format
-msgid "No floating ip for address %s"
+msgid "No paste configuration for app: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:668
+#: ../bin/nova-api.py:59
#, python-format
-msgid "No instance for id %s"
+msgid ""
+"App Config: %(api)s\n"
+"%(config)r"
msgstr ""
-#: nova/db/sqlalchemy/api.py:758 nova/virt/libvirt_conn.py:598
-#: nova/virt/xenapi/volumeops.py:48 nova/virt/xenapi/volumeops.py:103
+#: ../bin/nova-api.py:64
#, python-format
-msgid "Instance %s not found"
+msgid "Running %s API"
msgstr ""
-#: nova/db/sqlalchemy/api.py:891
+#: ../bin/nova-api.py:69
#, python-format
-msgid "no keypair for user %s, name %s"
+msgid "No known API applications configured in %s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1006 nova/db/sqlalchemy/api.py:1064
+#: ../bin/nova-api.py:83
#, python-format
-msgid "No network for id %s"
+msgid "Starting nova-api node (version %s)"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1036
+#: ../bin/nova-api.py:89
#, python-format
-msgid "No network for bridge %s"
+msgid "No paste configuration found for: %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1050
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
-msgid "No network for instance %s"
+msgid "Argument %(key)s value %(value)s is too short."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1180
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
-msgid "Token %s does not exist"
+msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1205
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
-msgid "No quota for project_id %s"
+msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1356
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
-msgid "No volume for id %s"
+msgid "Argument %s is required."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1401
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
-msgid "Volume %s not found"
+msgid ""
+"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
+"'false']."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1413
+#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
-msgid "No export device found for volume %s"
+msgid ""
+"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1426
+#: ../nova/virt/xenapi/vmops.py:67
#, python-format
-msgid "No target id found for volume %s"
+msgid "Attempted to create non-unique name %s"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1471
+#: ../nova/virt/xenapi/vmops.py:73
#, python-format
-msgid "No security group with id %s"
+msgid "instance %(name)s: not enough free memory"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1488
+#: ../nova/virt/xenapi/vmops.py:148
#, python-format
-msgid "No security group named %s for project: %s"
+msgid "Starting VM %s..."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1576
+#: ../nova/virt/xenapi/vmops.py:151
#, python-format
-msgid "No secuity group rule with id %s"
+msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""
-#: nova/db/sqlalchemy/api.py:1650
+#: ../nova/virt/xenapi/vmops.py:162
#, python-format
-msgid "No user for id %s"
+msgid "Invalid value for onset_files: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1666
+#: ../nova/virt/xenapi/vmops.py:167
#, python-format
-msgid "No user for access key %s"
+msgid "Injecting file path: '%s'"
msgstr ""
-#: nova/db/sqlalchemy/api.py:1728
+#: ../nova/virt/xenapi/vmops.py:180
#, python-format
-msgid "No project with id %s"
+msgid "Instance %s: booted"
msgstr ""
-#: nova/image/glance.py:78
+#: ../nova/virt/xenapi/vmops.py:232
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images"
+msgid "Instance not present %s"
msgstr ""
-#: nova/image/glance.py:97
+#. TODO(sirp): Add quiesce and VSS locking support when Windows support
+#. is added
+#: ../nova/virt/xenapi/vmops.py:261
#, python-format
-msgid "Parallax returned HTTP error %d from request for /images/detail"
+msgid "Starting snapshot for VM %s"
msgstr ""
-#: nova/image/s3.py:82
+#: ../nova/virt/xenapi/vmops.py:269
#, python-format
-msgid "Image %s could not be found"
+msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""
-#: nova/network/api.py:39
+#: ../nova/virt/xenapi/vmops.py:280
#, python-format
-msgid "Quota exceeeded for %s, tried to allocate address"
+msgid "Finished snapshot and upload for VM %s"
msgstr ""
-#: nova/network/api.py:42
-msgid "Address quota exceeded. You cannot allocate any more addresses"
+#: ../nova/virt/xenapi/vmops.py:356
+#, python-format
+msgid "VM %(vm)s already halted, skipping shutdown..."
msgstr ""
-#: nova/network/linux_net.py:176
-#, python-format
-msgid "Starting VLAN inteface %s"
+#: ../nova/virt/xenapi/vmops.py:389
+msgid "Removing kernel/ramdisk files"
msgstr ""
-#: nova/network/linux_net.py:186
-#, python-format
-msgid "Starting Bridge interface for %s"
+#: ../nova/virt/xenapi/vmops.py:399
+msgid "kernel/ramdisk files removed"
msgstr ""
-#: nova/network/linux_net.py:254
+#: ../nova/virt/xenapi/vmops.py:561
#, python-format
-msgid "Hupping dnsmasq threw %s"
+msgid ""
+"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:256
+#: ../nova/virt/xenapi/vmops.py:564
#, python-format
-msgid "Pid %d is stale, relaunching dnsmasq"
+msgid ""
+"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM "
+"id=%(instance_id)s; args=%(strargs)s"
msgstr ""
-#: nova/network/linux_net.py:334
+#: ../nova/virt/xenapi/vmops.py:569
#, python-format
-msgid "Killing dnsmasq threw %s"
+msgid ""
+"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; "
+"args=%(strargs)s"
msgstr ""
-#: nova/network/manager.py:135
-msgid "setting network host"
+#: ../nova/virt/xenapi/vmops.py:760
+#, python-format
+msgid "OpenSSL error: %s"
msgstr ""
-#: nova/network/manager.py:190
+#: ../nova/tests/test_compute.py:148
#, python-format
-msgid "Leasing IP %s"
+msgid "Running instances: %s"
msgstr ""
-#: nova/network/manager.py:194
+#: ../nova/tests/test_compute.py:154
#, python-format
-msgid "IP %s leased that isn't associated"
+msgid "After terminating instances: %s"
msgstr ""
-#: nova/network/manager.py:197
-#, python-format
-msgid "IP %s leased to bad mac %s vs %s"
+#: ../nova/cloudpipe/pipelib.py:45
+msgid "Template for script to run on cloudpipe instance boot"
msgstr ""
-#: nova/network/manager.py:205
+#: ../nova/cloudpipe/pipelib.py:48
+msgid "Network to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:51
+msgid "Netmask to push into openvpn config"
+msgstr ""
+
+#: ../nova/cloudpipe/pipelib.py:97
#, python-format
-msgid "IP %s leased that was already deallocated"
+msgid "Launching VPN for %s"
+msgstr ""
+
+#: ../nova/db/sqlalchemy/migration.py:35
+msgid "python-migrate is not installed. Exiting."
msgstr ""
-#: nova/network/manager.py:214
+#: ../nova/image/s3.py:99
#, python-format
-msgid "IP %s released that isn't associated"
+msgid "Image %s could not be found"
msgstr ""
-#: nova/network/manager.py:217
+#: ../nova/api/ec2/__init__.py:121
+msgid "Too many failed authentications."
+msgstr "认证失败过多"
+
+#: ../nova/api/ec2/__init__.py:131
#, python-format
-msgid "IP %s released from bad mac %s vs %s"
+msgid ""
+"Access key %(access_key)s has had %(failures)d failed authentications and "
+"will be locked out for %(lock_mins)d minutes."
msgstr ""
-#: nova/network/manager.py:220
+#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
-msgid "IP %s released that was not leased"
+msgid "Authentication Failure: %s"
+msgstr "认证失败:%s"
+
+#: ../nova/api/ec2/__init__.py:182
+#, python-format
+msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""
-#: nova/network/manager.py:442
+#: ../nova/api/ec2/__init__.py:207
#, python-format
-msgid "Dissassociated %s stale fixed ip(s)"
+msgid "action: %s"
+msgstr "执行: %s"
+
+#: ../nova/api/ec2/__init__.py:209
+#, python-format
+msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""
-#: nova/objectstore/handler.py:106
+#: ../nova/api/ec2/__init__.py:281
#, python-format
-msgid "Unknown S3 value type %r"
+msgid ""
+"Unauthorized request for controller=%(controller)s and action=%(action)s"
msgstr ""
-#: nova/objectstore/handler.py:137
-msgid "Authenticated request"
+#: ../nova/api/ec2/__init__.py:314
+#, python-format
+msgid "InstanceNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:182
-msgid "List of buckets requested"
+#: ../nova/api/ec2/__init__.py:320
+#, python-format
+msgid "VolumeNotFound raised: %s"
msgstr ""
-#: nova/objectstore/handler.py:209
+#: ../nova/api/ec2/__init__.py:326
#, python-format
-msgid "List keys for bucket %s"
+msgid "NotFound raised: %s"
+msgstr "引起没有找到的错误: %s"
+
+#: ../nova/api/ec2/__init__.py:329
+#, python-format
+msgid "ApiError raised: %s"
+msgstr "引发了Api错误: %s"
+
+#: ../nova/api/ec2/__init__.py:338
+#, python-format
+msgid "Unexpected error raised: %s"
+msgstr "引发了意外的错误:%s"
+
+#: ../nova/api/ec2/__init__.py:343
+msgid "An unknown error has occurred. Please try your request again."
+msgstr "发生了一个未知的错误. 请重试你的请求."
+
+#: ../nova/auth/dbdriver.py:84
+#, python-format
+msgid "User %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:217
+#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
#, python-format
-msgid "Unauthorized attempt to access bucket %s"
+msgid "Project can't be created because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:235
+#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
-msgid "Creating bucket %s"
+msgid "Project can't be created because user %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:245
+#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
-msgid "Deleting bucket %s"
+msgid "Project can't be created because project %s already exists"
msgstr ""
-#: nova/objectstore/handler.py:249
+#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
-msgid "Unauthorized attempt to delete bucket %s"
+msgid "Project can't be modified because manager %s doesn't exist"
msgstr ""
-#: nova/objectstore/handler.py:271
+#: ../nova/auth/dbdriver.py:245
#, python-format
-msgid "Getting object: %s / %s"
+msgid "User \"%s\" not found"
msgstr ""
-#: nova/objectstore/handler.py:274
+#: ../nova/auth/dbdriver.py:248
#, python-format
-msgid "Unauthorized attempt to get object %s from bucket %s"
+msgid "Project \"%s\" not found"
msgstr ""
-#: nova/objectstore/handler.py:292
+#: ../nova/virt/xenapi_conn.py:129
+msgid ""
+"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
+"and xenapi_connection_password to use connection_type=xenapi"
+msgstr ""
+
+#: ../nova/virt/xenapi_conn.py:311
#, python-format
-msgid "Putting object: %s / %s"
+msgid "Task [%(name)s] %(task)s status: success %(result)s"
msgstr ""
-#: nova/objectstore/handler.py:295
+#: ../nova/virt/xenapi_conn.py:317
#, python-format
-msgid "Unauthorized attempt to upload object %s to bucket %s"
+msgid "Task [%(name)s] %(task)s status: %(status)s %(error_info)s"
msgstr ""
-#: nova/objectstore/handler.py:314
+#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
-msgid "Deleting object: %s / %s"
+msgid "Got exception: %s"
msgstr ""
-#: nova/objectstore/handler.py:393
+#: ../nova/compute/monitor.py:259
#, python-format
-msgid "Not authorized to upload image: invalid directory %s"
+msgid "updating %s..."
msgstr ""
-#: nova/objectstore/handler.py:401
+#: ../nova/compute/monitor.py:289
+msgid "unexpected error during update"
+msgstr ""
+
+#: ../nova/compute/monitor.py:356
#, python-format
-msgid "Not authorized to upload image: unauthorized bucket %s"
+msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:406
+#: ../nova/compute/monitor.py:379
#, python-format
-msgid "Starting image upload: %s"
+msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
msgstr ""
-#: nova/objectstore/handler.py:420
+#: ../nova/compute/monitor.py:414
+msgid "unexpected exception getting connection"
+msgstr ""
+
+#: ../nova/compute/monitor.py:429
#, python-format
-msgid "Not authorized to update attributes of image %s"
+msgid "Found instance: %s"
msgstr ""
-#: nova/objectstore/handler.py:428
+#: ../nova/volume/san.py:67
#, python-format
-msgid "Toggling publicity flag of image %s %r"
+msgid "Could not find iSCSI export for volume %s"
msgstr ""
-#: nova/objectstore/handler.py:433
+#: ../nova/api/ec2/apirequest.py:100
#, python-format
-msgid "Updating user fields on image %s"
+msgid ""
+"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""
-#: nova/objectstore/handler.py:447
+#: ../nova/api/openstack/__init__.py:55
#, python-format
-msgid "Unauthorized attempt to delete image %s"
+msgid "Caught error: %s"
msgstr ""
-#: nova/objectstore/handler.py:452
+#: ../nova/api/openstack/__init__.py:76
+msgid "Including admin operations in API."
+msgstr ""
+
+#: ../nova/console/xvp.py:99
+msgid "Rebuilding xvp conf"
+msgstr ""
+
+#: ../nova/console/xvp.py:116
#, python-format
-msgid "Deleted image: %s"
+msgid "Re-wrote %s"
msgstr ""
-#: nova/scheduler/chance.py:37 nova/scheduler/simple.py:73
-#: nova/scheduler/simple.py:106 nova/scheduler/simple.py:118
-msgid "No hosts found"
+#: ../nova/console/xvp.py:121
+msgid "Stopping xvp"
msgstr ""
-#: nova/scheduler/driver.py:66
-msgid "Must implement a fallback schedule"
+#: ../nova/console/xvp.py:134
+msgid "Starting xvp"
msgstr ""
-#: nova/scheduler/manager.py:69
+#: ../nova/console/xvp.py:141
#, python-format
-msgid "Casting to %s %s for %s"
+msgid "Error starting xvp: %s"
msgstr ""
-#: nova/scheduler/simple.py:63
-msgid "All hosts have too many cores"
+#: ../nova/console/xvp.py:144
+msgid "Restarting xvp"
msgstr ""
-#: nova/scheduler/simple.py:95
-msgid "All hosts have too many gigabytes"
+#: ../nova/console/xvp.py:146
+msgid "xvp not running..."
msgstr ""
-#: nova/scheduler/simple.py:115
-msgid "All hosts have too many networks"
+#: ../bin/nova-manage.py:272
+msgid ""
+"The above error may show that the database has not been created.\n"
+"Please create a database using nova-manage sync db before running this "
+"command."
msgstr ""
-#: nova/tests/test_cloud.py:198
-msgid "Can't test instances without a real virtual env."
+#: ../bin/nova-manage.py:426
+msgid ""
+"No more networks available. If this is a new installation, you need\n"
+"to call something like this:\n"
+"\n"
+" nova-manage network create 10.0.0.0/8 10 64\n"
+"\n"
msgstr ""
-#: nova/tests/test_cloud.py:210
-#, python-format
-msgid "Need to watch instance %s until it's running..."
+#: ../bin/nova-manage.py:431
+msgid ""
+"The above error may show that the certificate db has not been created.\n"
+"Please create a database by running a nova-api server on this host."
msgstr ""
-#: nova/tests/test_compute.py:104
-#, python-format
-msgid "Running instances: %s"
+#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
+msgid "network"
msgstr ""
-#: nova/tests/test_compute.py:110
-#, python-format
-msgid "After terminating instances: %s"
+#: ../bin/nova-manage.py:448
+msgid "IP address"
+msgstr ""
+
+#: ../bin/nova-manage.py:449
+msgid "MAC address"
+msgstr ""
+
+#: ../bin/nova-manage.py:450
+msgid "hostname"
msgstr ""
-#: nova/tests/test_rpc.py:89
+#: ../bin/nova-manage.py:451
+msgid "host"
+msgstr ""
+
+#: ../bin/nova-manage.py:537
+msgid "netmask"
+msgstr ""
+
+#: ../bin/nova-manage.py:538
+msgid "start address"
+msgstr ""
+
+#: ../nova/virt/disk.py:69
#, python-format
-msgid "Nested received %s, %s"
+msgid "Failed to load partition: %s"
msgstr ""
-#: nova/tests/test_rpc.py:94
+#: ../nova/virt/disk.py:91
#, python-format
-msgid "Nested return %s"
+msgid "Failed to mount filesystem: %s"
msgstr ""
-#: nova/tests/test_rpc.py:119 nova/tests/test_rpc.py:125
+#: ../nova/virt/disk.py:124
#, python-format
-msgid "Received %s"
+msgid "nbd device %s did not show up"
msgstr ""
-#: nova/tests/test_volume.py:162
+#: ../nova/virt/disk.py:128
#, python-format
-msgid "Target %s allocated"
+msgid "Could not attach image to loopback: %s"
msgstr ""
-#: nova/virt/connection.py:73
-msgid "Failed to open connection to the hypervisor"
+#: ../nova/virt/disk.py:151
+msgid "No free nbd devices"
msgstr ""
-#: nova/virt/fake.py:210
+#: ../doc/ext/nova_todo.py:46
#, python-format
-msgid "Instance %s Not Found"
+msgid "%(filename)s, line %(line_info)d"
msgstr ""
-#: nova/virt/hyperv.py:118
+#. FIXME(chiradeep): implement this
+#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""
-#: nova/virt/hyperv.py:131
+#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""
-#: nova/virt/hyperv.py:148
+#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr ""
-#: nova/virt/hyperv.py:150
+#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr ""
-#: nova/virt/hyperv.py:152
+#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:169
+#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""
-#: nova/virt/hyperv.py:171 nova/virt/xenapi/vm_utils.py:125
-#, python-format
-msgid "Created VM %s..."
-msgstr ""
-
-#: nova/virt/hyperv.py:188
+#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:198
+#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""
-#: nova/virt/hyperv.py:202
+#: ../nova/virt/hyperv.py:202
#, python-format
-msgid "Creating disk for %s by attaching disk file %s"
+msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""
-#: nova/virt/hyperv.py:227
+#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:230
+#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""
-#: nova/virt/hyperv.py:247
+#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:249
+#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr ""
-#: nova/virt/hyperv.py:253
+#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:272
+#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""
-#: nova/virt/hyperv.py:273
+#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""
-#: nova/virt/hyperv.py:275
+#: ../nova/virt/hyperv.py:276
#, python-format
-msgid "Created switch port %s on switch %s"
+msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""
-#: nova/virt/hyperv.py:285
+#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""
-#: nova/virt/hyperv.py:287
+#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""
-#: nova/virt/hyperv.py:320
+#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""
-#: nova/virt/hyperv.py:322
+#: ../nova/virt/hyperv.py:325
#, python-format
-msgid "WMI job succeeded: %s, Elapsed=%s "
+msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""
-#: nova/virt/hyperv.py:358
+#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:383
+#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""
-#: nova/virt/hyperv.py:389
+#: ../nova/virt/hyperv.py:393
#, python-format
-msgid "Del: disk %s vm %s"
+msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""
-#: nova/virt/hyperv.py:405
+#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
-"Got Info for vm %s: state=%s, mem=%s, num_cpu=%s, "
-"cpu_time=%s"
+"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, "
+"num_cpu=%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""
-#: nova/virt/hyperv.py:424 nova/virt/xenapi/vm_utils.py:301
+#: ../nova/virt/hyperv.py:451
#, python-format
-msgid "duplicate name found: %s"
+msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:444
+#: ../nova/virt/hyperv.py:454
#, python-format
-msgid "Successfully changed vm state of %s to %s"
+msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""
-#: nova/virt/hyperv.py:447 nova/virt/hyperv.py:449
+#: ../nova/compute/api.py:71
#, python-format
-msgid "Failed to change vm state of %s to %s"
+msgid "Instance %d was not found in get_network_topic"
msgstr ""
-#: nova/virt/images.py:70
+#: ../nova/compute/api.py:77
#, python-format
-msgid "Finished retreving %s -- placed in %s"
+msgid "Instance %d has no host"
msgstr ""
-#: nova/virt/libvirt_conn.py:144
+#: ../nova/compute/api.py:97
#, python-format
-msgid "Connecting to libvirt: %s"
+msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""
-#: nova/virt/libvirt_conn.py:157
-msgid "Connection to libvirt broke"
+#: ../nova/compute/api.py:99
+#, python-format
+msgid ""
+"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""
-#: nova/virt/libvirt_conn.py:229
+#: ../nova/compute/api.py:112
+msgid "Creating a raw instance"
+msgstr ""
+
+#: ../nova/compute/api.py:160
#, python-format
-msgid "instance %s: deleting instance files %s"
+msgid "Going to run %s instances..."
msgstr ""
-#: nova/virt/libvirt_conn.py:271
+#: ../nova/compute/api.py:187
#, python-format
-msgid "No disk at %s"
+msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:278
-msgid "Instance snapshotting is not supported for libvirtat this time"
+#: ../nova/compute/api.py:292
+#, python-format
+msgid "Going to try to terminate %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:294
+#: ../nova/compute/api.py:296
#, python-format
-msgid "instance %s: rebooted"
+msgid "Instance %d was not found during terminate"
msgstr ""
-#: nova/virt/libvirt_conn.py:297
+#: ../nova/compute/api.py:301
#, python-format
-msgid "_wait_for_reboot failed: %s"
+msgid "Instance %d is already being terminated"
msgstr ""
-#: nova/virt/libvirt_conn.py:340
+#: ../nova/compute/api.py:481
#, python-format
-msgid "instance %s: rescued"
+msgid "Invalid device specified: %s. Example device: /dev/vdb"
msgstr ""
-#: nova/virt/libvirt_conn.py:343
+#: ../nova/compute/api.py:496
+msgid "Volume isn't attached to anything!"
+msgstr ""
+
+#: ../nova/rpc.py:98
#, python-format
-msgid "_wait_for_rescue failed: %s"
+msgid ""
+"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
+"%(fl_intv)d seconds."
msgstr ""
-#: nova/virt/libvirt_conn.py:370
+#: ../nova/rpc.py:103
#, python-format
-msgid "instance %s: is running"
+msgid "Unable to connect to AMQP server after %d tries. Shutting down."
+msgstr "已尝试 %d 次,均无法连接到AMQP服务器。关闭中。"
+
+#: ../nova/rpc.py:122
+msgid "Reconnected to queue"
+msgstr "重新与队列建立连接"
+
+#: ../nova/rpc.py:129
+msgid "Failed to fetch message from queue"
+msgstr "从队列获取数据失败"
+
+#: ../nova/rpc.py:159
+#, python-format
+msgid "Initing the Adapter Consumer for %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:381
+#: ../nova/rpc.py:178
#, python-format
-msgid "instance %s: booted"
+msgid "received %s"
+msgstr "已接收 %s"
+
+#. NOTE(vish): we may not want to ack here, but that means that bad
+#. messages stay in the queue indefinitely, so for now
+#. we just log the message and send an error string
+#. back to the caller
+#: ../nova/rpc.py:191
+#, python-format
+msgid "no method for message: %s"
+msgstr "没有适用于消息 %s 的方法"
+
+#: ../nova/rpc.py:192
+#, python-format
+msgid "No method for message: %s"
+msgstr "没有适用于消息 %s 的方法"
+
+#: ../nova/rpc.py:253
+#, python-format
+msgid "Returning exception %s to caller"
+msgstr "返回 %s 异常给调用者"
+
+#: ../nova/rpc.py:294
+#, python-format
+msgid "unpacked context: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:384 nova/virt/xenapi/vmops.py:116
+#: ../nova/rpc.py:313
+msgid "Making asynchronous call..."
+msgstr "产生异步调用中……"
+
+#: ../nova/rpc.py:316
#, python-format
-msgid "instance %s: failed to boot"
+msgid "MSG_ID is %s"
+msgstr "消息ID(MSG_ID)是 %s"
+
+#: ../nova/rpc.py:354
+msgid "Making asynchronous cast..."
msgstr ""
-#: nova/virt/libvirt_conn.py:395
+#: ../nova/rpc.py:364
#, python-format
-msgid "virsh said: %r"
+msgid "response %s"
+msgstr "回复 %s"
+
+#: ../nova/rpc.py:373
+#, python-format
+msgid "topic is %s"
+msgstr "话题是 %s"
+
+#: ../nova/rpc.py:374
+#, python-format
+msgid "message %s"
+msgstr "消息 %s"
+
+#: ../nova/volume/driver.py:78
+#, python-format
+msgid "Recovering from a failed execute. Try number %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:399
-msgid "cool, it's a device"
+#: ../nova/volume/driver.py:87
+#, python-format
+msgid "volume group %s doesn't exist"
msgstr ""
-#: nova/virt/libvirt_conn.py:407
+#: ../nova/volume/driver.py:220
#, python-format
-msgid "data: %r, fpath: %r"
+msgid "FAKE AOE: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:415
+#: ../nova/volume/driver.py:233
+msgid "Skipping ensure_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
+msgid "Skipping remove_export. No iscsi_target "
+msgstr ""
+
+#: ../nova/volume/driver.py:347
#, python-format
-msgid "Contents of file %s: %r"
+msgid "FAKE ISCSI: %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:449
+#: ../nova/volume/driver.py:359
#, python-format
-msgid "instance %s: Creating image"
+msgid "rbd has no pool %s"
msgstr ""
-#: nova/virt/libvirt_conn.py:505
+#: ../nova/volume/driver.py:414
#, python-format
-msgid "instance %s: injecting key into image %s"
+msgid "Sheepdog is not working: %s"
+msgstr ""
+
+#: ../nova/volume/driver.py:416
+msgid "Sheepdog is not working"
msgstr ""
-#: nova/virt/libvirt_conn.py:508
+#: ../nova/wsgi.py:68
#, python-format
-msgid "instance %s: injecting net into image %s"
+msgid "Starting %(arg0)s on %(host)s:%(port)s"
+msgstr ""
+
+#: ../nova/wsgi.py:147
+msgid "You must implement __call__"
+msgstr ""
+
+#: ../bin/nova-instancemonitor.py:55
+msgid "Starting instance monitor"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:58
+msgid "leasing ip"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:73
+msgid "Adopted old lease or got a change of mac/hostname"
+msgstr ""
+
+#: ../bin/nova-dhcpbridge.py:80
+msgid "releasing ip"
msgstr ""
-#: nova/virt/libvirt_conn.py:516
+#: ../bin/nova-dhcpbridge.py:123
#, python-format
-msgid "instance %s: ignoring error injecting data into image %s (%s)"
+msgid ""
+"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
+"on interface %(interface)s"
msgstr ""
-#: nova/virt/libvirt_conn.py:544 nova/virt/libvirt_conn.py:547
+#: ../nova/virt/fake.py:239
#, python-format
-msgid "instance %s: starting toXML method"
+msgid "Instance %s Not Found"
msgstr ""
-#: nova/virt/libvirt_conn.py:589
+#: ../nova/network/manager.py:153
#, python-format
-msgid "instance %s: finished toXML method"
+msgid "Dissassociated %s stale fixed ip(s)"
msgstr ""
-#: nova/virt/xenapi_conn.py:113
-msgid ""
-"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
-"and xenapi_connection_password to use connection_type=xenapi"
+#: ../nova/network/manager.py:157
+msgid "setting network host"
msgstr ""
-#: nova/virt/xenapi_conn.py:263
+#: ../nova/network/manager.py:212
#, python-format
-msgid "Task [%s] %s status: success %s"
+msgid "Leasing IP %s"
msgstr ""
-#: nova/virt/xenapi_conn.py:271
+#: ../nova/network/manager.py:216
#, python-format
-msgid "Task [%s] %s status: %s %s"
+msgid "IP %s leased that isn't associated"
msgstr ""
-#: nova/virt/xenapi_conn.py:287 nova/virt/xenapi_conn.py:300
+#: ../nova/network/manager.py:220
#, python-format
-msgid "Got exception: %s"
+msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:72
+#: ../nova/network/manager.py:228
#, python-format
-msgid "%s: _db_content => %s"
+msgid "IP %s leased that was already deallocated"
msgstr ""
-#: nova/virt/xenapi/fake.py:247 nova/virt/xenapi/fake.py:338
-#: nova/virt/xenapi/fake.py:356 nova/virt/xenapi/fake.py:404
-msgid "Raising NotImplemented"
+#: ../nova/network/manager.py:233
+#, python-format
+msgid "Releasing IP %s"
msgstr ""
-#: nova/virt/xenapi/fake.py:249
+#: ../nova/network/manager.py:237
#, python-format
-msgid "xenapi.fake does not have an implementation for %s"
+msgid "IP %s released that isn't associated"
msgstr ""
-#: nova/virt/xenapi/fake.py:283
+#: ../nova/network/manager.py:241
#, python-format
-msgid "Calling %s %s"
+msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
msgstr ""
-#: nova/virt/xenapi/fake.py:288
+#: ../nova/network/manager.py:244
#, python-format
-msgid "Calling getter %s"
+msgid "IP %s released that was not leased"
msgstr ""
-#: nova/virt/xenapi/fake.py:340
-#, python-format
+#: ../nova/network/manager.py:519
msgid ""
-"xenapi.fake does not have an implementation for %s or it has been called "
-"with the wrong number of arguments"
+"The sum between the number of networks and the vlan start cannot be greater "
+"than 4094"
msgstr ""
-#: nova/virt/xenapi/network_utils.py:40
+#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
-msgid "Found non-unique network for bridge %s"
+msgid "Introducing %s..."
msgstr ""
-#: nova/virt/xenapi/network_utils.py:43
+#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
-msgid "Found no network for bridge %s"
+msgid "Introduced %(label)s as %(sr_ref)s."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:127
+#: ../nova/virt/xenapi/volume_utils.py:78
+msgid "Unable to create Storage Repository"
+msgstr ""
+
+#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
-msgid "Created VM %s as %s."
+msgid "Unable to find SR from VBD %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:147
+#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
-msgid "Creating VBD for VM %s, VDI %s ... "
+msgid "Forgetting SR %s ... "
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:149
+#: ../nova/virt/xenapi/volume_utils.py:101
#, python-format
-msgid "Created VBD %s for VM %s, VDI %s."
+msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:165
+#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
-msgid "VBD not found in instance %s"
+msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:175
+#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
-msgid "Unable to unplug VBD %s"
+msgid "Forgetting SR %s done."
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:187
+#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
-msgid "Unable to destroy VBD %s"
+msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:202
+#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
-msgid "Creating VIF for VM %s, network %s."
+msgid "Unable to introduce VDI on SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:205
+#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
-msgid "Created VIF %s for VM %s, network %s."
+msgid "Unable to get record of VDI %s on"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:216
+#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
-msgid "Snapshotting VM %s with label '%s'..."
+msgid "Unable to introduce VDI for SR %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:229
+#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
-msgid "Created snapshot %s from VM %s."
+msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:243
+#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
-msgid "Asking xapi to upload %s as '%s'"
+msgid "Mountpoint cannot be translated: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:261
+#: ../nova/objectstore/image.py:262
#, python-format
-msgid "Asking xapi to fetch %s as %s"
+msgid "Failed to decrypt private key: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:279
+#: ../nova/objectstore/image.py:269
#, python-format
-msgid "Looking up vdi %s for PV kernel"
+msgid "Failed to decrypt initialization vector: %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:290
+#: ../nova/objectstore/image.py:277
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:318
+#: ../nova/objectstore/handler.py:106
#, python-format
-msgid "VDI %s is still available"
+msgid "Unknown S3 value type %r"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:331
+#: ../nova/objectstore/handler.py:137
+msgid "Authenticated request"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:182
+msgid "List of buckets requested"
+msgstr ""
+
+#: ../nova/objectstore/handler.py:209
#, python-format
-msgid "(VM_UTILS) xenserver vm state -> |%s|"
+msgid "List keys for bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:333
+#: ../nova/objectstore/handler.py:217
#, python-format
-msgid "(VM_UTILS) xenapi power_state -> |%s|"
+msgid "Unauthorized attempt to access bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:390
+#: ../nova/objectstore/handler.py:235
#, python-format
-msgid "VHD %s has parent %s"
+msgid "Creating bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:407
+#: ../nova/objectstore/handler.py:245
#, python-format
-msgid "Re-scanning SR %s"
+msgid "Deleting bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:431
+#: ../nova/objectstore/handler.py:249
#, python-format
-msgid "Parent %s doesn't match original parent %s, waiting for coalesce..."
+msgid "Unauthorized attempt to delete bucket %s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:448
+#: ../nova/objectstore/handler.py:273
#, python-format
-msgid "No VDIs found for VM %s"
+msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vm_utils.py:452
+#: ../nova/objectstore/handler.py:276
#, python-format
-msgid "Unexpected number of VDIs (%s) found for VM %s"
+msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:62
+#: ../nova/objectstore/handler.py:296
#, python-format
-msgid "Attempted to create non-unique name %s"
+msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:99
+#: ../nova/objectstore/handler.py:299
#, python-format
-msgid "Starting VM %s..."
+msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:101
+#: ../nova/objectstore/handler.py:318
#, python-format
-msgid "Spawning VM %s created %s."
+msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:112
+#: ../nova/objectstore/handler.py:322
#, python-format
-msgid "Instance %s: booted"
+msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:137
+#: ../nova/objectstore/handler.py:396
#, python-format
-msgid "Instance not present %s"
+msgid "Not authorized to upload image: invalid directory %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:166
+#: ../nova/objectstore/handler.py:404
#, python-format
-msgid "Starting snapshot for VM %s"
+msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:174
+#: ../nova/objectstore/handler.py:409
#, python-format
-msgid "Unable to Snapshot %s: %s"
+msgid "Starting image upload: %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:184
+#: ../nova/objectstore/handler.py:423
#, python-format
-msgid "Finished snapshot and upload for VM %s"
+msgid "Not authorized to update attributes of image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:252
+#: ../nova/objectstore/handler.py:431
#, python-format
-msgid "suspend: instance not present %s"
+msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""
-#: nova/virt/xenapi/vmops.py:262
+#. other attributes imply update
+#: ../nova/objectstore/handler.py:436
#, python-format
-msgid "resume: instance not present %s"
+msgid "Updating user fields on image %s"
msgstr ""
-#: nova/virt/xenapi/vmops.py:271
+#: ../nova/objectstore/handler.py:450
#, python-format
-msgid "Instance not found %s"
+msgid "Unauthorized attempt to delete image %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:57
+#: ../nova/objectstore/handler.py:455
#, python-format
-msgid "Introducing %s..."
+msgid "Deleted image: %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:74
+#: ../nova/auth/manager.py:259
#, python-format
-msgid "Introduced %s as %s."
+msgid "Looking up user: %r"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:78
-msgid "Unable to create Storage Repository"
+#: ../nova/auth/manager.py:263
+#, python-format
+msgid "Failed authorization for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:90
+#: ../nova/auth/manager.py:264
#, python-format
-msgid "Unable to find SR from VBD %s"
+msgid "No user found for access key %s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:96
+#: ../nova/auth/manager.py:270
#, python-format
-msgid "Forgetting SR %s ... "
+msgid "Using project name = user name (%s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:101
+#: ../nova/auth/manager.py:277
#, python-format
-msgid "Ignoring exception %s when getting PBDs for %s"
+msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:107
+#: ../nova/auth/manager.py:279
#, python-format
-msgid "Ignoring exception %s when unplugging PBD %s"
+msgid "No project called %s could be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:111
+#: ../nova/auth/manager.py:287
#, python-format
-msgid "Forgetting SR %s done."
+msgid ""
+"Failed authorization: user %(uname)s not admin and not member of project "
+"%(pjname)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:113
+#: ../nova/auth/manager.py:289
#, python-format
-msgid "Ignoring exception %s when forgetting SR %s"
+msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:123
+#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
-msgid "Unable to introduce VDI on SR %s"
+msgid "Invalid signature for user %s"
+msgstr ""
+
+#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
+msgid "Signature does not match"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:128
+#: ../nova/auth/manager.py:380
+msgid "Must specify project"
+msgstr ""
+
+#: ../nova/auth/manager.py:414
#, python-format
-msgid "Unable to get record of VDI %s on"
+msgid "The %s role can not be found"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:146
+#: ../nova/auth/manager.py:416
#, python-format
-msgid "Unable to introduce VDI for SR %s"
+msgid "The %s role is global only"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:175
+#: ../nova/auth/manager.py:420
#, python-format
-msgid "Unable to obtain target information %s, %s"
+msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volume_utils.py:197
+#: ../nova/auth/manager.py:423
#, python-format
-msgid "Mountpoint cannot be translated: %s"
+msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:51
+#: ../nova/auth/manager.py:448
#, python-format
-msgid "Attach_volume: %s, %s, %s"
+msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:69
+#: ../nova/auth/manager.py:451
#, python-format
-msgid "Unable to create VDI on SR %s for instance %s"
+msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:81
+#: ../nova/auth/manager.py:515
#, python-format
-msgid "Unable to use SR %s for instance %s"
+msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:93
+#: ../nova/auth/manager.py:533
#, python-format
-msgid "Unable to attach volume to instance %s"
+msgid "modifying project %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:95
+#: ../nova/auth/manager.py:545
#, python-format
-msgid "Mountpoint %s attached to instance %s"
+msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:106
+#: ../nova/auth/manager.py:566
#, python-format
-msgid "Detach_volume: %s, %s"
+msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:113
+#: ../nova/auth/manager.py:592
#, python-format
-msgid "Unable to locate volume %s"
+msgid "Deleting project %s"
+msgstr "删除项目 %s"
+
+#: ../nova/auth/manager.py:650
+#, python-format
+msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:121
+#: ../nova/auth/manager.py:659
#, python-format
-msgid "Unable to detach volume %s"
+msgid "Deleting user %s"
+msgstr "删除用户 %s"
+
+#: ../nova/auth/manager.py:669
+#, python-format
+msgid "Access Key change for user %s"
msgstr ""
-#: nova/virt/xenapi/volumeops.py:128
+#: ../nova/auth/manager.py:671
#, python-format
-msgid "Mountpoint %s detached from instance %s"
+msgid "Secret Key change for user %s"
msgstr ""
-#: nova/volume/api.py:44
+#: ../nova/auth/manager.py:673
#, python-format
-msgid "Quota exceeeded for %s, tried to create %sG volume"
+msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""
-#: nova/volume/api.py:46
+#: ../nova/auth/manager.py:722
#, python-format
-msgid "Volume quota exceeded. You cannot create a volume of size %s"
+msgid "No vpn data for project %s"
+msgstr "没有 %s 项目的vpn数据"
+
+#: ../nova/service.py:161
+#, python-format
+msgid "Starting %(topic)s node (version %(vcs_string)s)"
msgstr ""
-#: nova/volume/api.py:70 nova/volume/api.py:95
-msgid "Volume status must be available"
+#: ../nova/service.py:174
+msgid "Service killed that has no database entry"
+msgstr "因无数据库记录,服务已被中止"
+
+#: ../nova/service.py:195
+msgid "The service database object disappeared, Recreating it."
msgstr ""
-#: nova/volume/api.py:97
-msgid "Volume is already attached"
+#: ../nova/service.py:207
+msgid "Recovered model server connection!"
+msgstr "与模型服务器(model server)的连接已恢复!"
+
+#: ../nova/service.py:213
+msgid "model server went away"
+msgstr "失去与模型服务器的连接"
+
+#: ../nova/auth/ldapdriver.py:174
+#, python-format
+msgid "LDAP user %s already exists"
+msgstr "LDAP 用户 %s 已存在"
+
+#: ../nova/auth/ldapdriver.py:205
+#, python-format
+msgid "LDAP object for %s doesn't exist"
msgstr ""
-#: nova/volume/api.py:103
-msgid "Volume is already detached"
+#: ../nova/auth/ldapdriver.py:348
+#, python-format
+msgid "User %s doesn't exist"
+msgstr "用户 %s 不存在"
+
+#: ../nova/auth/ldapdriver.py:472
+#, python-format
+msgid "Group can't be created because group %s already exists"
msgstr ""
-#: nova/volume/driver.py:76
+#: ../nova/auth/ldapdriver.py:478
#, python-format
-msgid "Recovering from a failed execute. Try number %s"
+msgid "Group can't be created because user %s doesn't exist"
msgstr ""
-#: nova/volume/driver.py:85
+#: ../nova/auth/ldapdriver.py:495
#, python-format
-msgid "volume group %s doesn't exist"
+msgid "User %s can't be searched in group because the user doesn't exist"
msgstr ""
-#: nova/volume/driver.py:210
+#: ../nova/auth/ldapdriver.py:507
#, python-format
-msgid "FAKE AOE: %s"
+msgid "User %s can't be added to the group because the user doesn't exist"
msgstr ""
-#: nova/volume/driver.py:315
+#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
#, python-format
-msgid "FAKE ISCSI: %s"
+msgid "The group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:85
+#: ../nova/auth/ldapdriver.py:513
#, python-format
-msgid "Re-exporting %s volumes"
+msgid "User %(uid)s is already a member of the group %(group_dn)s"
msgstr ""
-#: nova/volume/manager.py:93
+#: ../nova/auth/ldapdriver.py:524
#, python-format
-msgid "volume %s: creating"
+msgid ""
+"User %s can't be removed from the group because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:102
+#: ../nova/auth/ldapdriver.py:528
#, python-format
-msgid "volume %s: creating lv of size %sG"
+msgid "User %s is not a member of the group"
msgstr ""
-#: nova/volume/manager.py:106
+#: ../nova/auth/ldapdriver.py:542
#, python-format
-msgid "volume %s: creating export"
+msgid ""
+"Attempted to remove the last member of a group. Deleting the group at %s "
+"instead."
msgstr ""
-#: nova/volume/manager.py:113
+#: ../nova/auth/ldapdriver.py:549
#, python-format
-msgid "volume %s: created successfully"
+msgid "User %s can't be removed from all because the user doesn't exist"
msgstr ""
-#: nova/volume/manager.py:121
-msgid "Volume is still attached"
+#: ../nova/auth/ldapdriver.py:564
+#, python-format
+msgid "Group at dn %s doesn't exist"
msgstr ""
-#: nova/volume/manager.py:123
-msgid "Volume is not local to this node"
+#: ../nova/virt/xenapi/network_utils.py:40
+#, python-format
+msgid "Found non-unique network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:124
+#: ../nova/virt/xenapi/network_utils.py:43
#, python-format
-msgid "volume %s: removing export"
+msgid "Found no network for bridge %s"
msgstr ""
-#: nova/volume/manager.py:126
+#: ../nova/api/ec2/admin.py:97
#, python-format
-msgid "volume %s: deleting"
+msgid "Creating new user: %s"
+msgstr "创建新用户: %s"
+
+#: ../nova/api/ec2/admin.py:105
+#, python-format
+msgid "Deleting user: %s"
+msgstr "删除用户: %s"
+
+#: ../nova/api/ec2/admin.py:127
+#, python-format
+msgid "Adding role %(role)s to user %(user)s for project %(project)s"
msgstr ""
-#: nova/volume/manager.py:129
+#: ../nova/api/ec2/admin.py:131
#, python-format
-msgid "volume %s: deleted successfully"
+msgid "Adding sitewide role %(role)s to user %(user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:137
+#, python-format
+msgid "Removing role %(role)s from user %(user)s for project %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:141
+#, python-format
+msgid "Removing sitewide role %(role)s from user %(user)s"
msgstr ""
+
+#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
+msgid "operation must be add or remove"
+msgstr "操作必须为添加或删除"
+
+#: ../nova/api/ec2/admin.py:159
+#, python-format
+msgid "Getting x509 for user: %(name)s on project: %(project)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:177
+#, python-format
+msgid "Create project %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:190
+#, python-format
+msgid "Modify project: %(name)s managed by %(manager_user)s"
+msgstr ""
+
+#: ../nova/api/ec2/admin.py:200
+#, python-format
+msgid "Delete project: %s"
+msgstr "删除工程 %s"
+
+#: ../nova/api/ec2/admin.py:214
+#, python-format
+msgid "Adding user %(user)s to project %(project)s"
+msgstr "添加用户 %(user)s 到项目 %(project)s 中"
+
+#: ../nova/api/ec2/admin.py:218
+#, python-format
+msgid "Removing user %(user)s from project %(project)s"
+msgstr "从项目 %(project)s 中移除用户 %(user)s"
+
+#, python-format
+#~ msgid ""
+#~ "%s\n"
+#~ "Command: %s\n"
+#~ "Exit code: %s\n"
+#~ "Stdout: %r\n"
+#~ "Stderr: %r"
+#~ msgstr ""
+#~ "%s\n"
+#~ "命令:%s\n"
+#~ "退出代码:%s\n"
+#~ "标准输出(stdout):%r\n"
+#~ "标准错误(stderr):%r"
+
+#, python-format
+#~ msgid "Binding %s to %s with key %s"
+#~ msgstr "将%s绑定到%s(以%s键值)"
+
+#, python-format
+#~ msgid "AMQP server on %s:%d is unreachable. Trying again in %d seconds."
+#~ msgstr "位于%s:%d的AMQP服务器不可用。%d秒后重试。"
+
+#, python-format
+#~ msgid "Getting from %s: %s"
+#~ msgstr "从%s获得如下内容:%s"
+
+#, python-format
+#~ msgid "Starting %s node"
+#~ msgstr "启动%s节点"
+
+#, python-format
+#~ msgid "Data store %s is unreachable. Trying again in %d seconds."
+#~ msgstr "数据储存服务%s不可用。%d秒之后继续尝试。"
+
+#, python-format
+#~ msgid "(%s) publish (key: %s) %s"
+#~ msgstr "(%s)发布(键值:%s)%s"
+
+#, python-format
+#~ msgid "Couldn't get IP, using 127.0.0.1 %s"
+#~ msgstr "不能获取IP,将使用 127.0.0.1 %s"
+
+#, python-format
+#~ msgid ""
+#~ "Access key %s has had %d failed authentications and will be locked out for "
+#~ "%d minutes."
+#~ msgstr "访问键 %s时,存在%d个失败的认证,将于%d分钟后解锁"
+
+#, python-format
+#~ msgid "Authenticated Request For %s:%s)"
+#~ msgstr "为%s:%s申请认证"
+
+#, python-format
+#~ msgid "arg: %s\t\tval: %s"
+#~ msgstr "键为: %s\t\t值为: %s"
+
+#, python-format
+#~ msgid "Getting x509 for user: %s on project: %s"
+#~ msgstr "为用户 %s从工程%s中获取 x509"
+
+#, python-format
+#~ msgid "Create project %s managed by %s"
+#~ msgstr "创建工程%s,此工程由%s管理"
+
+#, python-format
+#~ msgid "Unsupported API request: controller = %s,action = %s"
+#~ msgstr "不支持的API请求: 控制器 = %s,执行 = %s"
+
+#, python-format
+#~ msgid "Adding sitewide role %s to user %s"
+#~ msgstr "增加站点范围的 %s角色给用户 %s"
+
+#, python-format
+#~ msgid "Adding user %s to project %s"
+#~ msgstr "增加用户%s到%s工程"
+
+#, python-format
+#~ msgid "Unauthorized request for controller=%s and action=%s"
+#~ msgstr "对控制器=%s及动作=%s未经授权"
+
+#, python-format
+#~ msgid "Removing user %s from project %s"
+#~ msgstr "正将用户%s从工程%s中移除"
+
+#, python-format
+#~ msgid "Adding role %s to user %s for project %s"
+#~ msgstr "正将%s角色赋予用户%s(在工程%s中)"
+
+#, python-format
+#~ msgid "Removing role %s from user %s for project %s"
+#~ msgstr "正将角色%s从用户%s在工程%s中移除"
diff --git a/tools/eventlet-patch b/tools/eventlet-patch
new file mode 100644
index 000000000..c87c5f279
--- /dev/null
+++ b/tools/eventlet-patch
@@ -0,0 +1,24 @@
+# HG changeset patch
+# User Soren Hansen <soren@linux2go.dk>
+# Date 1297678255 -3600
+# Node ID 4c846d555010bb5a91ab4da78dfe596451313742
+# Parent 5b7e9946c79f005c028eb63207cf5eb7bb21d1c3
+Don't attempt to wrap GreenPipes in GreenPipe
+
+If the os module is monkeypatched, Python's standard subprocess module
+will return greenio.GreenPipe instances for Popen objects' stdin, stdout,
+and stderr attributes. However, eventlet.green.subprocess tries to wrap
+these attributes in another greenio.GreenPipe, which GreenPipe refuses.
+
+diff -r 5b7e9946c79f -r 4c846d555010 eventlet/green/subprocess.py
+--- a/eventlet/green/subprocess.py Sat Feb 05 13:05:05 2011 -0800
++++ b/eventlet/green/subprocess.py Mon Feb 14 11:10:55 2011 +0100
+@@ -27,7 +27,7 @@
+ # eventlet.processes.Process.run() method.
+ for attr in "stdin", "stdout", "stderr":
+ pipe = getattr(self, attr)
+- if pipe is not None:
++ if pipe is not None and not type(pipe) == greenio.GreenPipe:
+ wrapped_pipe = greenio.GreenPipe(pipe, pipe.mode, bufsize)
+ setattr(self, attr, wrapped_pipe)
+ __init__.__doc__ = subprocess_orig.Popen.__init__.__doc__
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 4e3941210..30ec85374 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -103,6 +103,12 @@ def install_dependencies(venv=VENV):
pthfile = os.path.join(venv, "lib", "python2.6", "site-packages", "nova.pth")
f = open(pthfile, 'w')
f.write("%s\n" % ROOT)
+ # Patch eventlet (see FAQ # 1485)
+ patchsrc = os.path.join(ROOT, 'tools', 'eventlet-patch')
+ patchfile = os.path.join(venv, "lib", "python2.6", "site-packages", "eventlet",
+ "green", "subprocess.py")
+ patch_cmd = "patch %s %s" % (patchfile, patchsrc)
+ os.system(patch_cmd)
def print_help():